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
155 lines
4.9 KiB
JSON
155 lines
4.9 KiB
JSON
{
|
|
"name": "microsoft-authentication",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.42.0"
|
|
},
|
|
"icon": "media/icon.png",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [],
|
|
"enabledApiProposals": [
|
|
"nativeWindowHandle",
|
|
"authIssuers",
|
|
"authenticationChallenges"
|
|
],
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"extensionKind": [
|
|
"ui",
|
|
"workspace"
|
|
],
|
|
"contributes": {
|
|
"authentication": [
|
|
{
|
|
"label": "Microsoft",
|
|
"id": "microsoft",
|
|
"authorizationServerGlobs": [
|
|
"https://login.microsoftonline.com/*",
|
|
"https://login.microsoftonline.com/*/v2.0"
|
|
]
|
|
},
|
|
{
|
|
"label": "Microsoft Sovereign Cloud",
|
|
"id": "microsoft-sovereign-cloud"
|
|
}
|
|
],
|
|
"configuration": [
|
|
{
|
|
"title": "Microsoft Sovereign Cloud",
|
|
"properties": {
|
|
"microsoft-sovereign-cloud.environment": {
|
|
"type": "string",
|
|
"markdownDescription": "%microsoft-sovereign-cloud.environment.description%",
|
|
"enum": [
|
|
"ChinaCloud",
|
|
"USGovernment",
|
|
"custom"
|
|
],
|
|
"enumDescriptions": [
|
|
"%microsoft-sovereign-cloud.environment.enumDescriptions.AzureChinaCloud%",
|
|
"%microsoft-sovereign-cloud.environment.enumDescriptions.AzureUSGovernment%",
|
|
"%microsoft-sovereign-cloud.environment.enumDescriptions.custom%"
|
|
]
|
|
},
|
|
"microsoft-sovereign-cloud.customEnvironment": {
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"markdownDescription": "%microsoft-sovereign-cloud.customEnvironment.description%",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "%microsoft-sovereign-cloud.customEnvironment.name.description%"
|
|
},
|
|
"portalUrl": {
|
|
"type": "string",
|
|
"description": "%microsoft-sovereign-cloud.customEnvironment.portalUrl.description%"
|
|
},
|
|
"managementEndpointUrl": {
|
|
"type": "string",
|
|
"description": "%microsoft-sovereign-cloud.customEnvironment.managementEndpointUrl.description%"
|
|
},
|
|
"resourceManagerEndpointUrl": {
|
|
"type": "string",
|
|
"description": "%microsoft-sovereign-cloud.customEnvironment.resourceManagerEndpointUrl.description%"
|
|
},
|
|
"activeDirectoryEndpointUrl": {
|
|
"type": "string",
|
|
"description": "%microsoft-sovereign-cloud.customEnvironment.activeDirectoryEndpointUrl.description%"
|
|
},
|
|
"activeDirectoryResourceId": {
|
|
"type": "string",
|
|
"description": "%microsoft-sovereign-cloud.customEnvironment.activeDirectoryResourceId.description%"
|
|
}
|
|
},
|
|
"required": [
|
|
"name",
|
|
"portalUrl",
|
|
"managementEndpointUrl",
|
|
"resourceManagerEndpointUrl",
|
|
"activeDirectoryEndpointUrl",
|
|
"activeDirectoryResourceId"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"title": "Microsoft",
|
|
"properties": {
|
|
"microsoft-authentication.implementation": {
|
|
"type": "string",
|
|
"default": "msal",
|
|
"enum": [
|
|
"msal",
|
|
"msal-no-broker"
|
|
],
|
|
"enumDescriptions": [
|
|
"%microsoft-authentication.implementation.enumDescriptions.msal%",
|
|
"%microsoft-authentication.implementation.enumDescriptions.msal-no-broker%"
|
|
],
|
|
"markdownDescription": "%microsoft-authentication.implementation.description%",
|
|
"tags": [
|
|
"onExP"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
|
"main": "./out/extension.js",
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "gulp compile-extension:microsoft-authentication",
|
|
"watch": "gulp watch-extension:microsoft-authentication"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.x",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@types/randombytes": "^2.0.0",
|
|
"@types/sha.js": "^2.4.0",
|
|
"@types/uuid": "8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@azure/ms-rest-azure-env": "^2.0.0",
|
|
"@azure/msal-node": "^5.1.5",
|
|
"@azure/msal-node-extensions": "^5.1.5",
|
|
"@vscode/extension-telemetry": "^0.9.8",
|
|
"keytar": "file:./packageMocks/keytar",
|
|
"vscode-tas-client": "^0.1.84"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|