chore(deps): bump vulnerable dependencies (8 GHSAs)#88
Merged
Conversation
Resolves all 8 open Dependabot security alerts in one shot.
Go (studio/go.mod):
golang.org/x/crypto: 0.33.0 → 0.45.0
- GHSA-#17 (high): DoS via slow/incomplete key exchange
- GHSA-#19 (med): unbounded memory consumption
- GHSA-#20 (med): panic on malformed message
golang.org/x/net: 0.35.0 → 0.47.0 (0.45.0 of crypto requires net 0.47.0)
- GHSA-#16 (med): HTTP Proxy bypass via IPv6 zone IDs
- GHSA-#18 (med): XSS
npm (studio/frontend):
vite: ^5.4.0 → ^8.0.10
- GHSA-#15 (med): path traversal in optimized deps .map handling
- Pulls esbuild ^0.25 transitively, which also clears GHSA-#14
npm (vscode):
@vscode/vsce: ^2.24.0 → ^3.9.0
- vsce 3.x dropped its uuid dependency entirely, clearing GHSA-#12
(uuid <14 missing buffer bounds check) without forcing a uuid
override on every consumer.
All builds + tests pass: go build, go test, vscode tsc compile, vite
build (Studio frontend). Closes Dependabot PRs #78, #79, #80, #81 (this
covers their scope cleanly in one PR).
This was referenced May 2, 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.
Summary
Resolves all 8 open Dependabot security alerts in one focused PR.
Why one PR vs four Dependabot rebases
The four open Dependabot PRs (#78, #79, #80, #81) were stale post-v0.7.0 merges and would each have needed individual rebases + CI runs. Bundling into one chore PR is cleaner:
net 0.47.0(vs Dependabot's 0.38.0) is required bycrypto 0.45.0's minimum version constraint — taking the higher pin keeps the module graph internally consistent.vsce 2 → 3is a major bump for a build tool only; vsce 3.x dropped its directuuiddep, which clears the alert without forcing a transitive override on every consumer.Verification
go build ./...cleango test ./...— full suite greencd studio && go build ./... && go vet ./...cleancd studio/frontend && npm install && npm run build— vite 8 build clean, 0 npm vulnerabilitiescd vscode && npm install && npm run compile— tsc clean, 0 npm vulnerabilitiesAuto-closes