fix: remediate high & critical Dependabot and Wiz vulnerabilities#625
Merged
Conversation
Add yarn resolutions to fix: - shell-quote (critical): prototype pollution via __proto__, patched to ^1.8.4 - @grpc/grpc-js (high): multiple vulnerabilities, patched to ^1.9.16 and ^1.14.4 - js-cookie (high): prototype pollution, patched to ^3.0.7 Bump existing resolutions: - hono: ^4.12.14 -> ^4.12.21 - qs: ^6.14.1 -> ^6.14.2 - devalue: ^5.6.2 -> ^5.6.4 Update Ruby e2e apps: - puma: ~> 6.x -> ~> 7.2 (no 6.x patch available, patched at 7.2.1) Add npm overrides in e2e/react-native/package.json: - shell-quote, @remix-run/server-runtime, tmp, turbo-stream Co-Authored-By: Patrick Kaeding <patrick@kaeding.name>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 927d818. Configure here.
- @grpc/grpc-js@~1.8.0: use ~1.9.16 instead of ^1.9.16 to stay on the 1.9.x line and avoid deduping into 1.14.x for google-gax/firebase-admin - Remove turbo-stream ^3.0.0 override from react-native e2e since v3 is wire-format incompatible with @remix-run/server-runtime 2.x Co-Authored-By: Patrick Kaeding <patrick@kaeding.name>
Co-Authored-By: Patrick Kaeding <patrick@kaeding.name>
Vadman97
approved these changes
Jun 15, 2026
abelonogov-ld
added a commit
that referenced
this pull request
Jun 17, 2026
* main: chore: release main (#631) fix(highlight.run): make published TypeScript declarations resolvable (#629) chore: release main (#628) fix: remediate high & critical Dependabot and Wiz vulnerabilities (#625) feat(flutter): allow overriding OTLP endpoint and backend URL in example (#624) # Conflicts: # sdk/@launchdarkly/flutter/packages/observability/CHANGELOG.md # sdk/@launchdarkly/flutter/packages/observability/ios/launchdarkly_flutter_observability.podspec # sdk/@launchdarkly/flutter/packages/observability/ios/launchdarkly_flutter_observability/Package.swift # sdk/@launchdarkly/flutter/packages/observability/pubspec.yaml
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
Remediate high & critical security vulnerabilities flagged by Dependabot and Wiz.
Yarn resolutions (critical/high)
shell-quote__proto__(CVE-2026-46625)^1.8.4@grpc/grpc-js~1.9.16/^1.14.4js-cookie__proto__^3.0.7Yarn resolutions bumped (moderate/low)
hono^4.12.14^4.12.21qs^6.14.1^6.14.2devalue^5.6.2^5.6.4Ruby e2e apps — puma (high)
Updated
pumafrom~> 6.xto~> 7.2across all three e2e Ruby apps. No 6.x patch exists; first patched version is 7.2.1.React Native e2e — npm overrides
Added overrides for
shell-quote,@remix-run/server-runtime, andtmpine2e/react-native/package.json. The lockfile usesworkspace:*and cannot be regenerated outside the full workspace context. (turbo-streamv3 override was removed since it's wire-format incompatible with@remix-run/server-runtime2.x.)How did you test this change?
yarn installsucceeded with updated resolutionsyarn format:allpassedbundle update pumasucceeded for all three Ruby e2e appsAre there any deployment considerations?
No. These are dependency version bumps only — no application code changes.
Link to Devin session: https://app.devin.ai/sessions/00fbfec1acf445279796ff45a7b65731
Requested by: @pkaeding
Note
Low Risk
Changes are version pins and lockfile updates in e2e/demo paths; Puma 7 is a major bump but limited to test apps with standard config.
Overview
Bumps transitive and direct dependencies to address Dependabot/Wiz findings, with no application code changes.
Root
package.jsonresolutions add or tighten pins forshell-quote,js-cookie, and@grpc/grpc-js, and bumphono,qs, anddevalue;yarn.lockreflects the resolved versions (including consolidatedshell-quoteentries).e2e/react-native/package.jsonadds npmoverridesforshell-quote,@remix-run/server-runtime, andtmp.All three Ruby e2e apps move
pumafrom 6.x to~> 7.2(locks resolve to 7.2.1); lockfiles also pick uplaunchdarkly-observability0.2.1 where the path gem is used.Reviewed by Cursor Bugbot for commit f5f47ac. Bugbot is set up for automated code reviews on this repo. Configure here.