diff --git a/CHANGELOG.md b/CHANGELOG.md index c40394087d5e..1def08581568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,148 @@ # Changelog + +## 2019.5.0 (28 May 2019) + +### Enhancements + +1. Changed synchronous file system operation into async + ([#4895](https://github.com/Microsoft/vscode-python/issues/4895)) +1. Show a message when no variables are defined + ([#5228](https://github.com/Microsoft/vscode-python/issues/5228)) +1. Variable explorer UI fixes via PM / designer + ([#5274](https://github.com/Microsoft/vscode-python/issues/5274)) +1. Allow column sorting in variable explorer + ([#5281](https://github.com/Microsoft/vscode-python/issues/5281)) +1. Provide basic intellisense in Interactive Windows, using the language server. + ([#5342](https://github.com/Microsoft/vscode-python/issues/5342)) +1. Add support for Jupyter autocomplete data in Interactive Window. + ([#5346](https://github.com/Microsoft/vscode-python/issues/5346)) +1. Swap getsizeof size value for something more sensible in the variable explorer + ([#5368](https://github.com/Microsoft/vscode-python/issues/5368)) +1. Pass parent debug session to child debug sessions using new DA API + ([#5464](https://github.com/Microsoft/vscode-python/issues/5464)) + +### Fixes + +1. Use the correct activation script for conda environments + ([#4402](https://github.com/Microsoft/vscode-python/issues/4402)) +1. Improve pipenv error messages (thanks [David Lechner](https://github.com/dlech)) + ([#4866](https://github.com/Microsoft/vscode-python/issues/4866)) +1. Quote paths returned by debugger API + ([#4966](https://github.com/Microsoft/vscode-python/issues/4966)) +1. Reliably end test tasks in Azure Pipelines. + ([#5129](https://github.com/Microsoft/vscode-python/issues/5129)) +1. Append `--pre` to black installation command so pipenv can properly resolve it. + (thanks [Erin O'Connell](https://github.com/erinxocon)) + ([#5171](https://github.com/Microsoft/vscode-python/issues/5171)) +1. Make background cell color useable in all themes. + ([#5236](https://github.com/Microsoft/vscode-python/issues/5236)) +1. Filtered rows shows 'fetching' instead of No rows. + ([#5278](https://github.com/Microsoft/vscode-python/issues/5278)) +1. Always show pytest's output when it fails. + ([#5313](https://github.com/Microsoft/vscode-python/issues/5313)) +1. Value 'None' sometimes shows up in the Count column of the variable explorer + ([#5387](https://github.com/Microsoft/vscode-python/issues/5387)) +1. Multi-dimensional arrays don't open in the data viewer. + ([#5395](https://github.com/Microsoft/vscode-python/issues/5395)) +1. Fix sorting of lists with numbers and missing entries. + ([#5414](https://github.com/Microsoft/vscode-python/issues/5414)) +1. Fix error with bad len() values in variable explorer + ([#5420](https://github.com/Microsoft/vscode-python/issues/5420)) +1. Remove trailing commas from JSON files. + (thanks [Romain](https://github.com/quarthex)) + ([#5437](https://github.com/Microsoft/vscode-python/issues/5437)) +1. Handle missing index columns and non trivial data types for columns. + ([#5452](https://github.com/Microsoft/vscode-python/issues/5452)) +1. Fix ignoreVscodeTheme to play along with dynamic theme updates. Also support setting in the variable explorer. + ([#5480](https://github.com/Microsoft/vscode-python/issues/5480)) +1. Fix matplotlib updating for dark theme after restarting + ([#5486](https://github.com/Microsoft/vscode-python/issues/5486)) +1. Add dev flag to poetry installer. + (thanks [Yan Pashkovsky](https://github.com/Yanpas)) + ([#5496](https://github.com/Microsoft/vscode-python/issues/5496)) +1. Default `PYTHONPATH` to an empty string if the environment variable is not defined. + ([#5579](https://github.com/Microsoft/vscode-python/issues/5579)) +1. Fix problems if other language kernels are installed that are using python under the covers (bash is one such example). + ([#5586](https://github.com/Microsoft/vscode-python/issues/5586)) +1. Allow collapsed code to affect intellisense. + ([#5631](https://github.com/Microsoft/vscode-python/issues/5631)) +1. Eliminate search support in the mini-editors in the Python Interactive window. + ([#5637](https://github.com/Microsoft/vscode-python/issues/5637)) +1. Fix perf problem with intellisense in the Interactive Window. + ([#5697](https://github.com/Microsoft/vscode-python/issues/5697)) + +### Code Health + +1. Deprecate [travis](https://travis-ci.org/) in favor of [Azure Pipelines](https://azure.microsoft.com/en-us/services/devops/pipelines/). + ([#4024](https://github.com/Microsoft/vscode-python/issues/4024)) +1. Smoke Tests must be run on nightly and CI on Azdo + ([#5090](https://github.com/Microsoft/vscode-python/issues/5090)) +1. Increase timeout and retries in Jupyter wait for idle + ([#5430](https://github.com/Microsoft/vscode-python/issues/5430)) +1. Update manual test plan for Variable Explorer and Data Viewer + ([#5476](https://github.com/Microsoft/vscode-python/issues/5476)) +1. Auto-update version number in `CHANGELOG.md` in the CI pipeline. + ([#5523](https://github.com/Microsoft/vscode-python/issues/5523)) +1. Fix security issues. + ([#5538](https://github.com/Microsoft/vscode-python/issues/5538)) +1. Send logging output into a text file on CI server. + ([#5651](https://github.com/Microsoft/vscode-python/issues/5651)) +1. Fix python 2.7 and 3.5 variable explorer nightly tests + ([#5433](https://github.com/Microsoft/vscode-python/issues/5433)) + + +### Thanks + +Thanks to the following projects which we fully rely on to provide some of +our features: +- [isort 4.3.17](https://pypi.org/project/isort/4.3.17/) +- [jedi 0.12.0](https://pypi.org/project/jedi/0.12.0/) + and [parso 0.2.1](https://pypi.org/project/parso/0.2.1/) +- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server) +- [ptvsd](https://pypi.org/project/ptvsd/) +- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed) +- [rope](https://pypi.org/project/rope/) (user-installed) + +Also thanks to the various projects we provide integrations with which help +make this extension useful: +- Debugging support: + [Django](https://pypi.org/project/Django/), + [Flask](https://pypi.org/project/Flask/), + [gevent](https://pypi.org/project/gevent/), + [Jinja](https://pypi.org/project/Jinja/), + [Pyramid](https://pypi.org/project/pyramid/), + [PySpark](https://pypi.org/project/pyspark/), + [Scrapy](https://pypi.org/project/Scrapy/), + [Watson](https://pypi.org/project/Watson/) +- Formatting: + [autopep8](https://pypi.org/project/autopep8/), + [black](https://pypi.org/project/black/), + [yapf](https://pypi.org/project/yapf/) +- Interpreter support: + [conda](https://conda.io/), + [direnv](https://direnv.net/), + [pipenv](https://pypi.org/project/pipenv/), + [pyenv](https://github.com/pyenv/pyenv), + [venv](https://docs.python.org/3/library/venv.html#module-venv), + [virtualenv](https://pypi.org/project/virtualenv/) +- Linting: + [bandit](https://pypi.org/project/bandit/), + [flake8](https://pypi.org/project/flake8/), + [mypy](https://pypi.org/project/mypy/), + [prospector](https://pypi.org/project/prospector/), + [pylint](https://pypi.org/project/pylint/), + [pydocstyle](https://pypi.org/project/pydocstyle/), + [pylama](https://pypi.org/project/pylama/) +- Testing: + [nose](https://pypi.org/project/nose/), + [pytest](https://pypi.org/project/pytest/), + [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) + +And finally thanks to the [Python](https://www.python.org/) development team and +community for creating a fantastic programming language and community to be a +part of! + ## 2019.4.1 (24 April 2019) ### Fixes diff --git a/news/1 Enhancements/4895.md b/news/1 Enhancements/4895.md deleted file mode 100644 index 00f13b026a39..000000000000 --- a/news/1 Enhancements/4895.md +++ /dev/null @@ -1 +0,0 @@ -Turned series of synchronous FS Operations into async diff --git a/news/1 Enhancements/5228.md b/news/1 Enhancements/5228.md deleted file mode 100644 index 1c17c72a4acb..000000000000 --- a/news/1 Enhancements/5228.md +++ /dev/null @@ -1 +0,0 @@ -Show a message when no variables are defined \ No newline at end of file diff --git a/news/1 Enhancements/5274.md b/news/1 Enhancements/5274.md deleted file mode 100644 index fcc6a776438b..000000000000 --- a/news/1 Enhancements/5274.md +++ /dev/null @@ -1 +0,0 @@ -Variable explorer UI fixes via PM / designer \ No newline at end of file diff --git a/news/1 Enhancements/5281.md b/news/1 Enhancements/5281.md deleted file mode 100644 index 835d225f713b..000000000000 --- a/news/1 Enhancements/5281.md +++ /dev/null @@ -1 +0,0 @@ -Allow column sorting in variable explorer \ No newline at end of file diff --git a/news/1 Enhancements/5342.md b/news/1 Enhancements/5342.md deleted file mode 100644 index 1a5337a65cc0..000000000000 --- a/news/1 Enhancements/5342.md +++ /dev/null @@ -1 +0,0 @@ -Provide basic intellisense using the language server. \ No newline at end of file diff --git a/news/1 Enhancements/5346.md b/news/1 Enhancements/5346.md deleted file mode 100644 index 9eb88b31888e..000000000000 --- a/news/1 Enhancements/5346.md +++ /dev/null @@ -1 +0,0 @@ -Add support for Jupyter autocomplete data. \ No newline at end of file diff --git a/news/1 Enhancements/5368.md b/news/1 Enhancements/5368.md deleted file mode 100644 index a92213fde27c..000000000000 --- a/news/1 Enhancements/5368.md +++ /dev/null @@ -1 +0,0 @@ -Swap getsizeof size value for something more sensible in the variable explorer \ No newline at end of file diff --git a/news/1 Enhancements/5464.md b/news/1 Enhancements/5464.md deleted file mode 100644 index b1aece8e3836..000000000000 --- a/news/1 Enhancements/5464.md +++ /dev/null @@ -1 +0,0 @@ -Pass parent debug session to child debug sessions using new DA API diff --git a/news/2 Fixes/4402.md b/news/2 Fixes/4402.md deleted file mode 100644 index c48ff1edad1f..000000000000 --- a/news/2 Fixes/4402.md +++ /dev/null @@ -1 +0,0 @@ -Use the correct activation script for conda environments diff --git a/news/2 Fixes/4866.md b/news/2 Fixes/4866.md deleted file mode 100644 index cfb6f3e4d2e6..000000000000 --- a/news/2 Fixes/4866.md +++ /dev/null @@ -1 +0,0 @@ -Improve pipenv error messages (thanks [David Lechner](https://github.com/dlech)) diff --git a/news/2 Fixes/4966.md b/news/2 Fixes/4966.md deleted file mode 100644 index 9e03fd5b0842..000000000000 --- a/news/2 Fixes/4966.md +++ /dev/null @@ -1 +0,0 @@ -getRemoteLauncherCommand should wrap path to ptvsd_launcher.py in quotes diff --git a/news/2 Fixes/5129.md b/news/2 Fixes/5129.md deleted file mode 100644 index 3925ef3f0552..000000000000 --- a/news/2 Fixes/5129.md +++ /dev/null @@ -1 +0,0 @@ -Reliably end test tasks in Azure Pipelines. diff --git a/news/2 Fixes/5171.md b/news/2 Fixes/5171.md deleted file mode 100644 index daf2063644ff..000000000000 --- a/news/2 Fixes/5171.md +++ /dev/null @@ -1,2 +0,0 @@ -Append `--pre` to black installation command so pipenv can properly resolve it. -(thanks [Erin O'Connell](https://github.com/erinxocon)) diff --git a/news/2 Fixes/5236.md b/news/2 Fixes/5236.md deleted file mode 100644 index 2ba2ca11f8ab..000000000000 --- a/news/2 Fixes/5236.md +++ /dev/null @@ -1 +0,0 @@ -Make background cell color useable in all themes. \ No newline at end of file diff --git a/news/2 Fixes/5278.md b/news/2 Fixes/5278.md deleted file mode 100644 index 9fbfad3a09e9..000000000000 --- a/news/2 Fixes/5278.md +++ /dev/null @@ -1 +0,0 @@ -Filtered rows shows 'fetching' instead of No rows. \ No newline at end of file diff --git a/news/2 Fixes/5313.md b/news/2 Fixes/5313.md deleted file mode 100644 index a790cbba99ca..000000000000 --- a/news/2 Fixes/5313.md +++ /dev/null @@ -1 +0,0 @@ -Always show pytest's output when it fails. diff --git a/news/2 Fixes/5387.md b/news/2 Fixes/5387.md deleted file mode 100644 index 02aa911f7a03..000000000000 --- a/news/2 Fixes/5387.md +++ /dev/null @@ -1 +0,0 @@ -Value 'None' sometimes shows up in the Count column of the variable explorer \ No newline at end of file diff --git a/news/2 Fixes/5395.md b/news/2 Fixes/5395.md deleted file mode 100644 index 3a5c8f629e77..000000000000 --- a/news/2 Fixes/5395.md +++ /dev/null @@ -1 +0,0 @@ -Multi-dimensional arrays don't open in the data viewer. \ No newline at end of file diff --git a/news/2 Fixes/5414.md b/news/2 Fixes/5414.md deleted file mode 100644 index ecb0fb690c81..000000000000 --- a/news/2 Fixes/5414.md +++ /dev/null @@ -1 +0,0 @@ -Fix sorting of lists with numbers and missing entries. \ No newline at end of file diff --git a/news/2 Fixes/5420.md b/news/2 Fixes/5420.md deleted file mode 100644 index 6d4600f32ea1..000000000000 --- a/news/2 Fixes/5420.md +++ /dev/null @@ -1 +0,0 @@ -Fix error with bad len() values in variable explorer \ No newline at end of file diff --git a/news/2 Fixes/5433.md b/news/2 Fixes/5433.md deleted file mode 100644 index 8d0326e43226..000000000000 --- a/news/2 Fixes/5433.md +++ /dev/null @@ -1 +0,0 @@ -Fix python 2.7 and 3.5 variable explorer nightly tests \ No newline at end of file diff --git a/news/2 Fixes/5437.md b/news/2 Fixes/5437.md deleted file mode 100644 index 0fc268ed69c2..000000000000 --- a/news/2 Fixes/5437.md +++ /dev/null @@ -1,2 +0,0 @@ -Remove trailing commas from JSON files. -(thanks [Romain](https://github.com/quarthex)) diff --git a/news/2 Fixes/5452.md b/news/2 Fixes/5452.md deleted file mode 100644 index fb64be9c1b1a..000000000000 --- a/news/2 Fixes/5452.md +++ /dev/null @@ -1 +0,0 @@ -Handle missing index columns and non trivial data types for columns. \ No newline at end of file diff --git a/news/2 Fixes/5480.md b/news/2 Fixes/5480.md deleted file mode 100644 index b69a94d1678e..000000000000 --- a/news/2 Fixes/5480.md +++ /dev/null @@ -1 +0,0 @@ -Fix ignoreVscodeTheme to play along with dynamic theme updates. Also support setting in the variable explorer. \ No newline at end of file diff --git a/news/2 Fixes/5486.md b/news/2 Fixes/5486.md deleted file mode 100644 index 087ef51c57b1..000000000000 --- a/news/2 Fixes/5486.md +++ /dev/null @@ -1 +0,0 @@ -Fix matplotlib updating for dark theme after restarting \ No newline at end of file diff --git a/news/2 Fixes/5496.md b/news/2 Fixes/5496.md deleted file mode 100644 index 35475ce66ad9..000000000000 --- a/news/2 Fixes/5496.md +++ /dev/null @@ -1,2 +0,0 @@ -Add dev flag to poetry installer. -(thanks [Yan Pashkovsky](https://github.com/Yanpas)) diff --git a/news/2 Fixes/5579.md b/news/2 Fixes/5579.md deleted file mode 100644 index a49f1c171703..000000000000 --- a/news/2 Fixes/5579.md +++ /dev/null @@ -1 +0,0 @@ -Corrected analysisOptions.ts bug diff --git a/news/2 Fixes/5586.md b/news/2 Fixes/5586.md deleted file mode 100644 index 7f51aaa5ff68..000000000000 --- a/news/2 Fixes/5586.md +++ /dev/null @@ -1 +0,0 @@ -Fix problems if other language kernels are installed that are using python under the covers (bash is one such example). \ No newline at end of file diff --git a/news/2 Fixes/5631.md b/news/2 Fixes/5631.md deleted file mode 100644 index 43bf813fcbc4..000000000000 --- a/news/2 Fixes/5631.md +++ /dev/null @@ -1 +0,0 @@ -Allow collapsed code to affect intellisense. \ No newline at end of file diff --git a/news/2 Fixes/5637.md b/news/2 Fixes/5637.md deleted file mode 100644 index fb63060cb073..000000000000 --- a/news/2 Fixes/5637.md +++ /dev/null @@ -1 +0,0 @@ -Eliminate search support in the mini-editors in the Python Interactive window. \ No newline at end of file diff --git a/news/2 Fixes/5697.md b/news/2 Fixes/5697.md deleted file mode 100644 index 03f55139e568..000000000000 --- a/news/2 Fixes/5697.md +++ /dev/null @@ -1 +0,0 @@ -Fix perf problem with intellisense. \ No newline at end of file diff --git a/news/3 Code Health/4024.md b/news/3 Code Health/4024.md deleted file mode 100644 index 036c5e80a288..000000000000 --- a/news/3 Code Health/4024.md +++ /dev/null @@ -1 +0,0 @@ -Deprecate [travis](https://travis-ci.org/) in favor of [Azure Pipelines](https://azure.microsoft.com/en-us/services/devops/pipelines/). \ No newline at end of file diff --git a/news/3 Code Health/5090.md b/news/3 Code Health/5090.md deleted file mode 100644 index f494887f5ba1..000000000000 --- a/news/3 Code Health/5090.md +++ /dev/null @@ -1 +0,0 @@ -Smoke Tests must be run on nightly and CI on Azdo diff --git a/news/3 Code Health/5430.md b/news/3 Code Health/5430.md deleted file mode 100644 index 939686b1bc0b..000000000000 --- a/news/3 Code Health/5430.md +++ /dev/null @@ -1 +0,0 @@ -Increase timeout and retries in Jupyter wait for idle \ No newline at end of file diff --git a/news/3 Code Health/5476.md b/news/3 Code Health/5476.md deleted file mode 100644 index 2fa8d30326fa..000000000000 --- a/news/3 Code Health/5476.md +++ /dev/null @@ -1 +0,0 @@ -Update manual test plan for Variable Explorer and Data Viewer \ No newline at end of file diff --git a/news/3 Code Health/5523.md b/news/3 Code Health/5523.md deleted file mode 100644 index 15ea0b884677..000000000000 --- a/news/3 Code Health/5523.md +++ /dev/null @@ -1 +0,0 @@ -Auto-update version number in `CHANGELOG.md` in the CI pipeline. \ No newline at end of file diff --git a/news/3 Code Health/5538.md b/news/3 Code Health/5538.md deleted file mode 100644 index f0e88466deb7..000000000000 --- a/news/3 Code Health/5538.md +++ /dev/null @@ -1 +0,0 @@ -Fix security issues. \ No newline at end of file diff --git a/news/3 Code Health/5651.md b/news/3 Code Health/5651.md deleted file mode 100644 index ad830104baf2..000000000000 --- a/news/3 Code Health/5651.md +++ /dev/null @@ -1 +0,0 @@ -Send logging output into a text file on CI server. diff --git a/package-lock.json b/package-lock.json index a33925305276..fdce826e48fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "python", - "version": "2019.5.0-dev", + "version": "2019.5.0-rc", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -6728,7 +6728,7 @@ }, "event-stream": { "version": "3.3.4", - "resolved": "http://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", "dev": true, "requires": { @@ -12347,7 +12347,7 @@ "dependencies": { "convert-source-map": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", + "resolved": false, "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", "dev": true, "requires": { @@ -12356,7 +12356,7 @@ }, "execa": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "resolved": false, "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, "requires": { @@ -12382,7 +12382,7 @@ }, "find-up": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "resolved": false, "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { @@ -12397,7 +12397,7 @@ }, "get-stream": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "resolved": false, "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "dev": true, "requires": { @@ -12406,7 +12406,7 @@ }, "glob": { "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "resolved": false, "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", "dev": true, "requires": { @@ -12420,7 +12420,7 @@ }, "locate-path": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "resolved": false, "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { @@ -12440,7 +12440,7 @@ }, "os-locale": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "resolved": false, "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", "dev": true, "requires": { @@ -12451,7 +12451,7 @@ }, "path-exists": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "resolved": false, "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", "dev": true }, @@ -12463,7 +12463,7 @@ }, "pkg-dir": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "resolved": false, "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, "requires": { @@ -12472,7 +12472,7 @@ }, "pump": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "resolved": false, "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "requires": { @@ -12488,13 +12488,13 @@ }, "resolve-from": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "resolved": false, "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, "rimraf": { "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "resolved": false, "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, "requires": { @@ -13681,7 +13681,7 @@ }, "queue": { "version": "3.1.0", - "resolved": "http://registry.npmjs.org/queue/-/queue-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/queue/-/queue-3.1.0.tgz", "integrity": "sha1-bEnQHwCeIlZ4h4nyv/rGuLmZBYU=", "dev": true, "requires": { diff --git a/package.json b/package.json index e94bfd9d7700..066ebc15e5aa 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": "2019.5.0-dev", + "version": "2019.5.0-rc", "languageServerVersion": "0.2.62", "publisher": "ms-python", "author": {