Releases: microsoft/vscode-python
Releases · microsoft/vscode-python
2020.11.371526539
2020.11.367453362
2020.11.358366026
2020.11.0 (11 November 2020)
Enhancements
- Update shipped debugger wheels to python 3.8.
(#14614)
Fixes
- Update the logic for parsing and sending selected code to the REPL.
(#14048) - Fix "TypeError: message must be set" error when debugging with
pytest
.
(#14067) - When sending code to the REPL, read input from
sys.stdin
instead of passing it as an argument.
(#14471)
Code Health
- Code for Jupyter Notebooks support has been refactored into the Jupyter extension, which is now a dependency for the Python extension
2020.10.332292344
2020.10.0 (27 October 2020)
Enhancements
debugpy
updated to latest stable version.- Make data viewer openable from the variables window context menu while debugging.
(#14406) - Do not opt users out of the insiders program if they have a stable version installed.
(#14090)
Fixes
- Make sure not to set
__file__
unless necessary as this can mess up some modules (like multiprocessing).
(#12530) - Fix isolate script to only remove current working directory.
(#13942) - Make sure server name and kernel name show up when connecting.
(#13955) - Have Custom Editors load on editor show unless autostart is disabled.
(#14016) - For exporting, first check the notebook or interactive window interpreter before the jupyter selected interpreter.
(#14143) - Fix interactive debugging starting (trimQuotes error).
(#14212) - Use the kernel defined in the metadata of Notebook instead of using the default workspace interpreter.
(#14213) - Fix latex output not showing up without a 'display' call.
(#14216) - Fix markdown cell marker when exporting a notebook to a Python script.
(#14359)
Code Health
2020.9.114305
2020.9.112786
2020.9.111407
2020.9.0 (23 September 2020)
Enhancements
- Docstrings are added to
class
anddef
snippets (thanks alannt777).
(#5578) - Upgraded isort to
5.3.2
.
(#12932) - Remove default "--no-reload" from debug configurations.
(thanks ian910297)
(#13061) - Update API to expose events for cell excecution and kernel restart.
(#13306) - Show a general warning prompt pointing to the upgrade guide when users attempt to run isort5 using deprecated settings.
(#13716) - Upgrade isort to
5.5.2
.
(#13831) - Enable custom editor support in stable VS code at 20%.
(#13890) - Upgraded to isort
5.5.3
.
(#14027)
Fixes
- Fixed the output being trimmed. Tables that start with empty space will now display correctly.
(#10270) - #11729
Prevent test discovery from picking up stdout from low level file descriptors.
(thanks Ryo Miyajima)
(#11729) - Fix opening new blank notebooks when using the VS code custom editor API.
(#12245) - Support starting kernels with the same directory as the notebook.
(#12760) - Fixed
Sort imports
command with setuptools version49.2
.
(#12949) - Do not fail interpreter discovery if accessing Windows registry fails.
(#12962) - Show error output from nbconvert when exporting a notebook fails.
(#13229) - Prevent daemon from trying to prewarm an execution service.
(#13258) - Respect stop on error setting for executing cells in native notebook.
(#13338) - Native notebook launch doesn't hang if the kernel does not start, and notifies the user of the failure. Also does not show the first cell as executing until the kernel is actually started and connected.
(#13409) - Fix path to isolated script on Windows shell_exec.
(#13493) - Updating other cells with display.update does not work in native notebooks.
(#13509) - Fix for notebook using the first kernel every time. It will now use the language in the notebook to determine the most appropriate kernel.
(#13520) - Shift+enter should execute current cell and select the next cell.
(#13553) - Fixes typo in export command registration.
(thanks Anton Kosyakov)
(#13612) - Fix the behavior of the 'python.showStartPage' setting.
(#13706) - Correctly install ipykernel when launching from an interpreter.
(#13956) - Backup on custom editors is being ignored.
(#13981)
Code Health
- Fix bandit issues in vscode_datascience_helpers.
(#13103) - Cast type to
any
to get around issues withts-node
(ts-node
is used bynyc
for code coverage).
(#13411) - Drop support for Python 3.5 (it reaches end-of-life on September 13, 2020 and isort 5 does not support it).
(#13459) - Fix nightly flake test issue with timeout waiting for kernel.
(#13501) - Disable sorting tests for Python 2.7 as isort5 is not compatible with Python 2.7.
(#13542) - Fix nightly flake test current directory failing test.
(#13605) - Rename the
master
branch tomain
.
(#13645) - Remove usage of the terms "blacklist" and "whitelist".
(#13647) - Fix a test failure and warning when running test adapter tests under pytest 5.
(#13726) - Remove unused imports from data science ipython test files.
(#13729) - Fix nighly failure with beakerx.
(#13734)