chore(deps): update zstd requirement from 0.13 to 0.14 - #481
Merged
Conversation
Bumps the `zstd` dependency from `0.13.1` to `0.14.0` (pulls in `zstd-safe` 8.0.0 / `zstd-sys` 2.1.0). The codecs use the `stream::raw` API (streaming `Encoder`/`Decoder` with `InBuffer`/`OutBuffer`) and `zstd-safe`'s `get_error_name` and `find_frame_compressed_size`, none of which changed in 0.14.0/8.0.0, so this is a pure version bump with no code changes. Also worth noting: `zstd-safe` 8.0.0 refuses to reuse a context that failed mid-stream (per the zstd docs it may be left in an undefined state, so that was UB before), and `zstd-sys` 2.1.0 no longer needs `libclang` by default. The crate stack moved from MIT to BSD-3-Clause (still permissive, already allowed in deny.toml).
NobodyXu
approved these changes
Sep 7, 2026
NobodyXu
left a comment
Collaborator
There was a problem hiding this comment.
Thank you! Will cut a new release now
Merged
github-merge-queue Bot
pushed a commit
that referenced
this pull request
Sep 7, 2026
## 🤖 New release * `compression-codecs`: 0.4.39 -> 0.4.40 (✓ API compatible changes) * `async-compression`: 0.4.44 -> 0.4.45 (✓ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> ## `compression-codecs` <blockquote> ## [0.4.40](compression-codecs-v0.4.39...compression-codecs-v0.4.40) - 2026-09-07 ### Other - *(deps)* update zstd requirement from 0.13 to 0.14 ([#481](#481)) </blockquote> ## `async-compression` <blockquote> ## [0.4.45](async-compression-v0.4.44...async-compression-v0.4.45) - 2026-09-07 ### Other - *(deps)* update zstd requirement from 0.13 to 0.14 ([#481](#481)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.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.
Bumps the
zstddependency from0.13.1to0.14.0(pulls inzstd-safe8.0.0 /zstd-sys2.1.0).The codecs use the
stream::rawAPI (streamingEncoder/DecoderwithInBuffer/OutBuffer) andzstd-safe'sget_error_nameandfind_frame_compressed_size, none of which changed in 0.14.0/8.0.0, so this is a pure version bump with no code changes.Also worth noting:
zstd-safe8.0.0 refuses to reuse a context that failed mid-stream (per the zstd docs it may be left in an undefined state, so that was UB before), andzstd-sys2.1.0 no longer needslibclangby default. The crate stack moved from MIT to BSD-3-Clause (still permissive, already allowed in deny.toml).