diff --git a/CHANGELOG.md b/CHANGELOG.md index 99392e6969c7..471dec73356f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog -## 2020.7.0-rc (8 July 2020) +## 2020.7.1 (22 July 2020) + +1. Fix language server setting when provided an invalid value, send config event more consistently. + ([#13064](https://github.com/Microsoft/vscode-python/pull/13064)) +1. Add banner for pylance, and remove old LS experiment. + ([#12817](https://github.com/microsoft/vscode-python/pull/12817)) + +## 2020.7.0 (16 July 2020) ### Enhancements @@ -9,7 +16,8 @@ ([#9679](https://github.com/Microsoft/vscode-python/issues/9679)) 1. Added "argsExpansion" to debugpy launch.json schema. ([#11678](https://github.com/Microsoft/vscode-python/issues/11678)) -1. The extension will now automatically load if a `pyproject.toml` file is present in the workspace root directory. (@BrandonLWhite) +1. The extension will now automatically load if a `pyproject.toml` file is present in the workspace root directory. + (thanks [Brandon White](https://github.com/BrandonLWhite)) ([#12056](https://github.com/Microsoft/vscode-python/issues/12056)) 1. Add ability to check and update whether a notebook is trusted. ([#12146](https://github.com/Microsoft/vscode-python/issues/12146)) @@ -29,10 +37,12 @@ ([#12611](https://github.com/Microsoft/vscode-python/issues/12611)) 1. Include the JUPYTER_PATH environment variable when searching the disk for kernels. ([#12694](https://github.com/Microsoft/vscode-python/issues/12694)) -1. Added exporting to python, HTML and PDF from the interative window. +1. Added exporting to python, HTML and PDF from the interactive window. ([#12732](https://github.com/Microsoft/vscode-python/issues/12732)) 1. Show a prompt asking user to upgrade Code runner to new version to keep using it when in Deprecate PythonPath experiment. ([#12764](https://github.com/Microsoft/vscode-python/issues/12764)) +1. Opening notebooks in the preview Notebook editor for [Visual Studio Code Insiders](https://code.visualstudio.com/insiders/). + ([#10496](https://github.com/Microsoft/vscode-python/issues/10496)) ### Fixes @@ -40,6 +50,8 @@ ([#10579](https://github.com/Microsoft/vscode-python/issues/10579)) 1. Provided a method for external partners to participate in jupyter server URI picking/authentication. ([#10993](https://github.com/Microsoft/vscode-python/issues/10993)) +1. Check for hideFromUser before activating current terminal. + ([#11122](https://github.com/Microsoft/vscode-python/issues/11122)) 1. In Markdown cells, turn HTML links to markdown links so that nteract renders them. ([#11254](https://github.com/Microsoft/vscode-python/issues/11254)) 1. Prevent incorrect ipywidget display (double plots) due to synchronization issues. @@ -85,6 +97,10 @@ ([#12588](https://github.com/Microsoft/vscode-python/issues/12588)) 1. Open variable explorer when opening variable explorer during debugging. ([#12773](https://github.com/Microsoft/vscode-python/issues/12773)) +1. Use the given interpreter for launching the non-daemon python + ([#12821](https://github.com/Microsoft/vscode-python/issues/12821)) +1. Correct the color of the 'Collapse All' button in the Interactive Window + ([#12838](https://github.com/microsoft/vscode-python/issues/12838)) ### Code Health @@ -115,6 +131,10 @@ ([#12656](https://github.com/Microsoft/vscode-python/issues/12656)) 1. Add more telemetry for "Select Interpreter" command. ([#12722](https://github.com/Microsoft/vscode-python/issues/12722)) +1. Add tests for trusted notebooks. + ([#12554](https://github.com/Microsoft/vscode-python/issues/12554)) +1. Update categories in `package.json`. + ([#12844](https://github.com/Microsoft/vscode-python/issues/12844)) ### Thanks diff --git a/news/1 Enhancements/10496.md b/news/1 Enhancements/10496.md deleted file mode 100644 index e486012325cb..000000000000 --- a/news/1 Enhancements/10496.md +++ /dev/null @@ -1,4 +0,0 @@ -Opening notebooks in the preview Notebook editor for [Visual Studio Code Insiders](https://code.visualstudio.com/insiders/). -* Install Python extension in the latest [Visual Studio Code Insiders](https://code.visualstudio.com/insiders/). -* Wait for `Python Extension` to get activated (e.g. open a `Python` file). -* Right click on an `*.ipynb (Jupyter Notebook)` file and select `Open in preview Notebook Editor`. diff --git a/news/2 Fixes/11122.md b/news/2 Fixes/11122.md deleted file mode 100644 index 7304c9aac45a..000000000000 --- a/news/2 Fixes/11122.md +++ /dev/null @@ -1 +0,0 @@ -Check for hideFromUser before activating current terminal. diff --git a/news/2 Fixes/12821.md b/news/2 Fixes/12821.md deleted file mode 100644 index 5951593948e9..000000000000 --- a/news/2 Fixes/12821.md +++ /dev/null @@ -1 +0,0 @@ -Use the given interpreter for launching the non-daemon python \ No newline at end of file diff --git a/news/3 Code Health/12554.md b/news/3 Code Health/12554.md deleted file mode 100644 index 926f9f320057..000000000000 --- a/news/3 Code Health/12554.md +++ /dev/null @@ -1 +0,0 @@ -Add tests for trusted notebooks. diff --git a/news/3 Code Health/12844.md b/news/3 Code Health/12844.md deleted file mode 100644 index 004246586d91..000000000000 --- a/news/3 Code Health/12844.md +++ /dev/null @@ -1 +0,0 @@ -Update categories in `package.json`. diff --git a/package.json b/package.json index b6fda86c6079..82b9d636cd1e 100644 --- a/package.json +++ b/package.json @@ -3532,4 +3532,4 @@ "publisherDisplayName": "Microsoft", "publisherId": "998b010b-e2af-44a5-a6cd-0b5fd3b9b6f8" } -} \ No newline at end of file +}