Skip to content

Commit

Permalink
Prepare 3.17.3 / 8.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Feb 14, 2023
1 parent 9b74202 commit 9d2dadc
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ After cloning the repository, run `npm install` to install dependencies and `npm

## History

## 3.17.3 Protocol, 8.1.0 JSON-RPC, 8.1.0 Client and 8.1.0 Server.

- support for custom message handlers
- various [bug fixes](https://github.com/microsoft/vscode-languageserver-node/milestone/49?closed=1). Noteworthy are fixes around request ordering problems with full document sync.

## 3.17.2 Protocol, 8.0.2 JSON-RPC, 8.0.2 Client and 8.0.2 Server.

- make client more robust against unwanted restarts
Expand Down
2 changes: 1 addition & 1 deletion client-node-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"minimatch": "^3.0.4",
"vscode-languageserver": "8.1.0-next.6",
"vscode-languageserver": "8.1.0",
"vscode-uri": "3.0.3"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageclient",
"description": "VSCode Language client implementation",
"version": "8.1.0-next.6",
"version": "8.1.0",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"dependencies": {
"minimatch": "^5.1.0",
"semver": "^7.3.7",
"vscode-languageserver-protocol": "3.17.3-next.6"
"vscode-languageserver-protocol": "3.17.3"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-jsonrpc",
"description": "A json rpc implementation over streams",
"version": "8.1.0-next.7",
"version": "8.1.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageserver-protocol",
"description": "VSCode Language Server Protocol implementation",
"version": "3.17.3-next.6",
"version": "3.17.3",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -18,8 +18,8 @@
},
"typings": "./lib/common/api.d.ts",
"dependencies": {
"vscode-jsonrpc": "8.1.0-next.7",
"vscode-languageserver-types": "3.17.3-next.3"
"vscode-jsonrpc": "8.1.0",
"vscode-languageserver-types": "3.17.3"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
4 changes: 2 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageserver",
"description": "Language server implementation for node",
"version": "8.1.0-next.6",
"version": "8.1.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -24,7 +24,7 @@
"vscode-languageserver-textdocument": "1.0.9"
},
"dependencies": {
"vscode-languageserver-protocol": "3.17.3-next.6"
"vscode-languageserver-protocol": "3.17.3"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
2 changes: 1 addition & 1 deletion types/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageserver-types",
"description": "Types used by the Language server for node",
"version": "3.17.3-next.3",
"version": "3.17.3",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 9d2dadc

Please sign in to comment.