Bump bridge to 0.0.1 and refresh npm dependencies within upstream lim… - #6
Merged
Conversation
…its. Update dev toolchain, add undici/tar overrides to clear high audit findings, and keep Connect/protobuf on 1.x while @cursor/sdk pins that stack.
There was a problem hiding this comment.
Pull request overview
This PR updates the bridge/ package versioning and refreshes its Node toolchain/dependencies, including adding npm overrides intended to address security audit findings.
Changes:
- Bump the bridge package/version constants from
1.0.0to0.0.1. - Update dev toolchain dependencies (
@bufbuild/buf,@types/node,typescript). - Add npm
overridesand update the lockfile to pull in newerundiciandtar.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| bridge/src/constants.ts | Updates the bridge-reported version constant. |
| bridge/package.json | Bumps package version; updates devDependencies; adds overrides for undici/tar. |
| bridge/package-lock.json | Updates lockfile to match refreshed dependency tree and new versions. |
Files not reviewed (1)
- bridge/package-lock.json: Generated file
Comments suppressed due to low confidence (1)
bridge/package-lock.json:29
package-lock.jsonstill records the project-level Node engine as ">=18", but the dependency graph now includesundici@6.26.0which requires Node ">=18.17". Keep the lockfile metadata consistent withpackage.jsonto avoid confusing engine checks in tooling.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
54
to
+56
| "engines": { | ||
| "node": ">=18" | ||
| }, |
Comment on lines
+57
to
60
| "overrides": { | ||
| "undici": "^6.26.0", | ||
| "tar": "^7.5.16" | ||
| } |
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.
…its.
Update dev toolchain, add undici/tar overrides to clear high audit findings, and keep Connect/protobuf on 1.x while @cursor/sdk pins that stack.
Summary
Test plan
go test ./...go vet ./...cd bridge && npm ci && npm run build(if bridge files changed)CURSOR_API_KEY(if agent/runtime behavior changed)Checklist
node_modules/committed