|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 2021.9.1 (9 September 2021) |
| 4 | + |
| 5 | +### Fixes |
| 6 | + |
| 7 | +1. Ensure default python executable to use is 'python' instead of ''. |
| 8 | + ([#17089](https://github.com/Microsoft/vscode-python/issues/17089)) |
| 9 | +1. Ensure workspace interpreters are discovered and watched when in `pythonDiscoveryModuleWithoutWatcher` experiment. |
| 10 | + ([#17144](https://github.com/Microsoft/vscode-python/issues/17144)) |
| 11 | +1. Do path comparisons appropriately in the new discovery component. |
| 12 | + ([#17244](https://github.com/Microsoft/vscode-python/issues/17244)) |
| 13 | +1. Fix for unable to import when running unittest. |
| 14 | + ([#17280](https://github.com/Microsoft/vscode-python/issues/17280)) |
| 15 | +1. Fix for multiple folders in `pytest` args. |
| 16 | + ([#17281](https://github.com/Microsoft/vscode-python/issues/17281)) |
| 17 | +1. Fix issue with incomplete `unittest` runs. |
| 18 | + ([#17282](https://github.com/Microsoft/vscode-python/issues/17282)) |
| 19 | +1. Improve detecting lines when using testing wrappers. |
| 20 | + ([#17285](https://github.com/Microsoft/vscode-python/issues/17285)) |
| 21 | +1. Ensure we trigger discovery for the first time as part of extension activation. |
| 22 | + ([#17303](https://github.com/Microsoft/vscode-python/issues/17303)) |
| 23 | +1. Missing location info for `async def` functions. |
| 24 | + ([#17309](https://github.com/Microsoft/vscode-python/issues/17309)) |
| 25 | +1. For CI ensure `tensorboard` is installed in python 3 environments only. |
| 26 | + ([#17325](https://github.com/Microsoft/vscode-python/issues/17325)) |
| 27 | + |
| 28 | +### Thanks |
| 29 | + |
| 30 | +Thanks to the following projects which we fully rely on to provide some of |
| 31 | +our features: |
| 32 | + |
| 33 | +- [debugpy](https://pypi.org/project/debugpy/) |
| 34 | +- [isort](https://pypi.org/project/isort/) |
| 35 | +- [jedi](https://pypi.org/project/jedi/) |
| 36 | + and [parso](https://pypi.org/project/parso/) |
| 37 | +- [jedi-language-server](https://pypi.org/project/jedi-language-server/) |
| 38 | +- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server) |
| 39 | +- [Pylance](https://github.com/microsoft/pylance-release) |
| 40 | +- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed) |
| 41 | +- [rope](https://pypi.org/project/rope/) (user-installed) |
| 42 | + |
| 43 | +Also thanks to the various projects we provide integrations with which help |
| 44 | +make this extension useful: |
| 45 | + |
| 46 | +- Debugging support: |
| 47 | + [Django](https://pypi.org/project/Django/), |
| 48 | + [Flask](https://pypi.org/project/Flask/), |
| 49 | + [gevent](https://pypi.org/project/gevent/), |
| 50 | + [Jinja](https://pypi.org/project/Jinja/), |
| 51 | + [Pyramid](https://pypi.org/project/pyramid/), |
| 52 | + [PySpark](https://pypi.org/project/pyspark/), |
| 53 | + [Scrapy](https://pypi.org/project/Scrapy/), |
| 54 | + [Watson](https://pypi.org/project/Watson/) |
| 55 | +- Formatting: |
| 56 | + [autopep8](https://pypi.org/project/autopep8/), |
| 57 | + [black](https://pypi.org/project/black/), |
| 58 | + [yapf](https://pypi.org/project/yapf/) |
| 59 | +- Interpreter support: |
| 60 | + [conda](https://conda.io/), |
| 61 | + [direnv](https://direnv.net/), |
| 62 | + [pipenv](https://pypi.org/project/pipenv/), |
| 63 | + [poetry](https://pypi.org/project/poetry/), |
| 64 | + [pyenv](https://github.com/pyenv/pyenv), |
| 65 | + [venv](https://docs.python.org/3/library/venv.html#module-venv), |
| 66 | + [virtualenv](https://pypi.org/project/virtualenv/) |
| 67 | +- Linting: |
| 68 | + [bandit](https://pypi.org/project/bandit/), |
| 69 | + [flake8](https://pypi.org/project/flake8/), |
| 70 | + [mypy](https://pypi.org/project/mypy/), |
| 71 | + [prospector](https://pypi.org/project/prospector/), |
| 72 | + [pylint](https://pypi.org/project/pylint/), |
| 73 | + [pydocstyle](https://pypi.org/project/pydocstyle/), |
| 74 | + [pylama](https://pypi.org/project/pylama/) |
| 75 | +- Testing: |
| 76 | + [pytest](https://pypi.org/project/pytest/), |
| 77 | + [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) |
| 78 | + |
| 79 | +And finally thanks to the [Python](https://www.python.org/) development team and |
| 80 | +community for creating a fantastic programming language and community to be a |
| 81 | +part of! |
| 82 | + |
3 | 83 | ## 2021.9.0 (1 September 2021)
|
4 | 84 |
|
5 | 85 | ### Enhancements
|
|
0 commit comments