Skip to content

2020.2.62710

Choose a tag to compare

released this 11 Feb 21:49
f2d788c

2020.2.0 (11 February 2020)

Enhancements

  1. Support opting in and out of an experiment group.
    (#6816)
  2. 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)
  3. 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)
  4. Add support for rendering local images within markdown cells in the Notebook Editor.
    (#7704)
  5. Add progress indicator for starting of jupyter with details of each stage.
    (#7868)
  6. 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)
  7. Implement pid quick pick for attach cases with the new debug adapter.
    (#8701)
  8. Provide attach to pid configuration via picker.
    (#8702)
  9. Support for custom python debug adapter.
    (#8720)
  10. Remove insiders re-enroll prompt.
    (#8775)
  11. Attach to pid picker - bodyblock users who are not in the new debugger experiment.
    (#8935)
  12. Pass -y to conda installer to disable the prompt to install, as user has already ok'ed this action.
    (#9194)
  13. Updated ptvsd debugger to version v5.0.0a12.
    (#9310)
  14. Use common code to manipulate notebook cells.
    (#9386)
  15. Add support for Find in the Notebook Editor.
    (#9470)
  16. Update Chinese (Traditional) translation.
    (thanks pan93412)
    (#9548)
  17. Look for Conda interpreters in '~/opt/conda/' directory as well.
    (#9701)

Fixes

  1. add --ip=127.0.0.1 argument of jupyter server when running in k8s container
    (#9976)
  2. Correct the server and kernel text for when not connected to a server.
    (#9933)
  3. Make sure to clear variable list on restart kernel.
    (#9740)
  4. Use the autoStart server when available.
    (#9926)
  5. Removed unnecessary warning when executing cells that use Scrapbook,
    Fix an html crash when using not supported mime types
    (#9796)
  6. Fixed the focus on the interactive window when pressing ctrl + 1/ ctrl + 2
    (#9693)
  7. Fix variable explorer in Interactive and Notebook editors from interfering with execution.
    (#5980)
  8. Fix a crash when using pytest to discover doctests with unknown line number.
    (thanks Olivier Grisel)
    (#7487)
  9. Don't show any install product prompts if interpreter is not selected.
    (#7750)
  10. Allow PYTHONWARNINGS to be set and not have it interfere with the launching of Jupyter notebooks.
    (#8496)
  11. Pressing Esc in the config quickpick now cancels debugging.
    (#8626)
  12. Support resolveCompletionItem so that we can get Jedi docstrings in Notebook Editor and Interactive Window.
    (#8706)
  13. Disable interrupt, export, and restart buttons when already performing an interrupt, export, or restart for Notebooks and the Interactive window.
    (#8716)
  14. Icons now cannot be overwritten by styles in cell outputs.
    (#8946)
  15. Command palette (and other keyboard shortcuts) don't work from the Interactive/Notebook editor in the insider's build (or when setting 'useWebViewServer').
    (#8976)
  16. Fix issue that prevented language server diagnostics from being published.
    (#9096)
  17. Fixed the native editor toolbar so it won't overlap.
    (#9140)
  18. Selectively render output and monaco editor to improve performance.
    (#9204)
  19. Set test debug console default to be internalConsole.
    (#9259)
  20. Fix the Data Science "Enable Plot Viewer" setting to pass figure_formats correctly when turned off.
    (#9420)
  21. Shift+Enter can no longer send multiple lines to the interactive window.
    (#9437)
  22. Shift+Enter can no longer run code in the terminal.
    (#9439)
  23. Scrape output to get the details of the registered kernel.
    (#9444)
  24. Update ptvsd debugger to version v5.0.0a11. Fixes signing for inject_dll_x86.exe.
    (#9474)
  25. Disable use of conda run.
    (#9490)
  26. Improvements to responsiveness of code completions in Notebook cells and Interactive Window.
    (#9494)
  27. Revert changes related to calling mypy with relative paths.
    (#9496)
  28. Remove default pathMappings for attach to local process by process Id.
    (#9533)
  29. Ensure event handler is bound to the right context.
    (#9539)
  30. Use the correct interpreter when creating the Python execution service used as a fallback by the Daemon.
    (#9566)
  31. Ensure environment variables are always strings in launch.json.
    (#9568)
  32. Fix error in developer console about serializing gather rules.
    (#9571)
  33. Do not open the output panel when building workspace symbols.
    (#9603)
  34. Use an activated environment python process to check if modules are installed.
    (#9643)
  35. When hidden 'useWebViewServer' is true, clicking on links in Notebook output don't work.
    (#9645)
  36. Always use latest version of the debugger when building extension.
    (#9652)
  37. Fix background for interactive window copy icon.
    (#9658)
  38. Fix text in markdown cells being lost when clicking away.
    (#9719)
  39. Fix debugging of Interactive Window cells. Don't start up a second notebook at Interactive Window startup.
    (#9780)
  40. When comitting intellisense in Notebook Editor with Jedi place code in correct position.
    (#9857)
  41. Ignore errors coming from stat(), where appropriate.
    (#9901)

Code Health

  1. Use prettier as the TypeScript formatter and Black as the Python formatter within the extension.
    (#2012)
  2. Use vanillajs for build scripts (instead of typescript, avoids the step of having to transpile).
    (#5674)
  3. Remove npx from webpack build as it breaks on windows on npm 6.11+ and doesn't seem to be getting fixes. Update npm to current version.
    (#7197)
  4. Clean up npm dependencies.
    (#8302)
  5. Update version of node to 12.4.0.
    (#8453)
  6. Use a hidden terminal to retrieve environment variables of an activated Python Interpreter.
    (#8928)
  7. Fix broken LiveShare connect via codewatcher test.
    (#9005)
  8. Refactor webpack build scripts to build DS bundles using separate config files.
    (#9055)
  9. Change how we handle keyboard input for our functional editor tests.
    (#9084)
  10. Fix working directory path verification for notebook tests.
    (#9191)
  11. Update Jedi to 0.15.2 and parso to 0.5.2.
    (#9243)
  12. Added a test performance measuring pipeline.
    (#9421)
  13. Audit existing telemetry events for datascience or ds_internal.
    (#9626)
  14. CI failure on Data science memoize-one dependency being removed.
    (#9646)
  15. Make sure to check dependencies during PRs.
    (#9714)