Skip to content

Commit ff70dfe

Browse files
committed
Publish protocol@3.16.0-next.11
1 parent 2fbba0d commit ff70dfe

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ After cloning the repository, run `npm install` to install dependencies and `npm
3434

3535
## History
3636

37+
## 3.16.0-next.11 Protocol, 6.0.0-next.7 JSON-RPC, 7.0.0-next.13 Client and 7.0.0-next.11 Server.
38+
39+
* For a detailed list of changes made in the 3.16.0 version of the protocol see the [change log](https://microsoft.github.io/language-server-protocol/specifications/specification-3-16/#version_3_16_0) of the 3.16 specification.
40+
3741
## 3.16.0-next.10 Protocol, 6.0.0-next.7 JSON-RPC, 7.0.0-next.12 Client and 7.0.0-next.10 Server.
3842

39-
* cleanup of Request and Notification types. Removed the unecessary generic parameter RO. This is a breaking change. To adapt simply remove the type argument.
43+
* cleanup of Request and Notification types. Removed the unnecessary generic parameter RO. This is a breaking change. To adapt simply remove the type argument.
4044
* added the new concept of a RegistrationType which decouple the registration method from the actual request or notification method. This is a breaking change for implementors of custom features. To adapt rename the `messages` property to `registrationType` and return a corresponding `RegistrationType`. Additional remove the first parameter from the `register` method.
4145
* cleanup of `ErrorCodes`. LSP specific error codes got moved to a new namespace `LSPErrorCodes`. The namespace `ErrorCodes` in `jsonrpc` is not correctly reserved for JSON RPC specific error codes. This is a breaking change. To resolve it use `LSPErrorCodes` instead.
4246

@@ -54,7 +58,7 @@ After cloning the repository, run `npm install` to install dependencies and `npm
5458
## 3.16.0-next.1 Protocol, 5.1.0-next.1 JSON-RPC, 6.2.0-next.1 Client and 6.2.0-next.1 Server.
5559

5660
* support for complex diagnostic codes
57-
* support for pluggable cancellation strategy
61+
* support for plugable cancellation strategy
5862
* support for insert / replace edits in completion items.
5963

6064

protocol/package-lock.json

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

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.16.0-next.10",
4+
"version": "3.16.0-next.11",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -19,7 +19,7 @@
1919
"typings": "./lib/common/api.d.ts",
2020
"dependencies": {
2121
"vscode-jsonrpc": "6.0.0-next.7",
22-
"vscode-languageserver-types": "3.16.0-next.4"
22+
"vscode-languageserver-types": "3.16.0-next.5"
2323
},
2424
"scripts": {
2525
"prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test",

0 commit comments

Comments
 (0)