chore(deps): bump fast-uri, js-yaml, deepmerge-ts to patched versions (lockfile refresh) - #414
Merged
gaurav-singh-9227 merged 3 commits intoSep 16, 2026
Conversation
…ions Pin transitive dependencies to versions that clear known high-severity advisories via npm `overrides`: - fast-uri ^3.1.6 (pulled by ajv via @modelcontextprotocol/sdk): fixes host-confusion and SSRF advisories affecting 3.0.0–3.1.5. - js-yaml ^4.3.2 (dev-only, pulled by eslint): fixes the maxTotalMergeKeys CPU-exhaustion advisory affecting 4.0.0–4.3.1. - deepmerge-ts ^8.0.0 (pulled by webdriverio's @wdio/config and @wdio/utils): fixes the recursive-object stack-exhaustion advisory affecting <8.0.0. fast-uri and js-yaml are patch bumps. deepmerge-ts is a major bump past @wdio's declared ^7.0.3 range; lint, typecheck, and the test suite pass unchanged (deepmerge-ts@8 requires node >=16.9.0, satisfied here). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Central YAML (base), Organization UI (inherited), Workspace UI (inherited) Review profile: ASSERTIVE Plan: Enterprise Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Comment |
…ry bumps Replace the `overrides` block with a plain lockfile refresh. All three patched versions are reachable within the existing declared ranges, so no manual pins are needed: - fast-uri 3.1.7 (satisfies ajv's ^3.0.1) — patch - js-yaml 4.3.2 (satisfies eslintrc's ^4.1.0, dev-only) — patch - deepmerge-ts 8.0.2 — via webdriverio 9.31.7 (within the project's ^9.27.0), whose @wdio/config officially declares deepmerge-ts ^8 This uses the webdriverio release that officially supports deepmerge-ts 8, rather than forcing 8 under a webdriverio that declares ^7 via an override. npm audit confirms all three advisories are cleared; lint, typecheck, and the test suite pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…des-fast-uri-deepmerge # Conflicts: # package-lock.json # package.json
gaurav-singh-9227
approved these changes
Sep 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.
What
Refresh the lockfile so three transitive dependencies resolve to patched versions that clear known high-severity advisories. No
package.jsonoverrides— all three are reachable within the existing declared ranges vianpm update.fast-uri^3.0.1(patch)js-yaml^4.1.0(patch, dev-only)deepmerge-ts^9.27.0), whose@wdio/configdeclaresdeepmerge-ts ^8Why lockfile refresh instead of
overridesAn override would force
deepmerge-ts@8underneath webdriverio 9.27.2, whose@wdioofficially declares^7— an unsupported combination and a permanent manual pin. Bumping webdriverio to 9.31.7 (within the range the project already allows) pullsdeepmerge-ts@8through the maintained graph, a supported combination with nothing to maintain.Testing
npm update→npm run lint→tsc --noEmit→npx vitest run: all green (419/419).npm auditconfirms the three advisories are cleared.🤖 Generated with Claude Code