You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Medium Risk
Major-version parser upgrade on the Poetry fix path; behavior should be validated against existing Poetry/pyproject.toml fixtures even though usage is limited to parse().
Overview
Bumps the toml dependency in @snyk/fix from 3.0.0 to 4.2.0 to address two high-severity issues (prototype pollution and uncontrolled recursion).
The library is only used in the Poetry fix path (generate-upgrades.ts) via toml.parse() on pyproject.toml contents. No application code changes are included—only the version pin in package.json.
Reviewed by Cursor Bugbot for commit fbf0cb5. Bugbot is set up for automated code reviews on this repo. Configure here.
This major version upgrade of the toml parser introduces significant changes, including a critical security fix and new behavior for handling large integers.
Key Breaking Changes:
Integer Handling: By default, the parser will now throw an error when encountering integers that cannot be safely represented by JavaScript's number type (i.e., those outside the Number.MAX_SAFE_INTEGER range). Previously, these might have been parsed with a loss of precision. To handle these large numbers, you must now explicitly use the { bigint: true } option in toml.parse().
Security Fix (Denial of Service): Version 4.2.0 fixes CVE-2026-77465. Versions prior to 4.2.0 were vulnerable to a crash via uncontrolled recursion when parsing deeply nested arrays or tables. The fix introduces a nesting depth limit. While this prevents a security vulnerability, it means that TOML files with extreme nesting that may have parsed before will now throw an error.
Recommendation:
Review Integer Usage: If your application processes TOML files that may contain integer IDs or values larger than 2⁵³ − 1, you must update your toml.parse() calls to include the bigint: true option to prevent runtime errors.
Acknowledge Security Fix: This upgrade is essential to patch a high-severity Denial of Service vulnerability. The new nesting depth limit is unlikely to affect most legitimate use cases.
Notice 🤖: This content was augmented using artificial intelligence. AI-generated content may contain errors and should be reviewed for accuracy before use.
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
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.
Snyk has created this PR to fix 2 vulnerabilities in the npm dependencies of this project.
Snyk changed the following file(s):
packages/snyk-fix/package.jsonVulnerabilities that will be fixed with an upgrade:
SNYK-JS-TOML-19639693
SNYK-JS-TOML-19639695
Breaking Change Risk
Important
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.
For more information:
🧐 View latest project report
📜 Customise PR templates
🛠 Adjust project settings
📚 Read about Snyk's upgrade logic
Learn how to fix vulnerabilities with free interactive lessons:
🦉 Prototype Pollution
🦉 Uncontrolled Recursion
Note
Medium Risk
Major-version parser upgrade on the Poetry fix path; behavior should be validated against existing Poetry/pyproject.toml fixtures even though usage is limited to parse().
Overview
Bumps the
tomldependency in@snyk/fixfrom 3.0.0 to 4.2.0 to address two high-severity issues (prototype pollution and uncontrolled recursion).The library is only used in the Poetry fix path (
generate-upgrades.ts) viatoml.parse()onpyproject.tomlcontents. No application code changes are included—only the version pin inpackage.json.Reviewed by Cursor Bugbot for commit fbf0cb5. Bugbot is set up for automated code reviews on this repo. Configure here.