Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New release 3.17.5 #1330

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ After cloning the repository, run `npm install` to install dependencies and `npm

## History

## 3.17.0 Protocol, 8.2.0 JSON-RPC 9.0.0 Client and 9.0.0 Server
## 3.17.5 Protocol, 9.0.1 Client and 9.0.1 Server

- fix ESM bundling

## 3.17.4 Protocol, 8.2.0 JSON-RPC 9.0.0 Client and 9.0.0 Server

- added proposed inline completion request.
- added proposed formatting ranges request.
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 @@ -30,7 +30,7 @@
},
"dependencies": {
"minimatch": "^3.0.4",
"vscode-languageserver": "9.0.0",
"vscode-languageserver": "9.0.1",
"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": "9.0.0",
"version": "9.0.1",
"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.4"
"vscode-languageserver-protocol": "3.17.5"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
4 changes: 2 additions & 2 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.4",
"version": "3.17.5",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -19,7 +19,7 @@
"typings": "./lib/common/api.d.ts",
"dependencies": {
"vscode-jsonrpc": "8.2.0",
"vscode-languageserver-types": "3.17.4"
"vscode-languageserver-types": "3.17.5"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
6 changes: 3 additions & 3 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": "9.0.0",
"version": "9.0.1",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand All @@ -21,10 +21,10 @@
"installServerIntoExtension": "./bin/installServerIntoExtension"
},
"devDependencies": {
"vscode-languageserver-textdocument": "1.0.10"
"vscode-languageserver-textdocument": "1.0.11"
},
"dependencies": {
"vscode-languageserver-protocol": "3.17.4"
"vscode-languageserver-protocol": "3.17.5"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand Down
2 changes: 1 addition & 1 deletion textDocument/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageserver-textdocument",
"description": "A simple text document implementation for Node LSP servers",
"version": "1.0.10",
"version": "1.0.11",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
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.4",
"version": "3.17.5",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down
Loading