Skip to content

Commit b11dabd

Browse files
authored
Update Code to 1.137.0 (#8005)
1 parent 7f25500 commit b11dabd

8 files changed

Lines changed: 22 additions & 16 deletions

File tree

CHANGELOG.md

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

2323
## Unreleased
2424

25+
Code v1.137.0
26+
27+
### Changed
28+
29+
- Update to Code 1.137.0
30+
2531
## [4.136.2](https://github.com/coder/code-server/releases/tag/v4.136.2) - 2026-09-08
2632

2733
Code v1.136.1

lib/vscode

Submodule vscode updated 2158 files

patches/clipboard.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Index: code-server/lib/vscode/src/vs/platform/environment/common/argv.ts
7878
===================================================================
7979
--- code-server.orig/lib/vscode/src/vs/platform/environment/common/argv.ts
8080
+++ code-server/lib/vscode/src/vs/platform/environment/common/argv.ts
81-
@@ -147,6 +147,7 @@ export interface NativeParsedArgs {
81+
@@ -148,6 +148,7 @@ export interface NativeParsedArgs {
8282
'disable-chromium-sandbox'?: boolean;
8383
sandbox?: boolean;
8484
'enable-coi'?: boolean;
@@ -90,7 +90,7 @@ Index: code-server/lib/vscode/src/vs/platform/environment/node/argv.ts
9090
===================================================================
9191
--- code-server.orig/lib/vscode/src/vs/platform/environment/node/argv.ts
9292
+++ code-server/lib/vscode/src/vs/platform/environment/node/argv.ts
93-
@@ -115,6 +115,7 @@ export const OPTIONS: OptionDescriptions
93+
@@ -116,6 +116,7 @@ export const OPTIONS: OptionDescriptions
9494
'user-data-dir': { type: 'string', cat: 'o', args: 'dir', description: localize('userDataDir', "Specifies the directory that user data is kept in. Can be used to open multiple distinct instances of Code.") },
9595
'profile': { type: 'string', 'cat': 'o', args: 'profileName', description: localize('profileName', "Opens the provided folder or workspace with the given profile and associates the profile with the workspace. If the profile does not exist, a new empty one is created.") },
9696
'help': { type: 'boolean', cat: 'o', alias: 'h', description: localize('help', "Print usage.") },

patches/external-file-actions.diff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
4848
===================================================================
4949
--- code-server.orig/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
5050
+++ code-server/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
51-
@@ -34,6 +34,16 @@ export interface IBrowserWorkbenchEnviro
52-
readonly options?: IWorkbenchConstructionOptions;
51+
@@ -39,6 +39,16 @@ export interface IBrowserWorkbenchEnviro
52+
readonly sessionTitle?: string;
5353

5454
/**
5555
+ * Enable downloading files via menu actions.
@@ -65,7 +65,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
6565
* Gets whether a resolver extension is expected for the environment.
6666
*/
6767
readonly expectsResolverExtension: boolean;
68-
@@ -111,6 +121,20 @@ export class BrowserWorkbenchEnvironment
68+
@@ -116,6 +126,20 @@ export class BrowserWorkbenchEnvironment
6969
return this.options.userDataPath;
7070
}
7171

patches/getting-started.diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
151151
===================================================================
152152
--- code-server.orig/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
153153
+++ code-server/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
154-
@@ -44,6 +44,11 @@ export interface IBrowserWorkbenchEnviro
154+
@@ -49,6 +49,11 @@ export interface IBrowserWorkbenchEnviro
155155
readonly isEnabledFileUploads?: boolean;
156156

157157
/**
@@ -163,7 +163,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
163163
* Gets whether a resolver extension is expected for the environment.
164164
*/
165165
readonly expectsResolverExtension: boolean;
166-
@@ -135,6 +140,13 @@ export class BrowserWorkbenchEnvironment
166+
@@ -140,6 +145,13 @@ export class BrowserWorkbenchEnvironment
167167
return this.options.isEnabledFileUploads;
168168
}
169169

patches/local-storage.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
4646
===================================================================
4747
--- code-server.orig/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
4848
+++ code-server/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
49-
@@ -102,7 +102,14 @@ export class BrowserWorkbenchEnvironment
49+
@@ -107,7 +107,14 @@ export class BrowserWorkbenchEnvironment
5050
get logFile(): URI { return joinPath(this.windowLogsPath, 'window.log'); }
5151

5252
@memoize

patches/update-check.diff

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ Index: code-server/lib/vscode/src/vs/base/common/product.ts
101101

102102
readonly version: string;
103103
readonly date?: string;
104-
@@ -151,6 +152,7 @@ export interface IProductConfiguration {
105-
readonly resourceUrlTemplate: string;
106-
readonly nlsBaseUrl: string;
107-
readonly accessSKUs?: string[];
108-
+ readonly authorizationHeaderToken?: string;
104+
@@ -145,6 +146,7 @@ export interface IProductConfiguration {
109105
};
110106

111-
readonly agentSdks?: { readonly [packageId: string]: IAgentSdkProductConfig };
107+
readonly extensionsGallery?: {
108+
+ readonly authorizationHeaderToken?: string;
109+
readonly serviceUrl: string;
110+
readonly controlUrl: string;
111+
readonly extensionUrlTemplate: string;
112112
Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts
113113
===================================================================
114114
--- code-server.orig/lib/vscode/src/vs/server/node/webClientServer.ts

patches/webview.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Index: code-server/lib/vscode/src/vs/workbench/services/environment/browser/envi
2828
===================================================================
2929
--- code-server.orig/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
3030
+++ code-server/lib/vscode/src/vs/workbench/services/environment/browser/environmentService.ts
31-
@@ -234,7 +234,7 @@ export class BrowserWorkbenchEnvironment
31+
@@ -239,7 +239,7 @@ export class BrowserWorkbenchEnvironment
3232

3333
@memoize
3434
get webviewExternalEndpoint(): string {

0 commit comments

Comments
 (0)