-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Upgrade to latest LS protocol #2164
Conversation
src/client/activation/downloader.ts
Outdated
@@ -42,7 +42,7 @@ export class LanguageServerDownloader { | |||
let localTempFilePath = ''; | |||
try { | |||
localTempFilePath = await this.downloadFile(downloadUriPrefix, enginePackageFileName, 'Downloading Microsoft Python Language Server... '); | |||
await this.verifyDownload(localTempFilePath, platformString); | |||
// await this.verifyDownload(localTempFilePath, platformString); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove commented code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please create a news entry for this.
@d3r3kk |
We can likely improve our vscode-mock loader to catch these problems. Added issue #2165. |
@DonJayamanne LOL, I've just taken @MikhailArkhipov's PR and usurped it to fix the missing type in vscode-mock. I'll see if I can make some sense of what you are asking 🤷♂️. |
Codecov Report
@@ Coverage Diff @@
## master #2164 +/- ##
==========================================
+ Coverage 79.86% 79.88% +0.01%
==========================================
Files 308 308
Lines 14176 14167 -9
Branches 2520 2519 -1
==========================================
- Hits 11322 11317 -5
+ Misses 2842 2838 -4
Partials 12 12
Continue to review full report at Codecov.
|
- Fix linter: unused private method. - Fix linter: unused imports
@DonJayamanne please have a look, I'll submit when the builds run clean. |
* LS symbol providers * Different ready wait * Upgrade dependencies to latest LS * Make open files only default * Turn off hash checks * Fix double progress display * Update packages * Anchor dependencies * Add missing mock from vscode-mock * Downgrade pylint to < 2.0.0 to mirror prospector requirements
Upgrade to latest LS protocol since we need new CompletionItem field
Also
Fixes #2113
Fixes #2000