fix: Replace serde_yml with serde_yaml_ng to fix RUSTSEC-2025-0067/0068#11755
Merged
anthonyshew merged 1 commit intomainfrom Feb 10, 2026
Merged
fix: Replace serde_yml with serde_yaml_ng to fix RUSTSEC-2025-0067/0068#11755anthonyshew merged 1 commit intomainfrom
serde_yml with serde_yaml_ng to fix RUSTSEC-2025-0067/0068#11755anthonyshew merged 1 commit intomainfrom
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Congrats! CodSpeed is installed 🎉
You will start to see performance impacts in the reports once the benchmarks are run from your default branch.
|
Contributor
Coverage Report
|
github-actions Bot
added a commit
that referenced
this pull request
Feb 10, 2026
## Release v2.8.3-canary.15 Versioned docs: https://v2-8-3-canary-15.turborepo.dev ### Changes - fix: Replace `oxc_resolver` with `unrs_resolver` to fix yanked `papaya` dependency (#11754) (`1db1450522`) - fix: Replace `serde_yml` with `serde_yaml_ng` to fix RUSTSEC-2025-0067/0068 (#11755) (`15f1da2dbf`) - chore: Remove Dependabot configuration (#11753) (`c5ab6db43c`) - chore: Switch canary releases from push-to-main to hourly cron (#11745) (`2656caf4cf`) - release(turborepo): 2.8.3-canary.14 (#11742) (`e222027088`) Co-authored-by: Turbobot <turbobot@vercel.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
serde_yml(0.0.12) dependency withserde_yaml_ng(0.10.0) across the workspacelibyml(0.0.5), which is flagged as unsoundWhy
serde_ymland its transitive dependencylibymlare flagged by two RustSec advisories:serde_ymlis unmaintainedlibymlcontains unsound codeserde_yaml_ngis the maintained fork (by the originalserde_yamlauthor's community) and provides an API-compatible replacement. It usesunsafe-libyamlinstead of the unsoundlibyml.What changed
Workspace
Cargo.tomland four crateCargo.tomlfiles (turborepo-shim,turborepo-repository,turborepo-lockfiles,turborepo-lib) updated to depend onserde_yaml_nginstead ofserde_yml. Seven Rust source files updated to useserde_yaml_ng::paths. The API surface (from_str,from_slice,from_reader,to_string,Value,Error) is identical.Testing
cargo checkpasses for all four affected cratescargo test -p turborepo-lockfiles— all 303 tests passcargo auditconfirms RUSTSEC-2025-0067 and RUSTSEC-2025-0068 are resolvedResolves TURBO-5263