Update which to v7 and bump vscode-processutils to 0.2.3#379
Closed
bwateratmsft wants to merge 1 commit into
Closed
Update which to v7 and bump vscode-processutils to 0.2.3#379bwateratmsft wants to merge 1 commit into
bwateratmsft wants to merge 1 commit into
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This PR updates the @microsoft/vscode-processutils package to use which@7, bumps the package version to 0.2.3, and records the change in the changelog and lockfile.
Changes:
- Bumped
@microsoft/vscode-processutilsversion from0.2.2→0.2.3. - Updated dependency
whichfrom^5.0.0→^7.0.0. - Added a
0.2.3CHANGELOG entry and updatedpackage-lock.jsonaccordingly.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| packages/vscode-processutils/package.json | Version bump and which dependency upgrade to v7. |
| packages/vscode-processutils/CHANGELOG.md | Added release notes for 0.2.3. |
| package-lock.json | Lockfile updates reflecting which@7 (and transitive isexe@4). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
27
to
30
| "dependencies": { | ||
| "tree-kill": "^1.2.2", | ||
| "which": "^5.0.0" | ||
| "which": "^7.0.0" | ||
| }, |
Comment on lines
+1
to
+3
| ## 0.2.3 - 19 June 2026 | ||
| ### Changed | ||
| * Updated `which` to v7. |
Collaborator
Author
|
Closing for now. Don't want to force a higher Node version yet. |
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
whichfrom^5.0.0to^7.0.0in@microsoft/vscode-processutils.0.2.3and added a CHANGELOG entry.Notes
which@7ships no bundled type declarations (the tarball contains only JS), so@types/whichis retained.which.sync(...)API is unchanged across v5→v7; the majors were purely Node engine-range bumps.which@7requires Node^22.22.2 || ^24.15.0 || >=26.0.0. VS Code targets Node 24.15, which satisfies this.Validation
vscode-processutils.