Skip to content

Commit 45bdc54

Browse files
author
cdrci
committed
Update Code to 1.133.0
1 parent 51f90a3 commit 45bdc54

6 files changed

Lines changed: 20 additions & 14 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.133.0
26+
27+
### Changed
28+
29+
- Update to Code 1.133.0
30+
2531
## [4.132.0](https://github.com/coder/code-server/releases/tag/v4.132.0) - 2026-08-10
2632

2733
Code v1.132.0

lib/vscode

Submodule vscode updated 2695 files

patches/display-language.diff

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ Index: code-server/lib/vscode/src/vs/server/node/serverServices.ts
99
===================================================================
1010
--- code-server.orig/lib/vscode/src/vs/server/node/serverServices.ts
1111
+++ code-server/lib/vscode/src/vs/server/node/serverServices.ts
12-
@@ -12,7 +12,7 @@ import * as path from '../../base/common
13-
import { IURITransformer } from '../../base/common/uriIpc.js';
12+
@@ -14,7 +14,7 @@ import { IURITransformer } from '../../b
13+
import { generateUuid } from '../../base/common/uuid.js';
1414
import { getMachineId, getSqmMachineId, getDevDeviceId } from '../../base/node/id.js';
1515
import { Promises } from '../../base/node/pfs.js';
1616
-import { ClientConnectionEvent, IMessagePassingProtocol, IPCServer, StaticRouter } from '../../base/parts/ipc/common/ipc.js';
1717
+import { ClientConnectionEvent, IMessagePassingProtocol, IPCServer, ProxyChannel, StaticRouter } from '../../base/parts/ipc/common/ipc.js';
1818
import { ProtocolConstants } from '../../base/parts/ipc/common/ipc.net.js';
19+
import { createRandomIPCHandle } from '../../base/parts/ipc/node/ipc.net.js';
1920
import { IConfigurationService } from '../../platform/configuration/common/configuration.js';
20-
import { ConfigurationService } from '../../platform/configuration/common/configurationService.js';
21-
@@ -358,6 +358,9 @@ export async function setupServerService
21+
@@ -418,6 +418,9 @@ export async function setupServerService
2222

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

patches/integration.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/web.main.ts
172172
import { IProgressService } from '../../platform/progress/common/progress.js';
173173
import { DelayedLogChannel } from '../services/output/common/delayedLogChannel.js';
174174
import { dirname, joinPath } from '../../base/common/resources.js';
175-
@@ -139,6 +140,9 @@ export class BrowserMain extends Disposa
175+
@@ -140,6 +141,9 @@ export class BrowserMain extends Disposa
176176
// Startup
177177
const instantiationService = workbench.startup();
178178

patches/marketplace.diff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Index: code-server/lib/vscode/src/vs/platform/product/common/product.ts
1919
===================================================================
2020
--- code-server.orig/lib/vscode/src/vs/platform/product/common/product.ts
2121
+++ code-server/lib/vscode/src/vs/platform/product/common/product.ts
22-
@@ -49,6 +49,17 @@ else if (globalThis._VSCODE_PRODUCT_JSON
23-
version: pkg.version
22+
@@ -104,6 +104,17 @@ else {
23+
}
2424
});
2525
}
2626
+
@@ -36,7 +36,7 @@ Index: code-server/lib/vscode/src/vs/platform/product/common/product.ts
3636
+ });
3737
}
3838

39-
// Web environment or unknown
39+
export default product;
4040
Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts
4141
===================================================================
4242
--- code-server.orig/lib/vscode/src/vs/server/node/webClientServer.ts

patches/telemetry.diff

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ Index: code-server/lib/vscode/src/vs/server/node/serverServices.ts
1212
===================================================================
1313
--- code-server.orig/lib/vscode/src/vs/server/node/serverServices.ts
1414
+++ code-server/lib/vscode/src/vs/server/node/serverServices.ts
15-
@@ -4,6 +4,7 @@
16-
*--------------------------------------------------------------------------------------------*/
15+
@@ -5,6 +5,7 @@
1716

17+
import * as fs from 'fs';
1818
import { hostname, release } from 'os';
1919
+import { promises as fs } from 'fs';
2020
import { Emitter, Event } from '../../base/common/event.js';
2121
import { DisposableStore, toDisposable } from '../../base/common/lifecycle.js';
2222
import { Schemas } from '../../base/common/network.js';
23-
@@ -65,6 +66,7 @@ import { IExtensionsScannerService } fro
23+
@@ -68,6 +69,7 @@ import { IExtensionsScannerService } fro
2424
import { ExtensionsScannerService } from './extensionsScannerService.js';
2525
import { IExtensionsProfileScannerService } from '../../platform/extensionManagement/common/extensionsProfileScannerService.js';
2626
import { IUserDataProfilesService } from '../../platform/userDataProfile/common/userDataProfile.js';
2727
+import { TelemetryClient } from './telemetryClient.js';
2828
import { NullPolicyService } from '../../platform/policy/common/policy.js';
2929
import { OneDataSystemAppender } from '../../platform/telemetry/node/1dsAppender.js';
3030
import { LoggerService } from '../../platform/log/node/loggerService.js';
31-
@@ -176,11 +178,23 @@ export async function setupServerService
31+
@@ -179,11 +181,23 @@ export async function setupServerService
3232
const requestService = new RequestService('remote', configurationService, environmentService, logService);
3333
services.set(IRequestService, requestService);
3434

@@ -159,7 +159,7 @@ Index: code-server/lib/vscode/src/vs/platform/product/common/product.ts
159159
===================================================================
160160
--- code-server.orig/lib/vscode/src/vs/platform/product/common/product.ts
161161
+++ code-server/lib/vscode/src/vs/platform/product/common/product.ts
162-
@@ -58,7 +58,8 @@ else if (globalThis._VSCODE_PRODUCT_JSON
162+
@@ -113,7 +113,8 @@ else {
163163
resourceUrlTemplate: "https://open-vsx.org/vscode/asset/{publisher}/{name}/{version}/Microsoft.VisualStudio.Code.WebResources/{path}",
164164
controlUrl: "",
165165
recommendationsUrl: "",

0 commit comments

Comments
 (0)