Releases: microsoft/vscode-python
Releases · microsoft/vscode-python
2021.3.680753044
2021.3.1 (23 March 2021)
Fixes
- Fix link to create a new Jupyter notebook in Python start page.
(#15621) - Upgrade to latest
jedi-language-server
and use it for python >= 3.6. Usejedi<0.18
for python 2.7 and <=3.5.
(#15724) - Check if Python executable file exists instead of launching the Python process.
(#15725) - Fix for Go to definition needs to be pressed twice.
(thanks djplt)
(#15727)
2021.3.658691958
2021.3.0 (16 March 2021)
Enhancements
- Activate the extension when the following files are found:
Pipfile
,setup.py
,requirements.txt
,manage.py
,app.py
(thanks Dhaval Soneji)
(#4765) - Add optional user-level
python.tensorBoard.logDirectory
setting. When starting a TensorBoard session, use this setting if it is present instead of prompting the user to select a log directory.
(#15476)
Fixes
- Fix nosetests to run tests only once. (thanks djplt)
(#6043) - Make on-enter behaviour after
raise
much more like that ofreturn
, fixing
handling in the case of pressing enter to wrap the parentheses of an exception
call.
(thanks PeterJCLaw)
(#10583) - Add configuration debugpyPath. (thanks djplt)
(#14631) - Fix Mypy linter pointing to wrong column number (off by one).
(thanks anttipessa, haalto, JeonCD and junskU)
(#14978) - Show each python.org install only once on Mac when in discovery experiment.
(#15302) - All relative interpreter path reported start with
~
when in discovery experiment.
(#15312) - Remove FLASK_DEBUG from flask debug configuration to allow reload.
(#15373) - Install using pipenv only if the selected environment is pipenv which is related to workspace folder, when in discovery experiment.
(#15489) - Fixes issue with detecting new installations of Windows Store python.
(#15541) - Add
cached-property
package to bundled python packages. This is needed byjedi-language-server
running onpython 3.6
andpython 3.7
.
(#15566) - Remove limit on workspace symbols when using Jedi language server.
(#15576) - Use shorter paths for python interpreter when possible.
(#15580) - Ensure that jedi language server uses jedi shipped with the extension.
(#15586) - Updates to Proposed API, and fix the failure in VS Code Insider tests.
(#15638)
Code Health
-
Add support for "Trusted Workspaces".
"Trusted Workspaces" is an upcoming feature in VS Code. (See:
microsoft/vscode#106488.) For now you need
the following for the experience:- the latest VS Code Insiders
- add
"workspace.trustEnabled": true
to your user settings.json
At that point, when the Python extension would normally activate, VS Code
will prompt you about whether or not the current workspace is trusted.
If not then the extension will be disabled (but only for that workspace).
As soon as the workspace is marked as trusted, the extension will
activate.
(#15525) -
Updates to the VSCode Notebook API.
(#15567) -
Fix failing smoke tests on CI.
(#15573) -
Update VS Code engine to 1.54.0
(#15604) -
Use
onReady
method available on language client to ensure language server is ready.
(#15612)
2021.2.636928669
2021.2.633441544
2021.2.3 (8 March 2021)
Fixes
- Add event handlers to stream error events to prevent process from exiting due to errors in process stdout & stderr streams.
(#15395)
2021.2.625869727
2021.2.582707922
2021.2.576481509
2021.2.0 (17 February 2021)
Enhancements
- Use Language Server Protocol to work with Jedi.
(#11995)
Fixes
- Don't suggest insiders program nor show start page when in Codespaces.
(#14833) - Fix description of
Pyramid
debug config.
(thanks vvijayalakshmi21)
(#5479) - Refactored the Enable Linting command to provide the user with a choice of "Enable" or "Disable" linting to make it more intuitive. (thanks henryboisdequin)
(#8800) - Fix marketplace links in popups opening a non-browser VS Code instance in Codespaces.
(#14264) - Fixed the error command suggested when attempting to use "debug tests" configuration
(Thanks Shahzaib paracha)
(#14729) - Single test run fails sometimes if there is an error in unrelated file imported during discovery.
(thanks Szymon Janota)
(#15147) - Re-enable localization on the start page. It was accidentally
disabled in October when the Jupyter extension was split out.
(#15232) - Ensure target environment is activated in the terminal when running install scripts.
(#15285) - Allow support for using notebook APIs in the VS code stable build.
(#15364)
Code Health
- Raised the minimum required VS Code version to 1.51.
(#15237)
2021.1.502429796
2021.1.0 (21 January 2021)
Enhancements
- Remove code snippets (you can copy the
old snippets
and use them as
your own snippets).
(#14781) - Add PYTHONPATH to the language server settings response.
(#15106) - Integration with the bandit linter will highlight the variable, function or method for an issue instead of the entire line.
Requires latest version of the bandit package to be installed.
(thanks Anthony Shaw)
(#15003) - Translated some more of the Python Extension messages in Simplified Chinese.
(thanks Shinoyasan)
(#15079) - Update Simplified Chinese translation.
(thanks Fiftysixtimes7)
(#14997)
Fixes
- Fix environment variables not refreshing on env file edits.
(#3805) - fix npm audit[high]: Remote Code Execution
(#14640) - Ignore false positives when scraping environment variables.
(#14812) - Fix unittest discovery when using VS Code Insiders by using Inversify's
skipBaseClassChecks
option.
(#14962) - Make filtering in findInterpretersInDir() faster.
(#14983) - Remove the Buffer() is deprecated warning from Developer tools. (#15045)
(#15045) - Add support for pytest 6 options.
(#15094)
Code Health
- Update to Node 12.20.0.
(#15046)