deps: resolve newly-expanded Dependabot security advisories#143
Merged
laileni-aws merged 1 commit intoJul 16, 2026
Merged
Conversation
Resolve 10 Dependabot alerts that re-surfaced after their advisories were expanded to new version lines (or newly published) since the prior security PRs merged. All verified against the current advisory ranges. - koa 2.16.2 -> 2.16.4 (aws#99, #246) - @tootallnate/once -> 2.0.1 (#214) - brace-expansion (1.x) -> 1.1.13 (#170, aws#20) - yaml -> 1.10.3 (#157) - immutable -> 4.3.8 (aws#131) - minimatch (5.x) -> 5.1.8 (aws#106) - diff (4.x -> 4.0.4, 5.x -> 5.2.2) (aws#55) - glob (10.x) -> 10.5.0 (aws#36) Uses version-scoped overrides (pkg@major) so other coexisting major lines are untouched. Root lockfile only; verified idempotent. Deferred: uuid #217/#219/#220 require a major 9->11 bump. uuid is a direct dependency of the generated src.gen clients, so npm ignores an override, and npm won't dedupe the hoisted 9.0.1 shared across older @aws-sdk clients. That needs a dedicated effort (generated client + @types/uuid updates) and is left for a follow-up.
laileni-aws
marked this pull request as ready for review
July 15, 2026 20:39
chungjac
approved these changes
Jul 16, 2026
laileni-aws
enabled auto-merge (squash)
July 16, 2026 17:59
ashishrp-aws
approved these changes
Jul 16, 2026
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.
Problem
After the earlier security PRs (#136/#137/#138) merged, several Dependabot
alerts re-surfaced because their advisories were expanded to new version
lines (or newly published) — re-flagging packages at versions the earlier PRs
didn't target. Example: the
uuidadvisory added< 11.1.1;yamladded< 1.10.3; a newkoaCVE needs2.16.4.Solution
Resolve the 10 cleanly-fixable alerts with the same safe overrides approach,
verified against the current advisory ranges. Root lockfile only; verified
idempotent.
koa@tootallnate/oncebrace-expansion(1.x)@1)yamlimmutableminimatch(5.x)@5)diffglob(10.x)@10)Version-scoped overrides (
pkg@major) are used where multiple major linescoexist, so unaffected lines aren't disturbed.
Deferred:
uuid(#217, #219, #220)Not included — these need a major
uuid9 → 11 bump, which is genuinelyrisky here:
uuidis a direct dependency of the generatedsrc.genclients (^9.0.1),and npm ignores an override on a direct dependency unless the spec matches
exactly (so it stays 9.0.1).
uuid@9.0.1shared across older@aws-sdkclients via@smithy/middleware-retry(verified with--package-lock-only, a real reify, andnpm dedupe).@types/uuidand needsbuild validation. Left for a dedicated follow-up.
Verification
against the current (expanded) advisory ranges.
package-lock.jsonverified idempotent.feature/xbranches will not be squash-merged at release time.