chore(web): bump @aws-sdk/credential-providers to ^3.1036.0 (CVE-2026-41650)#1148
Merged
brendan-kellam merged 3 commits intomainfrom Apr 23, 2026
Merged
chore(web): bump @aws-sdk/credential-providers to ^3.1036.0 (CVE-2026-41650)#1148brendan-kellam merged 3 commits intomainfrom
brendan-kellam merged 3 commits intomainfrom
Conversation
…VE-2026-41650 Fixes SOU-982 Bumps `@aws-sdk/credential-providers` from `^3.1023.0` to `^3.1036.0`, which transitively pulls in `@aws-sdk/xml-builder@3.972.19` and `fast-xml-parser@5.7.1`, resolving CVE-2026-41650 (GHSA-gh4j-gqv2-49f6). CVE-2026-41650 describes missing escaping of `-->` and `]]>` sequences in `XMLBuilder`'s comment and CDATA serialization. The AWS SDK only uses `XMLParser` (not `XMLBuilder`), so the vulnerable code path is not reachable in this tree — this bump is an SCA-alert cleanup. Preferred over a yarn resolution override so we follow AWS SDK's own dependency ranges instead of bypassing them. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This comment has been minimized.
This comment has been minimized.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
WalkthroughUpdates Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested reviewers
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Contributor
License Audit
Weak Copyleft Packages (informational)
Resolved Packages (33)
|
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.
Fixes SOU-982
Summary
@aws-sdk/credential-providersfrom^3.1023.0→^3.1036.0, which transitively pulls@aws-sdk/xml-builder@3.972.19→fast-xml-parser@5.7.1, resolving CVE-2026-41650 / GHSA-gh4j-gqv2-49f6.fast-xml-parserin the resolved tree, at the patched5.7.1.Why the upstream bump over a resolution override
The CVE affects
fast-xml-parser'sXMLBuildercomment/CDATA serialization. The AWS SDK only usesXMLParser, so the vulnerable code path is not reachable in this tree regardless. Given that, the deciding factor is which remediation leaves less mess behind:resolutions: { "fast-xml-parser": "^5.7.0" }entry would be ~30 lockfile lines but adds a permanent override that bypasses AWS SDK's own dependency ranges and needs periodic auditing.Test plan
yarn installresults in a singlefast-xml-parser@5.7.1in the treeyarn buildpassesyarn testpasses🤖 Generated with Claude Code
Summary by CodeRabbit