Date: Sun, 11 Jan 2026 12:13:58 +0000 From: Hiroki Tagato <tagattie@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: c3e0f8058058 - main - editors/vscode: Update to 1.108.0 Message-ID: <69639406.3b153.51afcdc@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by tagattie: URL: https://cgit.FreeBSD.org/ports/commit/?id=c3e0f8058058361f399b4dbddaae1341afb6189d commit c3e0f8058058361f399b4dbddaae1341afb6189d Author: Hiroki Tagato <tagattie@FreeBSD.org> AuthorDate: 2026-01-11 12:11:25 +0000 Commit: Hiroki Tagato <tagattie@FreeBSD.org> CommitDate: 2026-01-11 12:13:48 +0000 editors/vscode: Update to 1.108.0 While here, convert to use USES=electron and adjust Makefiles accordingly. Changelog: https://code.visualstudio.com/updates/v1_108 Reported by: GitHub (watch releases) --- editors/vscode/Makefile | 32 ++---- editors/vscode/Makefile.reh | 10 +- editors/vscode/Makefile.version | 4 +- editors/vscode/distinfo | 14 +-- editors/vscode/files/patch-package.json | 4 +- ...t_node_extensionSignatureVerificationService.ts | 6 +- editors/vscode/pkg-plist | 119 +++++++++------------ 7 files changed, 76 insertions(+), 113 deletions(-) diff --git a/editors/vscode/Makefile b/editors/vscode/Makefile index 67344d9650c1..e81451ddbd10 100644 --- a/editors/vscode/Makefile +++ b/editors/vscode/Makefile @@ -1,6 +1,5 @@ PORTNAME= vscode DISTVERSION= ${VSCODE_VERSION} -PORTREVISION= 2 CATEGORIES= editors MASTER_SITES= https://github.com/tagattie/FreeBSD-VSCode/releases/download/${DISTVERSION}/:node_modules DISTFILES= vscode-node-modules-${DISTVERSION}${EXTRACT_SUFX}:node_modules \ @@ -19,10 +18,8 @@ ONLY_FOR_ARCHS= amd64 EXTRACT_DEPENDS=jq:textproc/jq \ node${NODEJS_VERSION}>0:www/node${NODEJS_VERSION} BUILD_DEPENDS= zip:archivers/zip \ - electron${ELECTRON_VER_MAJOR}:devel/electron${ELECTRON_VER_MAJOR} \ jq:textproc/jq \ - rg:textproc/ripgrep \ - npm${NODEJS_SUFFIX}>0:www/npm${NODEJS_SUFFIX} + rg:textproc/ripgrep LIB_DEPENDS= libatk-bridge-2.0.so:accessibility/at-spi2-core \ libatspi.so:accessibility/at-spi2-core \ libasound.so:audio/alsa-lib \ @@ -58,12 +55,11 @@ LIB_DEPENDS= libatk-bridge-2.0.so:accessibility/at-spi2-core \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= xdg-open:devel/xdg-utils \ bash:shells/bash -TEST_DEPENDS= electron${ELECTRON_VER_MAJOR}:devel/electron${ELECTRON_VER_MAJOR} \ - bash:shells/bash +TEST_DEPENDS= bash:shells/bash -USES= desktop-file-utils display:test gl gmake gnome gssapi:mit \ - iconv:wchar_t jpeg localbase:ldflags nodejs:22,build pkgconfig \ - python:build shebangfix xorg +USES= desktop-file-utils display:test electron:39,build,test gl \ + gmake gnome gssapi:mit iconv:wchar_t jpeg localbase:ldflags \ + nodejs:22,build pkgconfig python:build shebangfix xorg USE_GITHUB= yes GH_ACCOUNT= microsoft @@ -74,6 +70,7 @@ USE_XORG= x11 xcb xcomposite xcursor xdamage xext xfixes xi xkbfile \ xrandr xrender xscrnsaver xtst USE_GL= gbm gl glesv2 USE_GNOME= atk cairo pango gdkpixbuf gtk30 libxml2 libxslt +USE_ELECTRON= npm:npm SHEBANG_REGEX= ./(extensions|node_modules|resources|scripts|src)/.*(\.(pl|py|sh)|makeBlacker|makeFF)$$ PATHFIX_FILES= src/vs/workbench/contrib/debug/node/terminals.ts @@ -83,27 +80,18 @@ TMPDIR= ${WRKDIR} BUNDLE_LIBS= yes MAKE_ENV+= BUILD_SOURCEVERSION=${SOURCE_COMMIT_HASH} -# Don't download electron binary distribution on electron node_modules installation -MAKE_ENV+= ELECTRON_SKIP_BINARY_DOWNLOAD=1 -# Don't download browser binaries on playwright node_modules installation -MAKE_ENV+= PLAYWRIGHT_BROWSERS_PATH=${WRKDIR}/pw-browsers \ - PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 # Don't create __pycache__ directory when executing node-gyp # This is a workaround to avoid filesystem violations during poudriere build MAKE_ENV+= PYTHONDONTWRITEBYTECODE=1 TEST_ENV= ${MAKE_ENV:C/TMPDIR=.*//} +UPSTREAM_ELECTRON_VER= ${ELECTRON_VER} + .include "Makefile.version" .include <bsd.port.pre.mk> NODEJS_DIR= ${.CURDIR:H:H}/www/node${NODEJS_VERSION} .include "${NODEJS_DIR}/Makefile.version" -ELECTRON_DIR= ${.CURDIR:H:H}/devel/electron39 -.include "${ELECTRON_DIR}/Makefile.version" - -ELECTRON_DOWNLOAD_URL= https://github.com/electron/electron/releases/download/v${ELECTRON_VER} -ELECTRON_DOWNLOAD_URL_HASH!= /sbin/sha256 -q -s ${ELECTRON_DOWNLOAD_URL} -ELECTRON_ARCH= ${ARCH:S/aarch64/arm64/:S/amd64/x64/:S/i386/ia32/} pre-everything:: @${ECHO_MSG} "" @@ -211,10 +199,6 @@ pre-build: @${CP} ${LOCALBASE}/bin/rg ${WRKSRC}/remote/node_modules/@vscode/ripgrep/bin do-build: -# setup download cache for gulp-atom-electron - @${MKDIR} ${WRKDIR}/.cache/electron/${ELECTRON_DOWNLOAD_URL_HASH} - @cd ${LOCALBASE}/share/electron${ELECTRON_VER_MAJOR} && \ - zip -q -r ${WRKDIR}/.cache/electron/${ELECTRON_DOWNLOAD_URL_HASH}/electron-v${ELECTRON_VER}-linux-${ELECTRON_ARCH}.zip . # remove backup files so that they are not included in the package @${FIND} ${WRKSRC} -type f \( -name '*.bak' -o -name '*.orig' -o -name '*~' \) -delete # build and package vscode diff --git a/editors/vscode/Makefile.reh b/editors/vscode/Makefile.reh index 247bb4469c56..2ba8b922346e 100644 --- a/editors/vscode/Makefile.reh +++ b/editors/vscode/Makefile.reh @@ -18,8 +18,7 @@ ONLY_FOR_ARCHS= aarch64 amd64 EXTRACT_DEPENDS=jq:textproc/jq \ node${NODEJS_VERSION}>0:www/node${NODEJS_VERSION} BUILD_DEPENDS= jq:textproc/jq \ - rg:textproc/ripgrep \ - npm${NODEJS_SUFFIX}>0:www/npm${NODEJS_SUFFIX} + rg:textproc/ripgrep LIB_DEPENDS= libbrotlidec.so:archivers/brotli \ libcares.so:dns/c-ares \ libicui18n.so:devel/icu \ @@ -32,14 +31,15 @@ LIB_DEPENDS= libbrotlidec.so:archivers/brotli \ libzstd.so:archivers/zstd \ libsqlite3.so:databases/sqlite3 \ libsecret-1.so:security/libsecret -RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss -USES= gssapi:mit localbase:ldflags nodejs:22,build pkgconfig \ - python:build shebangfix +USES= electron:env gssapi:mit localbase:ldflags nodejs:22,build \ + pkgconfig python:build shebangfix USE_GITHUB= yes GH_ACCOUNT= microsoft +USE_ELECTRON= npm:npm + SHEBANG_REGEX= ./(extensions|node_modules|resources|scripts|src)/.*(\.(pl|py|sh)|makeBlacker|makeFF)$$ PATHFIX_FILES= src/vs/workbench/contrib/debug/node/terminals.ts diff --git a/editors/vscode/Makefile.version b/editors/vscode/Makefile.version index 121e47fe5551..0d70873cdf58 100644 --- a/editors/vscode/Makefile.version +++ b/editors/vscode/Makefile.version @@ -1,2 +1,2 @@ -VSCODE_VERSION= 1.107.1 -SOURCE_COMMIT_HASH= 994fd12f8d3a5aa16f17d42c041e5809167e845a +VSCODE_VERSION= 1.108.0 +SOURCE_COMMIT_HASH= 94e8ae2b28cb5cc932b86e1070569c4463565c37 diff --git a/editors/vscode/distinfo b/editors/vscode/distinfo index aabacb98c484..d69c4a74f6f3 100644 --- a/editors/vscode/distinfo +++ b/editors/vscode/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1766179261 -SHA256 (vscode/vscode-node-modules-1.107.1.tar.gz) = e9e393fdfa331362ce63664ffbd278a6951a8d0d5691bf7e2206c21599841e54 -SIZE (vscode/vscode-node-modules-1.107.1.tar.gz) = 467213984 -SHA256 (vscode/vscode-marketplace-exts-1.107.1.tar.gz) = 1c969e8c5d2ef824564888cc425387d585dc0a2926071d4d1d0a5bf425fbdff5 -SIZE (vscode/vscode-marketplace-exts-1.107.1.tar.gz) = 1702815 -SHA256 (vscode/microsoft-vscode-1.107.1_GH0.tar.gz) = 695707e9a46ce79fc03faece47db443ff940df0e59c5094562a0b9e0610caea2 -SIZE (vscode/microsoft-vscode-1.107.1_GH0.tar.gz) = 24211873 +TIMESTAMP = 1768111772 +SHA256 (vscode/vscode-node-modules-1.108.0.tar.gz) = 4c4128369a3596e204dc70c773965e5487e111f172dbc16b23d408245721be5b +SIZE (vscode/vscode-node-modules-1.108.0.tar.gz) = 492416000 +SHA256 (vscode/vscode-marketplace-exts-1.108.0.tar.gz) = 71957acb750563a34eafe4da306ff6b994244a37916908fc30b0c8c0449ee9fe +SIZE (vscode/vscode-marketplace-exts-1.108.0.tar.gz) = 1710432 +SHA256 (vscode/microsoft-vscode-1.108.0_GH0.tar.gz) = 62c649bf6bf6e99ca0face2c32b3fc3cf4e1abb11055677dd75d63c55c993cf7 +SIZE (vscode/microsoft-vscode-1.108.0_GH0.tar.gz) = 24264337 diff --git a/editors/vscode/files/patch-package.json b/editors/vscode/files/patch-package.json index 05272d0a43a6..934790c64605 100644 --- a/editors/vscode/files/patch-package.json +++ b/editors/vscode/files/patch-package.json @@ -2,13 +2,13 @@ https://github.com/eclipse/openvsx/issues/543 https://github.com/termux/termux-packages/issues/24739 https://github.com/termux/termux-packages/pull/24757 ---- package.json.orig 2025-12-10 18:02:22 UTC +--- package.json.orig 2026-01-08 12:59:30 UTC +++ package.json @@ -108,6 +108,7 @@ "native-is-elevated": "0.8.0", "native-keymap": "^3.3.5", "native-watchdog": "^1.4.1", + "node-ovsx-sign": "^1.2.0", - "node-pty": "1.1.0-beta35", + "node-pty": "^1.1.0-beta43", "open": "^10.1.2", "tas-client": "0.3.1", diff --git a/editors/vscode/files/patch-src_vs_platform_extensionManagement_node_extensionSignatureVerificationService.ts b/editors/vscode/files/patch-src_vs_platform_extensionManagement_node_extensionSignatureVerificationService.ts index b10a1adb8f06..cf91d03e696d 100644 --- a/editors/vscode/files/patch-src_vs_platform_extensionManagement_node_extensionSignatureVerificationService.ts +++ b/editors/vscode/files/patch-src_vs_platform_extensionManagement_node_extensionSignatureVerificationService.ts @@ -2,12 +2,12 @@ https://github.com/eclipse/openvsx/issues/543 https://github.com/termux/termux-packages/issues/24739 https://github.com/termux/termux-packages/pull/24757 ---- src/vs/platform/extensionManagement/node/extensionSignatureVerificationService.ts.orig 2025-08-20 15:13:53 UTC +--- src/vs/platform/extensionManagement/node/extensionSignatureVerificationService.ts.orig 2026-01-08 12:59:30 UTC +++ src/vs/platform/extensionManagement/node/extensionSignatureVerificationService.ts -@@ -35,7 +35,7 @@ declare module vsceSign { +@@ -35,7 +35,7 @@ declare namespace vsceSign { } - declare module vsceSign { + declare namespace vsceSign { - export function verify(vsixFilePath: string, signatureArchiveFilePath: string, verbose: boolean): Promise<ExtensionSignatureVerificationResult>; + export function verify(vsixFilePath: string, signatureArchiveFilePath: string, verbose: boolean): Promise<boolean>; } diff --git a/editors/vscode/pkg-plist b/editors/vscode/pkg-plist index 7a8bb09561b6..4a83a6fd658b 100644 --- a/editors/vscode/pkg-plist +++ b/editors/vscode/pkg-plist @@ -4380,13 +4380,6 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/@microsoft/dynamicproto-js/package.json %%DATADIR%%/resources/app/node_modules/@microsoft/dynamicproto-js/tools/rollup/esm/removedynamic.js %%DATADIR%%/resources/app/node_modules/@microsoft/dynamicproto-js/tools/rollup/node/removedynamic.js -%%DATADIR%%/resources/app/node_modules/@parcel/watcher/LICENSE -%%DATADIR%%/resources/app/node_modules/@parcel/watcher/build/Release/watcher.node -%%DATADIR%%/resources/app/node_modules/@parcel/watcher/index.js -%%DATADIR%%/resources/app/node_modules/@parcel/watcher/index.js.flow -%%DATADIR%%/resources/app/node_modules/@parcel/watcher/package.json -%%DATADIR%%/resources/app/node_modules/@parcel/watcher/scripts/build-from-source.js -%%DATADIR%%/resources/app/node_modules/@parcel/watcher/wrapper.js %%DATADIR%%/resources/app/node_modules/@pkgjs/parseargs/LICENSE %%DATADIR%%/resources/app/node_modules/@pkgjs/parseargs/index.js %%DATADIR%%/resources/app/node_modules/@pkgjs/parseargs/internal/errors.js @@ -4975,6 +4968,13 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/@vscode/vscode-languagedetection/model/group1-shard1of1.bin %%DATADIR%%/resources/app/node_modules/@vscode/vscode-languagedetection/model/model.json %%DATADIR%%/resources/app/node_modules/@vscode/vscode-languagedetection/package.json +%%DATADIR%%/resources/app/node_modules/@vscode/watcher/LICENSE +%%DATADIR%%/resources/app/node_modules/@vscode/watcher/build/Release/watcher.node +%%DATADIR%%/resources/app/node_modules/@vscode/watcher/index.js +%%DATADIR%%/resources/app/node_modules/@vscode/watcher/index.js.flow +%%DATADIR%%/resources/app/node_modules/@vscode/watcher/package.json +%%DATADIR%%/resources/app/node_modules/@vscode/watcher/scripts/build-from-source.js +%%DATADIR%%/resources/app/node_modules/@vscode/watcher/wrapper.js %%DATADIR%%/resources/app/node_modules/@vscode/windows-mutex/LICENSE %%DATADIR%%/resources/app/node_modules/@xterm/addon-clipboard/LICENSE %%DATADIR%%/resources/app/node_modules/@xterm/addon-clipboard/lib/addon-clipboard.js @@ -4983,24 +4983,19 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/@xterm/addon-clipboard/package.json %%DATADIR%%/resources/app/node_modules/@xterm/addon-image/LICENSE %%DATADIR%%/resources/app/node_modules/@xterm/addon-image/lib/addon-image.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/lib/addon-image.js.LICENSE.txt %%DATADIR%%/resources/app/node_modules/@xterm/addon-image/lib/addon-image.mjs %%DATADIR%%/resources/app/node_modules/@xterm/addon-image/lib/addon-image.mjs.map -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/IIPHandler.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/IIPHeaderParser.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/IIPHeaderParser.test.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/IIPMetrics.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/IIPMetrics.test.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/ImageAddon.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/ImageRenderer.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/ImageStorage.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/SixelHandler.js -%%DATADIR%%/resources/app/node_modules/@xterm/addon-image/out/Types.js %%DATADIR%%/resources/app/node_modules/@xterm/addon-image/package.json %%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/LICENSE -%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/lib/addon-ligatures.js %%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/lib/addon-ligatures.mjs %%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/lib/addon-ligatures.mjs.map +%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/node_modules/lru-cache/LICENSE +%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/node_modules/lru-cache/index.js +%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/node_modules/lru-cache/package.json +%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/node_modules/yallist/LICENSE +%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/node_modules/yallist/iterator.js +%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/node_modules/yallist/package.json +%%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/node_modules/yallist/yallist.js %%DATADIR%%/resources/app/node_modules/@xterm/addon-ligatures/package.json %%DATADIR%%/resources/app/node_modules/@xterm/addon-progress/LICENSE %%DATADIR%%/resources/app/node_modules/@xterm/addon-progress/lib/addon-progress.js @@ -6269,46 +6264,6 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/fill-range/LICENSE %%DATADIR%%/resources/app/node_modules/fill-range/index.js %%DATADIR%%/resources/app/node_modules/fill-range/package.json -%%DATADIR%%/resources/app/node_modules/font-finder/LICENSE.md -%%DATADIR%%/resources/app/node_modules/font-finder/dist/extract.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/index.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/parse.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/tables/head.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/tables/ltag.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/tables/name.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/tables/os2.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/tables/post.js -%%DATADIR%%/resources/app/node_modules/font-finder/dist/tables/utility.js -%%DATADIR%%/resources/app/node_modules/font-finder/package.json -%%DATADIR%%/resources/app/node_modules/font-finder/tsconfig.json -%%DATADIR%%/resources/app/node_modules/font-finder/tslint.json -%%DATADIR%%/resources/app/node_modules/font-ligatures/LICENSE.md -%%DATADIR%%/resources/app/node_modules/font-ligatures/coverage.lcov -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/flatten.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/index.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/merge.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/mergeRange.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/6-1.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/6-2.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/6-3.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/8-1.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/classDef.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/coverage.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/helper.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/processors/substitution.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/tables.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/types.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/dist/walk.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/node_modules/lru-cache/LICENSE -%%DATADIR%%/resources/app/node_modules/font-ligatures/node_modules/lru-cache/index.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/node_modules/lru-cache/package.json -%%DATADIR%%/resources/app/node_modules/font-ligatures/node_modules/yallist/LICENSE -%%DATADIR%%/resources/app/node_modules/font-ligatures/node_modules/yallist/iterator.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/node_modules/yallist/package.json -%%DATADIR%%/resources/app/node_modules/font-ligatures/node_modules/yallist/yallist.js -%%DATADIR%%/resources/app/node_modules/font-ligatures/package.json -%%DATADIR%%/resources/app/node_modules/font-ligatures/tsconfig.json -%%DATADIR%%/resources/app/node_modules/font-ligatures/tslint.json %%DATADIR%%/resources/app/node_modules/foreground-child/LICENSE %%DATADIR%%/resources/app/node_modules/foreground-child/dist/cjs/all-signals.d.ts.map %%DATADIR%%/resources/app/node_modules/foreground-child/dist/cjs/all-signals.js @@ -6413,12 +6368,6 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/get-proto/index.js %%DATADIR%%/resources/app/node_modules/get-proto/package.json %%DATADIR%%/resources/app/node_modules/get-proto/tsconfig.json -%%DATADIR%%/resources/app/node_modules/get-system-fonts/LICENSE.md -%%DATADIR%%/resources/app/node_modules/get-system-fonts/dist/index.js -%%DATADIR%%/resources/app/node_modules/get-system-fonts/dist/recursiveWalk.js -%%DATADIR%%/resources/app/node_modules/get-system-fonts/package.json -%%DATADIR%%/resources/app/node_modules/get-system-fonts/tsconfig.json -%%DATADIR%%/resources/app/node_modules/get-system-fonts/tslint.json %%DATADIR%%/resources/app/node_modules/github-from-package/LICENSE %%DATADIR%%/resources/app/node_modules/github-from-package/index.js %%DATADIR%%/resources/app/node_modules/github-from-package/package.json @@ -8212,6 +8161,34 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/node-pty/lib/worker/conoutSocketWorker.js %%DATADIR%%/resources/app/node_modules/node-pty/node-addon-api/node_addon_api.Makefile %%DATADIR%%/resources/app/node_modules/node-pty/package.json +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/darwin-arm64/pty.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/darwin-arm64/spawn-helper +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/darwin-x64/pty.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/darwin-x64/spawn-helper +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/conpty.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/conpty.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/conpty/OpenConsole.exe +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/conpty/conpty.dll +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/conpty_console_list.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/conpty_console_list.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/pty.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/pty.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/winpty-agent.exe +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/winpty-agent.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/winpty.dll +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-arm64/winpty.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/conpty.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/conpty.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/conpty/OpenConsole.exe +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/conpty/conpty.dll +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/conpty_console_list.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/conpty_console_list.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/pty.node +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/pty.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/winpty-agent.exe +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/winpty-agent.pdb +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/winpty.dll +%%DATADIR%%/resources/app/node_modules/node-pty/prebuilds/win32-x64/winpty.pdb %%DATADIR%%/resources/app/node_modules/normalize-path/LICENSE %%DATADIR%%/resources/app/node_modules/normalize-path/index.js %%DATADIR%%/resources/app/node_modules/normalize-path/package.json @@ -8429,17 +8406,13 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/process/index.js %%DATADIR%%/resources/app/node_modules/process/package.json %%DATADIR%%/resources/app/node_modules/process/test.js -%%DATADIR%%/resources/app/node_modules/promise-stream-reader/LICENSE.md -%%DATADIR%%/resources/app/node_modules/promise-stream-reader/dist/index.js -%%DATADIR%%/resources/app/node_modules/promise-stream-reader/package.json -%%DATADIR%%/resources/app/node_modules/promise-stream-reader/tsconfig.json -%%DATADIR%%/resources/app/node_modules/promise-stream-reader/tslint.json %%DATADIR%%/resources/app/node_modules/proxy-from-env/LICENSE %%DATADIR%%/resources/app/node_modules/proxy-from-env/index.js %%DATADIR%%/resources/app/node_modules/proxy-from-env/package.json %%DATADIR%%/resources/app/node_modules/proxy-from-env/test.js %%DATADIR%%/resources/app/node_modules/qs/LICENSE.md %%DATADIR%%/resources/app/node_modules/qs/dist/qs.js +%%DATADIR%%/resources/app/node_modules/qs/eslint.config.mjs %%DATADIR%%/resources/app/node_modules/qs/lib/formats.js %%DATADIR%%/resources/app/node_modules/qs/lib/index.js %%DATADIR%%/resources/app/node_modules/qs/lib/parse.js @@ -9286,16 +9259,20 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/undici/lib/dispatcher/pool.js %%DATADIR%%/resources/app/node_modules/undici/lib/dispatcher/proxy-agent.js %%DATADIR%%/resources/app/node_modules/undici/lib/dispatcher/retry-agent.js +%%DATADIR%%/resources/app/node_modules/undici/lib/dispatcher/round-robin-pool.js +%%DATADIR%%/resources/app/node_modules/undici/lib/encoding/index.js %%DATADIR%%/resources/app/node_modules/undici/lib/global.js %%DATADIR%%/resources/app/node_modules/undici/lib/handler/cache-handler.js %%DATADIR%%/resources/app/node_modules/undici/lib/handler/cache-revalidation-handler.js %%DATADIR%%/resources/app/node_modules/undici/lib/handler/decorator-handler.js +%%DATADIR%%/resources/app/node_modules/undici/lib/handler/deduplication-handler.js %%DATADIR%%/resources/app/node_modules/undici/lib/handler/redirect-handler.js %%DATADIR%%/resources/app/node_modules/undici/lib/handler/retry-handler.js %%DATADIR%%/resources/app/node_modules/undici/lib/handler/unwrap-handler.js %%DATADIR%%/resources/app/node_modules/undici/lib/handler/wrap-handler.js %%DATADIR%%/resources/app/node_modules/undici/lib/interceptor/cache.js %%DATADIR%%/resources/app/node_modules/undici/lib/interceptor/decompress.js +%%DATADIR%%/resources/app/node_modules/undici/lib/interceptor/deduplicate.js %%DATADIR%%/resources/app/node_modules/undici/lib/interceptor/dns.js %%DATADIR%%/resources/app/node_modules/undici/lib/interceptor/dump.js %%DATADIR%%/resources/app/node_modules/undici/lib/interceptor/redirect.js @@ -9320,6 +9297,7 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/undici/lib/util/cache.js %%DATADIR%%/resources/app/node_modules/undici/lib/util/date.js %%DATADIR%%/resources/app/node_modules/undici/lib/util/promise.js +%%DATADIR%%/resources/app/node_modules/undici/lib/util/runtime-features.js %%DATADIR%%/resources/app/node_modules/undici/lib/util/stats.js %%DATADIR%%/resources/app/node_modules/undici/lib/util/timers.js %%DATADIR%%/resources/app/node_modules/undici/lib/web/cache/cache.js @@ -9344,6 +9322,7 @@ share/applications/code-oss.desktop %%DATADIR%%/resources/app/node_modules/undici/lib/web/fetch/request.js %%DATADIR%%/resources/app/node_modules/undici/lib/web/fetch/response.js %%DATADIR%%/resources/app/node_modules/undici/lib/web/fetch/util.js +%%DATADIR%%/resources/app/node_modules/undici/lib/web/infra/index.js %%DATADIR%%/resources/app/node_modules/undici/lib/web/subresource-integrity/Readme.md %%DATADIR%%/resources/app/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js %%DATADIR%%/resources/app/node_modules/undici/lib/web/webidl/index.jshome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69639406.3b153.51afcdc>
