chore: resolve open dependabot security alerts#7
Conversation
- shell-quote 1.8.3 -> 1.8.4 via override (critical, alert #62) Signed-off-by: Jonathan Norris <jonathan.norris@dynatrace.com>
|
Warning Review limit reached
Next review available in: 57 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
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 |
There was a problem hiding this comment.
Pull request overview
This PR addresses an open Dependabot security alert by forcing an updated shell-quote transitive dependency version via npm overrides, ensuring the vulnerable 1.8.3 is no longer installed in this React Native demo app.
Changes:
- Added an npm
overridesentry forshell-quoteto ensure a patched version is used. - Updated
package-lock.jsonto resolveshell-quotefrom1.8.3to1.8.4.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Adds an override to force shell-quote to a patched version. |
| package-lock.json | Updates the resolved shell-quote tarball/integrity to 1.8.4. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: Jonathan Norris <jonathan.norris@dynatrace.com>
- @babel/core ^7.29.0 -> ^7.29.6 (low, alert #64) Signed-off-by: Jonathan Norris <jonathan.norris@dynatrace.com>
Summary
shell-quote1.8.3 -> 1.8.4 via npmoverridesto resolve a critical vulnerability (shell-quote quote() does not escape newlines in object .op values, alert #62).shell-quoteis a transitive dependency pulled in viareact-native>react-devtools-core.@babel/core7.29.0 -> 7.29.6 (direct devDependency) to resolve a low-severity vulnerability (arbitrary file read via sourceMappingURL comment, alert #64).Lockfile-only re-resolution did not upgrade the pinned transitive
shell-quoteversion, so an override was used (acceptable for this demo/example app);@babel/corewas a direct dependency so it was bumped directly with a plain version change.tsc --noEmitpasses; this repo has no test/lint/build scripts and no CI workflows.