diff --git a/CHANGELOG.md b/CHANGELOG.md index d57d36b8f11d..f4fa900c30c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 2018.7.0-beta (10 July 2018) +## 2018.7.0 (18 July 2018) ### Thanks @@ -55,6 +55,15 @@ part of! 1. Language server now reports code analysis progress in the status bar. ([#1591](https://github.com/Microsoft/vscode-python/issues/1591)) +1. Only report Language Server download progress once. + ([#2000](https://github.com/Microsoft/vscode-python/issues/2000)) +1. Messages changes to reflect name of the language server: 'Microsoft Python Language Server'; + folder name changed from `analysis` to `languageServer`. + ([#2107](https://github.com/Microsoft/vscode-python/issues/2107)) +1. Set default analysis for language server to open files only. + ([#2113](https://github.com/Microsoft/vscode-python/issues/2113)) +1. Add two popups to the extension: one to ask users to move to the new language server, the other to request feedback from users of that language server. + ([#2127](https://github.com/Microsoft/vscode-python/issues/2127)) ### Fixes @@ -69,15 +78,25 @@ part of! 1. Change keyboard shortcut for `Run Selection/Line in Python Terminal` to not interfere with the Find/Replace dialog box. ([#2068](https://github.com/Microsoft/vscode-python/issues/2068)) +1. Relax validation of the environment `Path` variable. + ([#2076](https://github.com/Microsoft/vscode-python/issues/2076)) 1. `editor.formatOnType` is more reliable handling floating point numbers. ([#2079](https://github.com/Microsoft/vscode-python/issues/2079)) +1. Change the default port used in remote debugging using `Experimental` debugger to `5678`. + ([#2146](https://github.com/Microsoft/vscode-python/issues/2146)) +1. Register test manager when using the new language server. + ([#2186](https://github.com/Microsoft/vscode-python/issues/2186)) ### Code Health 1. Removed pre-commit hook that ran unit tests. ([#1986](https://github.com/Microsoft/vscode-python/issues/1986)) - - +1. Pass OS type to the debugger. + ([#2128](https://github.com/Microsoft/vscode-python/issues/2128)) +1. Ensure 'languageServer' directory is excluded from the build output. + ([#2150](https://github.com/Microsoft/vscode-python/issues/2150)) +1. Change the download links of the language server files. + ([#2180](https://github.com/Microsoft/vscode-python/issues/2180)) diff --git a/news/1 Enhancements/1591.md b/news/1 Enhancements/1591.md deleted file mode 100644 index 758c2b0b7234..000000000000 --- a/news/1 Enhancements/1591.md +++ /dev/null @@ -1 +0,0 @@ -Language server now reports code analysis progress in the status bar. diff --git a/news/1 Enhancements/2000.md b/news/1 Enhancements/2000.md deleted file mode 100644 index 319691492f78..000000000000 --- a/news/1 Enhancements/2000.md +++ /dev/null @@ -1 +0,0 @@ -Only report Language Server download progress once. (Thanks @MikhailArkhipov) diff --git a/news/1 Enhancements/2107.md b/news/1 Enhancements/2107.md deleted file mode 100644 index 22014105dda2..000000000000 --- a/news/1 Enhancements/2107.md +++ /dev/null @@ -1,2 +0,0 @@ -Messages changes to reflect name of the language server: 'Microsoft Python Language Server'. -Folder name changed from 'analysis' to 'languageServer'. \ No newline at end of file diff --git a/news/1 Enhancements/2113.md b/news/1 Enhancements/2113.md deleted file mode 100644 index 9455e9f6077d..000000000000 --- a/news/1 Enhancements/2113.md +++ /dev/null @@ -1 +0,0 @@ -Set default analysis for language server to open files only. (Thanks @MikhailArkhipov) diff --git a/news/1 Enhancements/2127.md b/news/1 Enhancements/2127.md deleted file mode 100644 index 04135259c073..000000000000 --- a/news/1 Enhancements/2127.md +++ /dev/null @@ -1 +0,0 @@ -Add two popups to the extension: one to ask users to move to the new language server, the other to request feedback from users of that language server. diff --git a/news/2 Fixes/2013.md b/news/2 Fixes/2013.md deleted file mode 100644 index 4524ae66a0ea..000000000000 --- a/news/2 Fixes/2013.md +++ /dev/null @@ -1 +0,0 @@ -Ensure dunder variables are always displayed in code completion when using the new language server. diff --git a/news/2 Fixes/2044.md b/news/2 Fixes/2044.md deleted file mode 100644 index 122287640547..000000000000 --- a/news/2 Fixes/2044.md +++ /dev/null @@ -1 +0,0 @@ -Store testId for files & suites during unittest discovery. diff --git a/news/2 Fixes/2048.md b/news/2 Fixes/2048.md deleted file mode 100644 index 1ef400d6de06..000000000000 --- a/news/2 Fixes/2048.md +++ /dev/null @@ -1 +0,0 @@ -`editor.formatOnType` no longer adds space after `*` in multi-line arguments. diff --git a/news/2 Fixes/2057.md b/news/2 Fixes/2057.md deleted file mode 100644 index 34db4fed4207..000000000000 --- a/news/2 Fixes/2057.md +++ /dev/null @@ -1 +0,0 @@ -Fix bug where tooltips would popup whenever a comma is typed within a string. diff --git a/news/2 Fixes/2068.md b/news/2 Fixes/2068.md deleted file mode 100644 index 062dfb4d3654..000000000000 --- a/news/2 Fixes/2068.md +++ /dev/null @@ -1,2 +0,0 @@ -Change keyboard shortcut for `Run Selection/Line in Python Terminal` to not -interfere with the Find/Replace dialog box. diff --git a/news/2 Fixes/2076.md b/news/2 Fixes/2076.md deleted file mode 100644 index 70ce03782a26..000000000000 --- a/news/2 Fixes/2076.md +++ /dev/null @@ -1 +0,0 @@ -Relax validation of the environment `Path` variable. diff --git a/news/2 Fixes/2079.md b/news/2 Fixes/2079.md deleted file mode 100644 index 6b0366702a18..000000000000 --- a/news/2 Fixes/2079.md +++ /dev/null @@ -1 +0,0 @@ -`editor.formatOnType` is more reliable handling floating point numbers. diff --git a/news/2 Fixes/2146.md b/news/2 Fixes/2146.md deleted file mode 100644 index 93e660fa18d3..000000000000 --- a/news/2 Fixes/2146.md +++ /dev/null @@ -1 +0,0 @@ -Change the default port used in remote debugging using `Experimental` debugger to `5678`. diff --git a/news/2 Fixes/2186.md b/news/2 Fixes/2186.md deleted file mode 100644 index a2f6df4f564a..000000000000 --- a/news/2 Fixes/2186.md +++ /dev/null @@ -1 +0,0 @@ -Register test manager when using the new language server. diff --git a/news/3 Code Health/1986.md b/news/3 Code Health/1986.md deleted file mode 100644 index e20a4c024e14..000000000000 --- a/news/3 Code Health/1986.md +++ /dev/null @@ -1 +0,0 @@ -Removed pre-commit hook that ran unit tests. diff --git a/news/3 Code Health/2128.md b/news/3 Code Health/2128.md deleted file mode 100644 index 22ac6aecbc7a..000000000000 --- a/news/3 Code Health/2128.md +++ /dev/null @@ -1 +0,0 @@ -Pass OS type to the debugger. diff --git a/news/3 Code Health/2150.md b/news/3 Code Health/2150.md deleted file mode 100644 index 77408e558502..000000000000 --- a/news/3 Code Health/2150.md +++ /dev/null @@ -1 +0,0 @@ -Ensure 'languageServer' directory is excluded from the build output. diff --git a/news/3 Code Health/2180.md b/news/3 Code Health/2180.md deleted file mode 100644 index d49e681aa8c7..000000000000 --- a/news/3 Code Health/2180.md +++ /dev/null @@ -1 +0,0 @@ -Change the download links of the language server files. diff --git a/package-lock.json b/package-lock.json index ee9849eb35e3..8bbc19bbb321 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "python", - "version": "2018.7.0-beta", + "version": "2018.7.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 167c1f3b3a93..d9bb9b5e83ef 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "python", "displayName": "Python", "description": "Linting, Debugging (multi-threaded, remote), Intellisense, code formatting, refactoring, unit tests, snippets, and more.", - "version": "2018.7.0-beta", + "version": "2018.7.0", "publisher": "ms-python", "author": { "name": "Microsoft Corporation"