mirror of
https://github.com/microsoft/vscode.git
synced 2026-06-29 02:45:58 +01:00
8748be1f1a
* 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
177 lines
4.6 KiB
JSON
177 lines
4.6 KiB
JSON
{
|
|
"name": "ipynb",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"publisher": "vscode",
|
|
"version": "10.0.0",
|
|
"license": "MIT",
|
|
"icon": "media/icon.png",
|
|
"engines": {
|
|
"vscode": "^1.57.0"
|
|
},
|
|
"enabledApiProposals": [
|
|
"diffContentOptions"
|
|
],
|
|
"activationEvents": [
|
|
"onNotebook:jupyter-notebook",
|
|
"onNotebookSerializer:interactive",
|
|
"onNotebookSerializer:repl"
|
|
],
|
|
"extensionKind": [
|
|
"workspace",
|
|
"ui"
|
|
],
|
|
"main": "./out/ipynbMain.node.js",
|
|
"browser": "./dist/browser/ipynbMain.browser.js",
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"contributes": {
|
|
"configuration": [
|
|
{
|
|
"properties": {
|
|
"ipynb.pasteImagesAsAttachments.enabled": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"markdownDescription": "%ipynb.pasteImagesAsAttachments.enabled%",
|
|
"default": true
|
|
},
|
|
"ipynb.experimental.serialization": {
|
|
"type": "boolean",
|
|
"scope": "resource",
|
|
"markdownDescription": "%ipynb.experimental.serialization%",
|
|
"default": true,
|
|
"tags": [
|
|
"experimental"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "ipynb.newUntitledIpynb",
|
|
"title": "%newUntitledIpynb.title%",
|
|
"shortTitle": "%newUntitledIpynb.shortTitle%",
|
|
"category": "Create"
|
|
},
|
|
{
|
|
"command": "ipynb.openIpynbInNotebookEditor",
|
|
"title": "%openIpynbInNotebookEditor.title%"
|
|
},
|
|
{
|
|
"command": "ipynb.cleanInvalidImageAttachment",
|
|
"title": "%cleanInvalidImageAttachment.title%"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.copy",
|
|
"title": "%copyCellOutput.title%",
|
|
"category": "Notebook"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.addToChat",
|
|
"title": "%addCellOutputToChat.title%",
|
|
"category": "Notebook",
|
|
"enablement": "chatIsEnabled"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.openInTextEditor",
|
|
"title": "%openCellOutput.title%",
|
|
"category": "Notebook"
|
|
}
|
|
],
|
|
"notebooks": [
|
|
{
|
|
"type": "jupyter-notebook",
|
|
"displayName": "Jupyter Notebook",
|
|
"selector": [
|
|
{
|
|
"filenamePattern": "*.ipynb"
|
|
}
|
|
],
|
|
"priority": "default"
|
|
}
|
|
],
|
|
"notebookRenderer": [
|
|
{
|
|
"id": "vscode.markdown-it-cell-attachment-renderer",
|
|
"displayName": "%markdownAttachmentRenderer.displayName%",
|
|
"entrypoint": {
|
|
"extends": "vscode.markdown-it-renderer",
|
|
"path": "./notebook-out/cellAttachmentRenderer.js"
|
|
}
|
|
}
|
|
],
|
|
"menus": {
|
|
"file/newFile": [
|
|
{
|
|
"command": "ipynb.newUntitledIpynb",
|
|
"group": "notebook"
|
|
}
|
|
],
|
|
"commandPalette": [
|
|
{
|
|
"command": "ipynb.newUntitledIpynb"
|
|
},
|
|
{
|
|
"command": "ipynb.openIpynbInNotebookEditor",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "ipynb.cleanInvalidImageAttachment",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.copy",
|
|
"when": "notebookCellHasOutputs"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.openInTextEditor",
|
|
"when": "false"
|
|
}
|
|
],
|
|
"webview/context": [
|
|
{
|
|
"command": "notebook.cellOutput.copy",
|
|
"when": "webviewId == 'notebook.output' && webviewSection == 'image'",
|
|
"group": "context@1"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.copy",
|
|
"when": "webviewId == 'notebook.output' && webviewSection == 'text'"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.addToChat",
|
|
"when": "webviewId == 'notebook.output' && (webviewSection == 'text' || webviewSection == 'image')",
|
|
"group": "context@2"
|
|
},
|
|
{
|
|
"command": "notebook.cellOutput.openInTextEditor",
|
|
"when": "webviewId == 'notebook.output' && webviewSection == 'text'"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "npx gulp compile-extension:ipynb && npm run build-notebook",
|
|
"watch": "npx gulp watch-extension:ipynb",
|
|
"build-notebook": "node ./esbuild.notebook.mts"
|
|
},
|
|
"dependencies": {
|
|
"@enonic/fnv-plus": "^1.3.0",
|
|
"detect-indent": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@jupyterlab/nbformat": "^3.2.9",
|
|
"@types/markdown-it": "12.2.3",
|
|
"@types/node": "24.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|