Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Bump `com.azure:azure-storage-blob` from 12.29.1 to 12.30.0 ([#17667](https://github.com/opensearch-project/OpenSearch/pull/17667))
- Bump `tj-actions/changed-files` from 46.0.1 to 46.0.3 ([#17666](https://github.com/opensearch-project/OpenSearch/pull/17666))
- Bump `com.google.code.gson:gson` from 2.11.0 to 2.12.1 ([#17668](https://github.com/opensearch-project/OpenSearch/pull/17668))
- Bump `com.github.luben:zstd-jni` from 1.5.5-1 to 1.5.6-1 ([#17674](https://github.com/opensearch-project/OpenSearch/pull/17674))

### Changed

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ bytebuddy = "1.17.4"
jmh = "1.35"

# compression
zstd = "1.5.5-5"
zstd = "1.5.6-1"

jzlib = "1.1.3"

Expand Down
1 change: 0 additions & 1 deletion libs/compress/licenses/zstd-jni-1.5.5-5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions libs/compress/licenses/zstd-jni-1.5.6-1.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
d6c1fbcf83d1d125fb8dbc7e3c5208729057d9a7
1 change: 0 additions & 1 deletion server/licenses/zstd-jni-1.5.5-5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions server/licenses/zstd-jni-1.5.6-1.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
d6c1fbcf83d1d125fb8dbc7e3c5208729057d9a7
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ static Policy readPolicy(URL policyFile, Map<String, URL> codebases) {
// - netty-tcnative-boringssl-static-2.0.61.Final-linux-x86_64.jar
// - kafka-server-common-3.6.1-test.jar
// - lucene-core-9.11.0-snapshot-8a555eb.jar
// - zstd-jni-1.5.5-5.jar
// - zstd-jni-1.5.6-1.jar
jarsWithPossibleClassifiers.put(codebase, matcher.group(2));
} else {
String property = "codebase." + name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ public void testReadPolicyWithCodebases() throws IOException {
new URL("file://test-kafka-server-common-3.6.1-test.jar"),
"test-lucene-core-9.11.0-snapshot-8a555eb.jar",
new URL("file://test-lucene-core-9.11.0-snapshot-8a555eb.jar"),
"test-zstd-jni-1.5.5-5.jar",
new URL("file://test-zstd-jni-1.5.5-5.jar")
"test-zstd-jni-1.5.6-1.jar",
new URL("file://test-zstd-jni-1.5.6-1.jar")
);

AccessController.doPrivileged(
Expand Down
Loading