diff --git a/CHANGELOG.md b/CHANGELOG.md index 44aec3b2bee4..8db19843d850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,18 @@ ### Fixes -1. Fix issue where downloading ipywidgets from the CDN might be busy. - ([#11274](https://github.com/Microsoft/vscode-python/issues/11274)) -1. Error: Timeout is shown after running any widget more than once. - ([#11334](https://github.com/Microsoft/vscode-python/issues/11334)) +1. Use node FS APIs when searching for python. This is a temporary change until VSC FS APIs are fixed. + ([#10850](https://github.com/Microsoft/vscode-python/issues/10850)) 1. Show unhandled widget messages in the jupyter output window. ([#11239](https://github.com/Microsoft/vscode-python/issues/11239)) 1. Warn when using a version of the widget `qgrid` greater than `1.1.1` with the recommendation to downgrade to `1.1.1`. ([#11245](https://github.com/Microsoft/vscode-python/issues/11245)) +1. Allow user modules import when discovering tests. + ([#11264](https://github.com/Microsoft/vscode-python/issues/11264)) +1. Fix issue where downloading ipywidgets from the CDN might be busy. + ([#11274](https://github.com/Microsoft/vscode-python/issues/11274)) +1. Error: Timeout is shown after running any widget more than once. + ([#11334](https://github.com/Microsoft/vscode-python/issues/11334)) 1. Change "python.dataScience.runStartupCommands" commands to be a global setting, not a workspace setting. ([#11352](https://github.com/Microsoft/vscode-python/issues/11352)) diff --git a/news/2 Fixes/10850.md b/news/2 Fixes/10850.md deleted file mode 100644 index aca13b3320b5..000000000000 --- a/news/2 Fixes/10850.md +++ /dev/null @@ -1 +0,0 @@ -Use node FS APIs when searching for python. This is a temporary change until VSC FS APIs are fixed. diff --git a/news/2 Fixes/11264.md b/news/2 Fixes/11264.md deleted file mode 100644 index 36873e9c5dd7..000000000000 --- a/news/2 Fixes/11264.md +++ /dev/null @@ -1 +0,0 @@ -Allow user modules import when discovering tests. diff --git a/package-lock.json b/package-lock.json index 370823673871..031601c83b56 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "python", - "version": "2020.4.0", + "version": "2020.4.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ff36ef99972b..68294de03da3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "python", "displayName": "Python", "description": "Linting, Debugging (multi-threaded, remote), Intellisense, Jupyter Notebooks, code formatting, refactoring, unit tests, snippets, and more.", - "version": "2020.4.0", + "version": "2020.4.1", "languageServerVersion": "0.5.30", "publisher": "ms-python", "enableProposedApi": false,