Skip to content

Commit 3641652

Browse files
authored
Downgrade lsp packages (microsoft#23890)
found issue on the latest LSP packages - microsoft/vscode-languageserver-node#1525 downgrading to the previous version see PR which moved to newer version - microsoft@bc2f5e3
1 parent 79515ea commit 3641652

File tree

3 files changed

+38
-38
lines changed

3 files changed

+38
-38
lines changed

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,9 +1536,9 @@
15361536
"unicode": "^14.0.0",
15371537
"untildify": "^4.0.0",
15381538
"vscode-debugprotocol": "^1.28.0",
1539-
"vscode-jsonrpc": "^9.0.0-next.4",
1540-
"vscode-languageclient": "^10.0.0-next.8",
1541-
"vscode-languageserver-protocol": "^3.17.6-next.6",
1539+
"vscode-jsonrpc": "^9.0.0-next.2",
1540+
"vscode-languageclient": "^10.0.0-next.2",
1541+
"vscode-languageserver-protocol": "^3.17.6-next.3",
15421542
"vscode-tas-client": "^0.1.84",
15431543
"which": "^2.0.2",
15441544
"winreg": "^1.2.4",

src/client/browser/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async function runPylance(
108108
middleware,
109109
};
110110

111-
const client = new LanguageClient('python', 'Python Language Server', worker, clientOptions);
111+
const client = new LanguageClient('python', 'Python Language Server', clientOptions, worker);
112112
languageClient = client;
113113

114114
context.subscriptions.push(

0 commit comments

Comments
 (0)