build(deps-dev): bump @vscode/vsce from 3.9.1 to 3.9.2 and fix macOS CI test failure#75
Merged
unknowIfGuestInDream merged 3 commits intoJun 5, 2026
Conversation
Bumps [@vscode/vsce](https://github.com/Microsoft/vsce) from 3.9.1 to 3.9.2. - [Release notes](https://github.com/Microsoft/vsce/releases) - [Commits](microsoft/vscode-vsce@v3.9.1...v3.9.2) --- updated-dependencies: - dependency-name: "@vscode/vsce" dependency-version: 3.9.2 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
Contributor
|
@copilot |
Contributor
... 已修复。macOS 上的失败是因为 VS Code 的 IPC socket 路径超过了 Unix domain socket 的 103 字符限制——默认的 我将 |
Copilot
AI
changed the title
build(deps-dev): bump @vscode/vsce from 3.9.1 to 3.9.2
build(deps-dev): bump @vscode/vsce from 3.9.1 to 3.9.2 and fix macOS CI test failure
Jun 5, 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.
Bumps @vscode/vsce from 3.9.1 to 3.9.2.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Additional fix: macOS CI test failure
The
npm run testjob was failing on macOS withError: listen EINVALbecause the VS Code IPC Unix domain socket path exceeded the 103-character limit. The default--user-data-dir(.vscode-test/user-data) lives under the long GitHub runner workspace path, making the socket path too long..vscode-test.jsonto.vscode-test.mjsso the config can compute a cross-platform short path.--user-data-dirto a short OS temp directory (viaos.tmpdir()+mkdtempSync) throughlaunchArgs, keeping the socket path well under the limit on all platforms.testnpm script to reference the new.vscode-test.mjsconfig file.Validated locally: compile succeeds, the config loads via
defineConfig, and the test suite passes (3 passing) under xvfb.