Skip to content

Commit b139754

Browse files
authored
Update dependencies (#1592)
* Move to latest compiler and NodeJS * Update dependencies
1 parent 906f5fb commit b139754

18 files changed

+1607
-873
lines changed

client-node-tests/package-lock.json

Lines changed: 517 additions & 205 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-node-tests/package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,15 @@
3636
"devDependencies": {
3737
"@types/glob": "^8.1.0",
3838
"@types/minimatch": "^5.1.2",
39-
"@types/sinon": "^10.0.20",
40-
"@types/uuid": "^9.0.6",
39+
"@types/sinon": "^17.0.3",
40+
"@types/uuid": "^10.0.0",
4141
"@types/vscode": "1.91.0",
42-
"@vscode/test-electron": "^2.3.9",
42+
"@types/node": "20.17.9",
43+
"@vscode/test-electron": "^2.4.1",
4344
"find-process": "^1.4.7",
44-
"glob": "^10.3.10",
45-
"sinon": "^17.0.0",
46-
"uuid": "^9.0.1"
45+
"glob": "^11.0.0",
46+
"sinon": "^19.0.2",
47+
"uuid": "^11.0.3"
4748
},
4849
"enabledApiProposals": []
4950
}

client-node-tests/src/converter.test.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
* Copyright (c) Microsoft Corporation. All rights reserved.
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
5+
declare module 'vscode' {
6+
7+
export interface CodeAction {
8+
/**
9+
* Marks this as an AI action.
10+
*
11+
* Ex: A quick fix should be marked AI if it invokes AI.
12+
*/
13+
isAI?: boolean;
14+
}
15+
}
516

617
import { strictEqual, deepEqual, ok, deepStrictEqual } from 'assert';
718

client/package-lock.json

Lines changed: 11 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"shx": "^0.3.4"
4242
},
4343
"dependencies": {
44-
"minimatch": "^9.0.3",
45-
"semver": "^7.6.0",
44+
"minimatch": "^10.0.1",
45+
"semver": "^7.6.3",
4646
"vscode-languageserver-protocol": "3.17.6-next.10"
4747
},
4848
"scripts": {

client/src/common/codeConverter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) Microsoft Corporation. All rights reserved.
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
* ------------------------------------------------------------------------------------------ */
5-
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" />
5+
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" preserve: true/>
66

77
import * as code from 'vscode';
88
import * as proto from 'vscode-languageserver-protocol';

client/src/common/protocolConverter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) Microsoft Corporation. All rights reserved.
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
* ------------------------------------------------------------------------------------------ */
5-
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" />
5+
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" preserve: true/>
66

77
import * as code from 'vscode';
88
import * as ls from 'vscode-languageserver-protocol';

jsonrpc/package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jsonrpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131
},
3232
"devDependencies": {
33-
"@types/msgpack-lite": "^0.1.10",
33+
"@types/msgpack-lite": "^0.1.11",
3434
"msgpack-lite": "^0.1.26"
3535
},
3636
"scripts": {

jsonrpc/src/common/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) Microsoft Corporation. All rights reserved.
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
* ------------------------------------------------------------------------------------------ */
5-
/// <reference path="../../typings/thenable.d.ts" />
5+
/// <reference path="../../typings/thenable.d.ts" preserve="true"/>
66

77
import {
88
Message, MessageSignature, RequestMessage, RequestType, RequestType0, RequestType1, RequestType2, RequestType3, RequestType4, RequestType5, RequestType6,

jsonrpc/src/common/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) Microsoft Corporation. All rights reserved.
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
* ------------------------------------------------------------------------------------------ */
5-
/// <reference path="../../typings/thenable.d.ts" />
5+
/// <reference path="../../typings/thenable.d.ts" preserve="true"/>
66

77
import RAL from './ral';
88
import * as Is from './is';

0 commit comments

Comments
 (0)