Skip to content

Commit 93d3ee8

Browse files
authored
Update Code to 1.122.0 (#7822)
1 parent 030bdcf commit 93d3ee8

7 files changed

Lines changed: 27 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,22 @@ Code v99.99.999
2222

2323
## Unreleased
2424

25+
Code v1.122.0
26+
27+
### Changed
28+
29+
- Update to Code 1.122.0
30+
31+
### Fixed
32+
33+
- `--app-name` will now affect window titles within the editor (it is now used
34+
as the value for `${appName}` in the title template) as well as some other
35+
places like the help > about dialog.
36+
37+
### Added
38+
39+
- App name can now be set with the `CODE_SERVER_APP_NAME` environment variable.
40+
2541
## [4.121.0](https://github.com/coder/code-server/releases/tag/v4.121.0) - 2026-05-20
2642

2743
Code v1.121.0

lib/vscode

Submodule vscode updated 1023 files

patches/app-name.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Index: code-server/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
2020

2121
/* ----- server setup ----- */
2222

23-
@@ -120,6 +121,7 @@ export interface ServerParsedArgs {
23+
@@ -124,6 +125,7 @@ export interface ServerParsedArgs {
2424
'disable-getting-started-override'?: boolean,
2525
'locale'?: string
2626
'link-protection-trusted-domains'?: string[],

patches/copilot.diff

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Index: code-server/lib/vscode/build/gulpfile.extensions.ts
22
===================================================================
33
--- code-server.orig/lib/vscode/build/gulpfile.extensions.ts
44
+++ code-server/lib/vscode/build/gulpfile.extensions.ts
5-
@@ -294,6 +294,29 @@ export const compileCopilotExtensionBuil
6-
gulp.task(compileCopilotExtensionBuildTask);
5+
@@ -291,6 +291,29 @@ export const compileCopilotExtensionBuil
6+
task.task(compileCopilotExtensionBuildTask);
77

88
/**
99
+ * Compiles the built-in copilot extension with proper `.vscodeignore` filtering
@@ -26,7 +26,7 @@ Index: code-server/lib/vscode/build/gulpfile.extensions.ts
2626
+ return Promise.resolve();
2727
+ })
2828
+));
29-
+gulp.task(compileCopilotExtensionFullBuildTask);
29+
+task.task(compileCopilotExtensionFullBuildTask);
3030
+
3131
+/**
3232
* Compiles the extensions for the build.
@@ -36,15 +36,15 @@ Index: code-server/lib/vscode/build/lib/extensions.ts
3636
===================================================================
3737
--- code-server.orig/lib/vscode/build/lib/extensions.ts
3838
+++ code-server/lib/vscode/build/lib/extensions.ts
39-
@@ -24,6 +24,7 @@ import { getProductionDependencies } fro
39+
@@ -21,6 +21,7 @@ import { getProductionDependencies } fro
4040
import { type IExtensionDefinition, getExtensionStream } from './builtInExtensions.ts';
4141
import { fetchUrls, fetchGithub } from './fetch.ts';
4242
import { createTsgoStream, spawnTsgo } from './tsgo.ts';
4343
+import { prepareBuiltInCopilotRipgrepShim } from './copilot.ts';
44-
import vzip from 'gulp-vinyl-zip';
44+
import watcher from './watch/index.ts';
4545

4646
import { createRequire } from 'module';
47-
@@ -492,6 +493,116 @@ export function packageCopilotExtensionS
47+
@@ -483,6 +484,116 @@ export function packageCopilotExtensionS
4848
).pipe(util2.setExecutableBit(['**/*.sh']));
4949
}
5050

patches/display-language.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Index: code-server/lib/vscode/src/vs/server/node/serverServices.ts
1818
import { ProtocolConstants } from '../../base/parts/ipc/common/ipc.net.js';
1919
import { IConfigurationService } from '../../platform/configuration/common/configuration.js';
2020
import { ConfigurationService } from '../../platform/configuration/common/configurationService.js';
21-
@@ -358,6 +358,9 @@ export async function setupServerService
21+
@@ -359,6 +359,9 @@ export async function setupServerService
2222

2323
socketServer.registerChannel('mcpManagement', new McpManagementChannel(mcpManagementService, (ctx: RemoteAgentConnectionContext) => getUriTransformer(ctx.remoteAuthority)));
2424

patches/sourcemaps.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Index: code-server/lib/vscode/build/gulpfile.reh.ts
66
===================================================================
77
--- code-server.orig/lib/vscode/build/gulpfile.reh.ts
88
+++ code-server/lib/vscode/build/gulpfile.reh.ts
9-
@@ -261,10 +261,15 @@ function packageTask(type: string, platf
9+
@@ -255,10 +255,15 @@ function packageTask(type: string, platf
1010
const destination = path.join(BUILD_ROOT, destinationFolderName);
1111

1212
return () => {

patches/webview.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
4141
===================================================================
4242
--- code-server.orig/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
4343
+++ code-server/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
44-
@@ -223,7 +223,7 @@ export class BrowserWorkbenchEnvironment
44+
@@ -226,7 +226,7 @@ export class BrowserWorkbenchEnvironment
4545

4646
@memoize
4747
get webviewExternalEndpoint(): string {

0 commit comments

Comments
 (0)