You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
2020.2.0 (11 February 2020)
Enhancements
Support opting in and out of an experiment group.
(#6816)
Add python.languageServer setting with values of Jedi (acts same as jediEnabled), Microsoft for the Microsoft Python Language Server and None, which suppresses
editor support in the extension so neither Jedi nor Microsoft Python Language Server
start. None is useful for those users who prefer using other extensions for the
editor functionality.
(#7010)
Automatically start the Jupyter server when opening a notebook or the interative window, or when either of those has happened in the last 7 days. This behavior can be disabled with the 'python.dataScience.disableJupyterAutoStart' setting.
(#7232)
Add support for rendering local images within markdown cells in the Notebook Editor.
(#7704)
Add progress indicator for starting of jupyter with details of each stage.
(#7868)
Use a dedicated Python Interpreter for starting Jupyter Notebook Server.
This can be changed using the command Select Interpreter to start Jupyter server from the Command Palette.
(#8623)
Implement pid quick pick for attach cases with the new debug adapter.
(#8701)
Provide attach to pid configuration via picker.
(#8702)
Removed unnecessary warning when executing cells that use Scrapbook,
Fix an html crash when using not supported mime types
(#9796)
Fixed the focus on the interactive window when pressing ctrl + 1/ ctrl + 2
(#9693)
Fix variable explorer in Interactive and Notebook editors from interfering with execution.
(#5980)
Fix a crash when using pytest to discover doctests with unknown line number.
(thanks Olivier Grisel)
(#7487)
Don't show any install product prompts if interpreter is not selected.
(#7750)
Allow PYTHONWARNINGS to be set and not have it interfere with the launching of Jupyter notebooks.
(#8496)
Pressing Esc in the config quickpick now cancels debugging.
(#8626)
Support resolveCompletionItem so that we can get Jedi docstrings in Notebook Editor and Interactive Window.
(#8706)
Disable interrupt, export, and restart buttons when already performing an interrupt, export, or restart for Notebooks and the Interactive window.
(#8716)
Icons now cannot be overwritten by styles in cell outputs.
(#8946)
Command palette (and other keyboard shortcuts) don't work from the Interactive/Notebook editor in the insider's build (or when setting 'useWebViewServer').
(#8976)
Fix issue that prevented language server diagnostics from being published.
(#9096)
Fixed the native editor toolbar so it won't overlap.
(#9140)
Selectively render output and monaco editor to improve performance.
(#9204)
Set test debug console default to be internalConsole.
(#9259)
Fix the Data Science "Enable Plot Viewer" setting to pass figure_formats correctly when turned off.
(#9420)
Shift+Enter can no longer send multiple lines to the interactive window.
(#9437)
Shift+Enter can no longer run code in the terminal.
(#9439)
Scrape output to get the details of the registered kernel.
(#9444)
Update ptvsd debugger to version v5.0.0a11. Fixes signing for inject_dll_x86.exe.
(#9474)