This is an automated email from the ASF dual-hosted git repository.
ijuma pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 9c12e462106 Update zstd to 1.5.5 (#13567)
9c12e462106 is described below
commit 9c12e462106343fbc6af5873074d48f98687af39
Author: Ismael Juma <[email protected]>
AuthorDate: Sat Apr 15 12:30:22 2023 -0700
Update zstd to 1.5.5 (#13567)
1.5.4 is a large release that offers significant performance improvements
across
multiple scenarios, as well as new features.
1.5.5 is a smaller release that corrects a rare corruption bug and improves
performance
in some scenarios.
It looks like 1.5.3 was retracted or never released.
Zstandard release notes:
* 1.5.4: https://github.com/facebook/zstd/releases/tag/v1.5.4
* 1.5.5: https://github.com/facebook/zstd/releases/tag/v1.5.5
zstd-jni diff: https://github.com/luben/zstd-jni/compare/v1.5.2-1...v1.5.5-1
Reviewers: Rajini Sivaram <[email protected]>, Divij Vaidya
<[email protected]>
---
gradle/dependencies.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index b3308b6a135..40d408949db 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -126,7 +126,7 @@ versions += [
swaggerJaxrs2: "2.2.8",
zinc: "1.8.0",
zookeeper: "3.6.4",
- zstd: "1.5.2-1"
+ zstd: "1.5.5-1"
]
libs += [
activation: "javax.activation:activation:$versions.activation",