mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-31 19:18:08 -05:00
* feat: update to Electron v42
* chore: drop support for arm 32-bit server
* chore: update types/node to v24.x
* chore: temporarily lock the target version for build/
* chore: update v8-source-location.patch
* chore: fix clippy
* chore: cleanup armhf server ci config
* fix: broken lock file
* fix: c++ version requirement for sysroot builds
* fix: msvc compilation of native modules
* fix: handle rejections for fire-and-forget loadurl
* fix: windows build
* ci: fix teardown of daemon process on windows
```
2026-05-15T20:55:09.7717127Z Assertion failed: !(handle->flags & UV_HANDLE_CLOSING), file src\win\async.c, line 76
```
* chore: update deb and rpm dependencies
* chore: update version info
* spec: improve reliablity of offscreencanvas tests
* spec: retry EPERM failures on teardown
* chore: update x86_64 rpm deps
* ci: exclude server binskim for armhf
* temp: bump distro
* test: ignore deprecation warnings treated as errors
* chore: update lockfile
* fix: externalize electron from auth extension bundles
Error: Cannot find module 'c:\Users\cloudtest\AppData\Local\Temp\vscode-sanityQvCaze\vscode-server-win32-x64-web\extensions\github-authentication\dist\install.js'
at Module._resolveFilename (node:internal/modules/cjs/loader:1476:15)
at wrapResolveFilename (node:internal/modules/cjs/loader:1049:27)
at defaultResolveImplForCJSLoading (node:internal/modules/cjs/loader:1073:10)
at resolveForCJSWithHooks (node:internal/modules/cjs/loader:1094:12)
at Module._load (node:internal/modules/cjs/loader:1262:25)
at wrapModuleLoad (node:internal/modules/cjs/loader:255:19)
at Module.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:154:5)
at node:internal/main/run_main_module:33:47 {
code: 'MODULE_NOT_FOUND',
requireStack: []
}
Node.js v24.15.0
* test: make wsl sanity tests reliable
* chore: bump electron@42.1.0
* temp: bump distro
* chore: bump electron@42.2.0
* chore: bump distro
* chore: update debian dependencies
* Revert "test: make wsl sanity tests reliable"
This reverts commit b3f2b63e83.
* test: do not fail for deprecation warnings
* chore: patch node24 server binary for wsl1
* chore: address review feedback
* chore: revert global navigation error handler in browserview
* chore: bump distro
258 lines
7.4 KiB
JSON
258 lines
7.4 KiB
JSON
{
|
|
"name": "github",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.41.0"
|
|
},
|
|
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
|
"icon": "images/icon.png",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"extensionDependencies": [
|
|
"vscode.git-base"
|
|
],
|
|
"type": "module",
|
|
"main": "./out/extension.js",
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"enabledApiProposals": [
|
|
"canonicalUriProvider",
|
|
"chatSessionsProvider",
|
|
"contribEditSessions",
|
|
"contribShareMenu",
|
|
"contribSourceControlHistoryItemMenu",
|
|
"scmHistoryProvider",
|
|
"shareProvider",
|
|
"timeline"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "github.publish",
|
|
"title": "%command.publish%"
|
|
},
|
|
{
|
|
"command": "github.copyVscodeDevLink",
|
|
"title": "%command.copyVscodeDevLink%"
|
|
},
|
|
{
|
|
"command": "github.copyVscodeDevLinkFile",
|
|
"title": "%command.copyVscodeDevLink%"
|
|
},
|
|
{
|
|
"command": "github.copyVscodeDevLinkWithoutRange",
|
|
"title": "%command.copyVscodeDevLink%"
|
|
},
|
|
{
|
|
"command": "github.openOnVscodeDev",
|
|
"title": "%command.openOnVscodeDev%",
|
|
"icon": "$(globe)"
|
|
},
|
|
{
|
|
"command": "github.graph.openOnGitHub",
|
|
"title": "%command.openOnGitHub%",
|
|
"icon": "$(github)"
|
|
},
|
|
{
|
|
"command": "github.timeline.openOnGitHub",
|
|
"title": "%command.openOnGitHub%",
|
|
"icon": "$(github)"
|
|
},
|
|
{
|
|
"command": "github.createPullRequest",
|
|
"title": "%command.createPullRequest%",
|
|
"icon": "$(git-pull-request)"
|
|
},
|
|
{
|
|
"command": "github.openPullRequest",
|
|
"title": "%command.openPullRequest%",
|
|
"icon": "$(git-pull-request)"
|
|
}
|
|
],
|
|
"continueEditSession": [
|
|
{
|
|
"command": "github.openOnVscodeDev",
|
|
"when": "github.hasGitHubRepo",
|
|
"qualifiedName": "Continue Working in vscode.dev",
|
|
"category": "Remote Repositories",
|
|
"remoteGroup": "virtualfs_44_vscode-vfs_2_web@2"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "github.publish",
|
|
"when": "git-base.gitEnabled && workspaceFolderCount != 0 && remoteName != 'codespaces'"
|
|
},
|
|
{
|
|
"command": "github.createPullRequest",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "github.openPullRequest",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "github.graph.openOnGitHub",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "github.copyVscodeDevLink",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "github.copyVscodeDevLinkFile",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "github.copyVscodeDevLinkWithoutRange",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "github.openOnVscodeDev",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "github.timeline.openOnGitHub",
|
|
"when": "false"
|
|
}
|
|
],
|
|
"file/share": [
|
|
{
|
|
"command": "github.copyVscodeDevLinkFile",
|
|
"when": "github.hasGitHubRepo && remoteName != 'codespaces'",
|
|
"group": "0_vscode@0"
|
|
}
|
|
],
|
|
"editor/context/share": [
|
|
{
|
|
"command": "github.copyVscodeDevLink",
|
|
"when": "github.hasGitHubRepo && resourceScheme != untitled && !isInEmbeddedEditor && remoteName != 'codespaces'",
|
|
"group": "0_vscode@0"
|
|
}
|
|
],
|
|
"explorer/context/share": [
|
|
{
|
|
"command": "github.copyVscodeDevLinkWithoutRange",
|
|
"when": "github.hasGitHubRepo && resourceScheme != untitled && !isInEmbeddedEditor && remoteName != 'codespaces'",
|
|
"group": "0_vscode@0"
|
|
}
|
|
],
|
|
"editor/lineNumber/context": [
|
|
{
|
|
"command": "github.copyVscodeDevLink",
|
|
"when": "github.hasGitHubRepo && resourceScheme != untitled && activeEditor == workbench.editors.files.textFileEditor && config.editor.lineNumbers == on && remoteName != 'codespaces'",
|
|
"group": "1_cutcopypaste@2"
|
|
},
|
|
{
|
|
"command": "github.copyVscodeDevLink",
|
|
"when": "github.hasGitHubRepo && resourceScheme != untitled && activeEditor == workbench.editor.notebook && remoteName != 'codespaces'",
|
|
"group": "1_cutcopypaste@2"
|
|
}
|
|
],
|
|
"editor/title/context/share": [
|
|
{
|
|
"command": "github.copyVscodeDevLinkWithoutRange",
|
|
"when": "github.hasGitHubRepo && resourceScheme != untitled && remoteName != 'codespaces'",
|
|
"group": "0_vscode@0"
|
|
}
|
|
],
|
|
"scm/historyItem/context": [
|
|
{
|
|
"command": "github.graph.openOnGitHub",
|
|
"when": "github.hasGitHubRepo",
|
|
"group": "0_view@2"
|
|
}
|
|
],
|
|
"timeline/item/context": [
|
|
{
|
|
"command": "github.timeline.openOnGitHub",
|
|
"group": "1_actions@3",
|
|
"when": "github.hasGitHubRepo && timelineItem =~ /git:file:commit\\b/"
|
|
}
|
|
],
|
|
"agents/changes/actions/primary": []
|
|
},
|
|
"configuration": [
|
|
{
|
|
"title": "GitHub",
|
|
"properties": {
|
|
"github.branchProtection": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%config.branchProtection%"
|
|
},
|
|
"github.gitAuthentication": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%config.gitAuthentication%"
|
|
},
|
|
"github.gitProtocol": {
|
|
"type": "string",
|
|
"enum": [
|
|
"https",
|
|
"ssh"
|
|
],
|
|
"default": "https",
|
|
"description": "%config.gitProtocol%"
|
|
},
|
|
"github.showAvatar": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"default": true,
|
|
"description": "%config.showAvatar%"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"viewsWelcome": [
|
|
{
|
|
"view": "scm",
|
|
"contents": "%welcome.publishFolder%",
|
|
"when": "config.git.enabled && git.state == initialized && workbenchState == folder && git.parentRepositoryCount == 0 && git.unsafeRepositoryCount == 0 && git.closedRepositoryCount == 0"
|
|
},
|
|
{
|
|
"view": "scm",
|
|
"contents": "%welcome.publishWorkspaceFolder%",
|
|
"when": "config.git.enabled && git.state == initialized && workbenchState == workspace && workspaceFolderCount != 0 && git.parentRepositoryCount == 0 && git.unsafeRepositoryCount == 0 && git.closedRepositoryCount == 0"
|
|
}
|
|
],
|
|
"markdown.previewStyles": [
|
|
"./markdown.css"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "gulp compile-extension:github",
|
|
"watch": "gulp watch-extension:github"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/graphql": "8.2.0",
|
|
"@octokit/graphql-schema": "14.4.0",
|
|
"@octokit/rest": "21.1.0",
|
|
"tunnel": "^0.0.6",
|
|
"@vscode/extension-telemetry": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|