Bump deps to resolve open security alerts (node + frontend + ruby)#583
Merged
Conversation
Closes #577, #580, #581, #582 node/package-lock.json (npm update): - uuid 11.1.0 -> 11.1.1 (CVE-2026-41907; direct dep, within ^11.1.0 range) - brace-expansion 5.0.5 -> 5.0.6 (transitive) frontend/package-lock.json (npm update): - axios 1.15.1 -> 1.16.1 (transitive of plaid SDK) ruby/Gemfile.lock (bundle update faraday): - faraday 2.14.1 -> 2.14.2 (CVE-2026-33637) Stayed within current semver ranges; no Gemfile or package.json changes. Dependabot's uuid -> 14.0.0 (#577) is a major version bump and unnecessary for this CVE since 11.1.1 contains the patch. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Resolves all 5 open Dependabot alerts on master via in-range bumps. No
package.jsonorGemfilechanges — just lockfile regens fornode/+frontend/andbundle update faradayforruby/.Closes #577, #580, #581, #582.
Alerts closed
Note on uuid
Dependabot opened #577 to bump uuid to 14.0.0 (a 3-major-version jump). The CVE is patched in 11.1.1, which is within the current
^11.1.0range, so this PR stays there. The major-version upgrade can be considered separately if desired.Test plan
cd node && npm install && npm start— Plaid SDK + uuid usage smokecd frontend && npm install && npm run start— Link flowcd ruby && bundle install && bundle exec ruby server.rb— boots