This is an automated email from the ASF dual-hosted git repository.
xiangying pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 8289e34b206 [improve][build] Upgrade zstd version from 1.5.2-3 to
1.5.7-3 (#24263)
8289e34b206 is described below
commit 8289e34b206d0bf06b8ea48725d4d842c8e2284b
Author: StevenLuMT <[email protected]>
AuthorDate: Fri May 9 10:39:53 2025 +0800
[improve][build] Upgrade zstd version from 1.5.2-3 to 1.5.7-3 (#24263)
### Motivation
[zstd](https://github.com/facebook/zstd/releases/tag/v1.5.7) would be
useful to have zstd upgraded to latest version,the new version brings many
improvements:
1. Enhanced Compression Speed for Small Data Blocks
2. Substantial --patch-from improvements
3. Compression ratio improvements for large files
4. Command-Line Interface Updates
See release notes for details:
- [zstd v1.5.7 release
notes](https://github.com/facebook/zstd/releases/tag/v1.5.7)
- [zstd-jni v1.5.7-3 release
notes](https://github.com/luben/zstd-jni/releases/tag/v1.5.7-3)
### Modifications
Upgrade zstd version from 1.5.2-3 to 1.5.7-3
---
pom.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index b7f8d9da070..f04c89e596c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -262,7 +262,10 @@ flexible messaging model and an intuitive client
API.</description>
<ant.version>1.10.12</ant.version>
<seancfoley.ipaddress.version>5.5.0</seancfoley.ipaddress.version>
<disruptor.version>3.4.3</disruptor.version>
- <zstd-jni.version>1.5.2-3</zstd-jni.version>
+
+ <!-- zstd-jni is only used for testcase,
+ the core logic is switched to java implementation of zstd in
org.apache.commons:commons-compress -->
+ <zstd-jni.version>1.5.7-3</zstd-jni.version>
<netty-reactive-streams.version>2.0.6</netty-reactive-streams.version>
<opentelemetry.version>1.45.0</opentelemetry.version>
<opentelemetry.alpha.version>${opentelemetry.version}-alpha</opentelemetry.alpha.version>