build(deps): bump zstd.version from 0.10 to 0.12 - #318
Merged
Conversation
Latest stable io.github.dfa1.zstd:zstd/zstd-platform. v0.11 and v0.12 migrated several public APIs (compression level, byte sizes, window log, frame header fields, Zstd.version()) from naked int/long/String to validated value types (ZstdByteSize, ZstdCompressionLevel, ZstdWindowLog, ZstdVersion, ...), but every API vortex-java actually calls - the zero-copy MemorySegment compress/decompress overloads, Zstd.compress(byte[]), ZstdDictionary.of(byte[]) - kept its signature unchanged across both releases, so no source changes are needed here. Verified: full reactor build, full unit test suite (including the zstd encoder/decoder/binding-guard tests), and the Rust-interop javaWriter_rustReader_zstd_* integration tests (real libzstd 0.12 native binding) all pass unmodified. Supersedes dependabot PR #312 (0.10 -> 0.11). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
io.github.dfa1.zstd:zstd/zstd-platform(thevortex.zstdFFM binding) from 0.10 to 0.12, the latest stable release.Zstd.version()) from nakedint/long/Stringto validated value types. Every API vortex-java actually calls — the zero-copyMemorySegmentcompress/decompress overloads,Zstd.compress(byte[]),ZstdDictionary.of(byte[])— kept its signature unchanged across both releases, so this is a version-only bump with no source changes.Test plan
./mvnw verify -DskipTests -U(full reactor compile, force-refresh past the stale negative-resolution cache for the new native-platform jars)./mvnw test(full unit suite across all modules, including zstd encoder/decoder/binding-guard tests)./mvnw verify -pl integration -am -Dit.test="JavaWritesRustReadsIntegrationTest#javaWriter_rustReader_zstd*"(real Rust-interop round trip against the actual libzstd 0.12 native binding)🤖 Generated with Claude Code