Skip to content

Commit 2979500

Browse files
committed
Prepare new next release
1 parent c4dd17a commit 2979500

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ After cloning the repository, run `npm install` to install dependencies and `npm
4848
- Added a `CancellationToken` to the show document middleware to make it consistent with the other middleware. This is a breaking change since it added a required parameter.
4949
- Using `LogOutputChannel` for the client's output and trace channel instead of the standard VSCode `OutputChannel` type. This is a breaking change for clients that pass in their own log or trace channel via the `LanguageClientOptions`. Instead of using a normal `OutputChannel` you now need to pass in a `LogOutputChannel`.
5050
- LinkedList from `jsonrpc` is not implementing Map anymore.
51+
- Possibility to delay open notification and ignore if close notification comes in time.
5152

5253
## 3.17.5 Protocol, 9.0.1 Client and 9.0.1 Server
5354

client-node-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"dependencies": {
3232
"minimatch": "^10.0.3",
33-
"vscode-languageserver": "10.0.0-next.14",
33+
"vscode-languageserver": "10.0.0-next.15",
3434
"vscode-uri": "3.0.8"
3535
},
3636
"devDependencies": {

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-languageclient",
33
"description": "VSCode Language client implementation",
4-
"version": "10.0.0-next.17",
4+
"version": "10.0.0-next.18",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"engines": {
@@ -43,7 +43,7 @@
4343
"dependencies": {
4444
"minimatch": "^10.0.3",
4545
"semver": "^7.7.1",
46-
"vscode-languageserver-protocol": "3.17.6-next.14"
46+
"vscode-languageserver-protocol": "3.17.6-next.15"
4747
},
4848
"scripts": {
4949
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",

jsonrpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-jsonrpc",
33
"description": "A json rpc implementation over streams",
4-
"version": "9.0.0-next.9",
4+
"version": "9.0.0-next.10",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {

protocol/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-languageserver-protocol",
33
"description": "VSCode Language Server Protocol implementation",
4-
"version": "3.17.6-next.14",
4+
"version": "3.17.6-next.15",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -27,7 +27,7 @@
2727
}
2828
},
2929
"dependencies": {
30-
"vscode-jsonrpc": "9.0.0-next.9",
30+
"vscode-jsonrpc": "9.0.0-next.10",
3131
"vscode-languageserver-types": "3.17.6-next.6"
3232
},
3333
"scripts": {

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-languageserver",
33
"description": "Language server implementation for node",
4-
"version": "10.0.0-next.14",
4+
"version": "10.0.0-next.15",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -33,7 +33,7 @@
3333
"vscode-languageserver-textdocument": "1.0.12"
3434
},
3535
"dependencies": {
36-
"vscode-languageserver-protocol": "3.17.6-next.14"
36+
"vscode-languageserver-protocol": "3.17.6-next.15"
3737
},
3838
"scripts": {
3939
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",

0 commit comments

Comments
 (0)