Skip to content

Update Code to 1.86.1 #6668

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/vscode
Submodule vscode updated 33 files
+1 −1 build/.cachesalt
+23 −0 build/azure-pipelines/cli/cli-compile-and-publish.yml
+0 −5 build/azure-pipelines/linux/install.sh
+15 −43 build/azure-pipelines/linux/product-build-linux.yml
+44 −0 build/azure-pipelines/linux/verify-glibc-requirements.sh
+6 −3 build/checksums/vscode-sysroot.txt
+5 −4 build/gulpfile.reh.js
+6 −4 build/linux/debian/install-sysroot.js
+6 −4 build/linux/debian/install-sysroot.ts
+0 −9 build/linux/rpm/dep-lists.js
+0 −9 build/linux/rpm/dep-lists.ts
+19 −4 build/npm/postinstall.js
+2 −2 cli/src/util/prereqs.rs
+1 −4 extensions/theme-tomorrow-night-blue/themes/tomorrow-night-blue-color-theme.json
+2 −2 package.json
+1 −1 remote/.yarnrc
+1 −1 resources/server/bin/helpers/check-requirements-linux.sh
+13 −14 src/main.js
+1 −0 src/vs/platform/remote/common/remoteAgentEnvironment.ts
+11 −1 src/vs/server/node/remoteAgentEnvironmentImpl.ts
+7 −5 src/vs/workbench/browser/parts/banner/bannerPart.ts
+4 −4 src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.ts
+8 −19 src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts
+4 −0 src/vs/workbench/contrib/inlineChat/browser/inlineChat.contribution.ts
+3 −4 src/vs/workbench/contrib/inlineChat/browser/inlineChatActions2.ts
+0 −5 src/vs/workbench/contrib/inlineChat/electron-sandbox/inlineChat.contribution.ts
+2 −0 src/vs/workbench/contrib/remote/browser/remote.contribution.ts
+183 −0 src/vs/workbench/contrib/remote/browser/remoteConnectionHealth.ts
+1 −93 src/vs/workbench/contrib/remote/common/remote.contribution.ts
+4 −4 src/vs/workbench/contrib/telemetry/browser/telemetry.contribution.ts
+1 −3 src/vs/workbench/electron-sandbox/actions/windowActions.ts
+1 −0 src/vs/workbench/services/banner/browser/bannerService.ts
+3 −1 src/vs/workbench/services/remote/common/remoteAgentEnvironmentChannel.ts
6 changes: 3 additions & 3 deletions patches/sourcemaps.diff
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Index: code-server/lib/vscode/build/gulpfile.reh.js
===================================================================
--- code-server.orig/lib/vscode/build/gulpfile.reh.js
+++ code-server/lib/vscode/build/gulpfile.reh.js
@@ -235,8 +235,7 @@ function packageTask(type, platform, arc
@@ -236,8 +236,7 @@ function packageTask(type, platform, arc

const src = gulp.src(sourceFolderName + '/**', { base: '.' })
.pipe(rename(function (path) { path.dirname = path.dirname.replace(new RegExp('^' + sourceFolderName), 'out'); }))
Expand All @@ -20,7 +20,7 @@ Index: code-server/lib/vscode/build/gulpfile.reh.js

const workspaceExtensionPoints = ['debuggers', 'jsonValidation'];
const isUIExtension = (manifest) => {
@@ -275,9 +274,9 @@ function packageTask(type, platform, arc
@@ -276,9 +275,9 @@ function packageTask(type, platform, arc
.map(name => `.build/extensions/${name}/**`);

const extensions = gulp.src(extensionPaths, { base: '.build', dot: true });
Expand All @@ -32,7 +32,7 @@ Index: code-server/lib/vscode/build/gulpfile.reh.js

let version = packageJson.version;
const quality = product.quality;
@@ -432,7 +431,7 @@ function tweakProductForServerWeb(produc
@@ -433,7 +432,7 @@ function tweakProductForServerWeb(produc
const minifyTask = task.define(`minify-vscode-${type}`, task.series(
optimizeTask,
util.rimraf(`out-vscode-${type}-min`),
Expand Down