fix: upgrade AWS SDK to resolve fast-xml-parser vulnerabilities#785
Merged
fix: upgrade AWS SDK to resolve fast-xml-parser vulnerabilities#785
Conversation
Bump @aws-sdk/client-cloudcontrol and @aws-sdk/client-s3 from ^3.1002.0 to ^3.1013.0. This pulls in @aws-sdk/xml-builder@3.972.14 which depends on fast-xml-parser@5.5.6, resolving two known vulnerabilities in the previously pinned fast-xml-parser@5.4.1: - GHSA-8gc5-j5rx-235r - GHSA-jp2q-39xq-3w4g Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Review: Approved
Clean dependency version bump — no code changes, only deno.json specifier updates and deno.lock regeneration.
Verified:
- Only
deno.jsonanddeno.lockare modified - AWS SDK packages bumped from
^3.1002.0to^3.1013.0 - Resolves transitive
fast-xml-parser@5.4.1vulnerabilities (GHSA-8gc5-j5rx-235r, GHSA-jp2q-39xq-3w4g) by pulling infast-xml-parser@5.5.6via@aws-sdk/xml-builder@3.972.14 - No domain code, libswamp imports, or test changes needed
- No blocking issues
🤖 Generated with Claude Code
There was a problem hiding this comment.
Adversarial Review
This PR changes exactly two files: deno.json (2-line version bump) and deno.lock (regenerated lockfile). There are zero source code changes.
Critical / High
None.
Medium
None.
Low
None.
Verdict
PASS — Pure dependency version bump (@aws-sdk/client-cloudcontrol and @aws-sdk/client-s3 from ^3.1002.0 to ^3.1013.0) to remediate known CVEs in transitive dependency fast-xml-parser. No application code changed, no API contract changes, no new logic to break. Semver ranges are correct and lockfile pins are consistent.
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
@aws-sdk/client-cloudcontroland@aws-sdk/client-s3from^3.1002.0to^3.1013.0@aws-sdk/xml-builder@3.972.14(up from3.972.10) which depends onfast-xml-parser@5.5.6instead of the vulnerable5.4.1Details
The vulnerability chain was:
After the upgrade:
No code changes were required — this is a version bump in
deno.jsonand the resultingdeno.lockupdate. Type-checking (deno check) passes cleanly.Test plan
deno check main.tspassesdeno run auditno longer flags fast-xml-parser🤖 Generated with Claude Code