vscode-languageserver-protocol 3.17.1 → 3.17.2-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![NPM Downloads](https://img.shields.io/npm/dm/vscode-languageserver-protocol.svg)](https://npmjs.org/package/vscode-languageclient)
5
5
  [![Build Status](https://travis-ci.org/Microsoft/vscode-languageserver-node.svg?branch=master)](https://travis-ci.org/Microsoft/vscode-languageserver-node)
6
6
 
7
- This npm module is a tool independent implementation of the language server protocol and can be used in any type of node application.
7
+ This npm module is a tool independent implementation of the language server protocol and can be used in any type of node application. Please note that the protocol is versioned using the LSP specification version number. Since the protocol depends on the `vscode-jsonrpc` version a a breaking change on that dependencies might not be reflected in a major version change of this module. Changing the major version number in these cases was more confusing this it would result in a version mismatch between the protocol and the LSP specification.
8
8
 
9
9
  See [here](https://github.com/Microsoft/language-server-protocol) for a detailed documentation on the language server protocol.
10
10
 
@@ -1877,7 +1877,7 @@ export interface CompletionClientCapabilities {
1877
1877
  */
1878
1878
  completionList?: {
1879
1879
  /**
1880
- * The client supports the the following itemDefaults on
1880
+ * The client supports the following itemDefaults on
1881
1881
  * a completion list.
1882
1882
  *
1883
1883
  * The value lists the supported property names of the
@@ -5,7 +5,7 @@ export interface WorkspaceFoldersInitializeParams {
5
5
  /**
6
6
  * The actual configured workspace folders.
7
7
  */
8
- workspaceFolders: WorkspaceFolder[] | null;
8
+ workspaceFolders?: WorkspaceFolder[] | null;
9
9
  }
10
10
  export interface WorkspaceFoldersServerCapabilities {
11
11
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vscode-languageserver-protocol",
3
3
  "description": "VSCode Language Server Protocol implementation",
4
- "version": "3.17.1",
4
+ "version": "3.17.2-next.1",
5
5
  "author": "Microsoft Corporation",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -18,8 +18,8 @@
18
18
  },
19
19
  "typings": "./lib/common/api.d.ts",
20
20
  "dependencies": {
21
- "vscode-jsonrpc": "8.0.1",
22
- "vscode-languageserver-types": "3.17.1"
21
+ "vscode-jsonrpc": "8.0.2-next.1",
22
+ "vscode-languageserver-types": "3.17.2.next-1"
23
23
  },
24
24
  "scripts": {
25
25
  "prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test",