Adds migration instructions for old zstd feature.#21161
Merged
alice-i-cecile merged 3 commits intobevyengine:mainfrom Sep 22, 2025
Merged
Adds migration instructions for old zstd feature.#21161alice-i-cecile merged 3 commits intobevyengine:mainfrom
alice-i-cecile merged 3 commits intobevyengine:mainfrom
Conversation
… now explains how to migrate from the old 'zstd' feature to either 'zstd_rust' or 'zstd_c'. Fixes bevyengine#21089.
janhohenheim
suggested changes
Sep 22, 2025
Member
|
Thanks a bunch! Just one note to make it easier for people who don't care about the C backend and just want their Bevy apps to work the same as before :) |
alice-i-cecile
approved these changes
Sep 22, 2025
Member
|
Thanks for tackling this! |
james7132
approved these changes
Sep 22, 2025
mockersf
pushed a commit
that referenced
this pull request
Sep 22, 2025
# Objective Fixes #21089 The migration guide for the `zstd` feature changes didn't explain how to migrate from the old `zstd` feature to the new split features. ## Solution Added migration instructions showing that the old `zstd` feature should be replaced with either `zstd_rust` (safe default) or `zstd_c` (faster but unsafe). ## Testing - Documentation change only, no code to test - Verified the feature change in git history (PR #19793) ## Link to the issue: [https://github.com/bevyengine/bevy/issues/21089](https://github.com/bevyengine/bevy/issues/21089) --------- Co-authored-by: Alice Cecile <[email protected]>
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.
Objective
Fixes #21089
The migration guide for the
zstdfeature changes didn't explain how to migrate from the oldzstdfeature to the new split features.Solution
Added migration instructions showing that the old
zstdfeature should be replaced with eitherzstd_rust(safe default) orzstd_c(faster but unsafe).Testing
Link to the issue: #21089