New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vscode-languageserver

Package Overview
Dependencies
Maintainers
11
Versions
268
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-languageserver - npm Package Compare versions

Comparing version 7.1.0-next.5 to 8.0.0-next.1

14

lib/common/server.js

@@ -247,3 +247,5 @@ "use strict";

if (this._rawConnection) {
this._rawConnection.sendNotification(vscode_languageserver_protocol_1.LogMessageNotification.type, { type, message });
this._rawConnection.sendNotification(vscode_languageserver_protocol_1.LogMessageNotification.type, { type, message }).catch(() => {
vscode_languageserver_protocol_1.RAL().console.error(`Sending log message failed`);
});
}

@@ -349,3 +351,3 @@ }

};
this._connection.sendRequest(vscode_languageserver_protocol_1.UnregistrationRequest.type, params).then(undefined, (_error) => {
this._connection.sendRequest(vscode_languageserver_protocol_1.UnregistrationRequest.type, params).catch(() => {
this._connection.console.info(`Bulk unregistration failed.`);

@@ -421,3 +423,3 @@ });

return vscode_languageserver_protocol_1.Disposable.create(() => {
this.unregisterSingle(id, method);
this.unregisterSingle(id, method).catch(() => { this.connection.console.info(`Un-registering capability with id ${id} failed.`); });
});

@@ -433,3 +435,3 @@ }, (_error) => {

};
return this.connection.sendRequest(vscode_languageserver_protocol_1.UnregistrationRequest.type, params).then(undefined, (_error) => {
return this.connection.sendRequest(vscode_languageserver_protocol_1.UnregistrationRequest.type, params).catch(() => {
this.connection.console.info(`Un-registering request handler for ${id} failed.`);

@@ -648,6 +650,6 @@ });

if (arguments.length === 1) {
connection.sendNotification(method);
return connection.sendNotification(method);
}
else {
connection.sendNotification(method, param);
return connection.sendNotification(method, param);
}

@@ -654,0 +656,0 @@ },

{
"name": "vscode-languageserver",
"description": "Language server implementation for node",
"version": "7.1.0-next.5",
"version": "8.0.0-next.1",
"author": "Microsoft Corporation",

@@ -24,3 +24,3 @@ "license": "MIT",

"dependencies": {
"vscode-languageserver-protocol": "3.17.0-next.6"
"vscode-languageserver-protocol": "3.17.0-next.7"
},

@@ -27,0 +27,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc