Skip to content

Commit 78462a4

Browse files
committed
Bump ZSTD lib to version 1.5.6-1. (opensearch-project#17674)
* Bump ZSTD lib to version 1.5.6-1. Signed-off-by: Mulugeta Mammo <mulugeta.mammo@intel.com> * Update CHANGELOG.md for ZSTD version bump. Signed-off-by: Mulugeta Mammo <mulugeta.mammo@intel.com> * Update zstd-jni SHA. Signed-off-by: Mulugeta Mammo <mulugeta.mammo@intel.com> --------- Signed-off-by: Mulugeta Mammo <mulugeta.mammo@intel.com> Signed-off-by: mulugetam <mulugeta.mammo@intel.com>
1 parent 0aea92b commit 78462a4

File tree

8 files changed

+7
-6
lines changed

8 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2929
- Bump `software.amazon.awssdk` from 2.20.86 to 2.30.31 ([17396](https://github.com/opensearch-project/OpenSearch/pull/17396))
3030
- Bump `org.jruby.jcodings:jcodings` from 1.0.61 to 1.0.63 ([#17560](https://github.com/opensearch-project/OpenSearch/pull/17560))
3131
- Bump `com.azure:azure-storage-blob` from 12.28.1 to 12.30.0 ([#17562](https://github.com/opensearch-project/OpenSearch/pull/17562), [#17667](https://github.com/opensearch-project/OpenSearch/pull/17667))
32+
- 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))
3233

3334
### Changed
3435
- Convert transport-reactor-netty4 to use gradle version catalog [#17233](https://github.com/opensearch-project/OpenSearch/pull/17233)

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ bytebuddy = "1.15.10"
7171
jmh = "1.35"
7272

7373
# compression
74-
zstd = "1.5.5-5"
74+
zstd = "1.5.6-1"
7575

7676
jzlib = "1.1.3"
7777

libs/compress/licenses/zstd-jni-1.5.5-5.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d6c1fbcf83d1d125fb8dbc7e3c5208729057d9a7

server/licenses/zstd-jni-1.5.5-5.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d6c1fbcf83d1d125fb8dbc7e3c5208729057d9a7

server/src/main/java/org/opensearch/bootstrap/Security.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ static Policy readPolicy(URL policyFile, Map<String, URL> codebases) {
255255
// - netty-tcnative-boringssl-static-2.0.61.Final-linux-x86_64.jar
256256
// - kafka-server-common-3.6.1-test.jar
257257
// - lucene-core-9.11.0-snapshot-8a555eb.jar
258-
// - zstd-jni-1.5.5-5.jar
258+
// - zstd-jni-1.5.6-1.jar
259259
jarsWithPossibleClassifiers.put(codebase, matcher.group(2));
260260
} else {
261261
String property = "codebase." + name;

server/src/test/java/org/opensearch/bootstrap/SecurityTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ public void testReadPolicyWithCodebases() throws IOException {
9595
new URL("file://test-kafka-server-common-3.6.1-test.jar"),
9696
"test-lucene-core-9.11.0-snapshot-8a555eb.jar",
9797
new URL("file://test-lucene-core-9.11.0-snapshot-8a555eb.jar"),
98-
"test-zstd-jni-1.5.5-5.jar",
99-
new URL("file://test-zstd-jni-1.5.5-5.jar")
98+
"test-zstd-jni-1.5.6-1.jar",
99+
new URL("file://test-zstd-jni-1.5.6-1.jar")
100100
);
101101

102102
AccessController.doPrivileged(

0 commit comments

Comments
 (0)