|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 2020.2.2 (18 February 2020) |
| 4 | + |
| 5 | +### Fixes |
| 6 | + |
| 7 | +1. Improve error messaging when the jupyter notebook cannot be started. |
| 8 | + ([#9904](https://github.com/Microsoft/vscode-python/issues/9904)) |
| 9 | +1. Clear variables in notebooks and interactive-window when restarting. |
| 10 | + ([#9991](https://github.com/Microsoft/vscode-python/issues/9991)) |
| 11 | +1. Re-install `Jupyter` instead of installing `kernelspec` if `kernelspec` cannot be found in the python environment. |
| 12 | + ([#10071](https://github.com/Microsoft/vscode-python/issues/10071)) |
| 13 | +1. Fixes problem with showing ndarrays in the data viewer. |
| 14 | + ([#10074](https://github.com/Microsoft/vscode-python/issues/10074)) |
| 15 | +1. Fix data viewer not opening on certain data frames. |
| 16 | + ([#10075](https://github.com/Microsoft/vscode-python/issues/10075)) |
| 17 | + |
| 18 | +### Code Health |
| 19 | + |
| 20 | +1. Add telemetry to track notebook languages |
| 21 | + ([#9819](https://github.com/Microsoft/vscode-python/issues/9819)) |
| 22 | +1. Telemetry around kernels not working and installs not working. |
| 23 | + ([#9883](https://github.com/Microsoft/vscode-python/issues/9883)) |
| 24 | +1. Change select kernel telemetry to track duration till quick pick appears. |
| 25 | + ([#10049](https://github.com/Microsoft/vscode-python/issues/10049)) |
| 26 | + |
| 27 | +### Thanks |
| 28 | + |
| 29 | +Thanks to the following projects which we fully rely on to provide some of |
| 30 | +our features: |
| 31 | + |
| 32 | +- [isort](https://pypi.org/project/isort/) |
| 33 | +- [jedi](https://pypi.org/project/jedi/) |
| 34 | + and [parso](https://pypi.org/project/parso/) |
| 35 | +- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server) |
| 36 | +- [ptvsd](https://pypi.org/project/ptvsd/) |
| 37 | +- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed) |
| 38 | +- [rope](https://pypi.org/project/rope/) (user-installed) |
| 39 | + |
| 40 | +Also thanks to the various projects we provide integrations with which help |
| 41 | +make this extension useful: |
| 42 | + |
| 43 | +- Debugging support: |
| 44 | + [Django](https://pypi.org/project/Django/), |
| 45 | + [Flask](https://pypi.org/project/Flask/), |
| 46 | + [gevent](https://pypi.org/project/gevent/), |
| 47 | + [Jinja](https://pypi.org/project/Jinja/), |
| 48 | + [Pyramid](https://pypi.org/project/pyramid/), |
| 49 | + [PySpark](https://pypi.org/project/pyspark/), |
| 50 | + [Scrapy](https://pypi.org/project/Scrapy/), |
| 51 | + [Watson](https://pypi.org/project/Watson/) |
| 52 | +- Formatting: |
| 53 | + [autopep8](https://pypi.org/project/autopep8/), |
| 54 | + [black](https://pypi.org/project/black/), |
| 55 | + [yapf](https://pypi.org/project/yapf/) |
| 56 | +- Interpreter support: |
| 57 | + [conda](https://conda.io/), |
| 58 | + [direnv](https://direnv.net/), |
| 59 | + [pipenv](https://pypi.org/project/pipenv/), |
| 60 | + [pyenv](https://github.com/pyenv/pyenv), |
| 61 | + [venv](https://docs.python.org/3/library/venv.html#module-venv), |
| 62 | + [virtualenv](https://pypi.org/project/virtualenv/) |
| 63 | +- Linting: |
| 64 | + [bandit](https://pypi.org/project/bandit/), |
| 65 | + [flake8](https://pypi.org/project/flake8/), |
| 66 | + [mypy](https://pypi.org/project/mypy/), |
| 67 | + [prospector](https://pypi.org/project/prospector/), |
| 68 | + [pylint](https://pypi.org/project/pylint/), |
| 69 | + [pydocstyle](https://pypi.org/project/pydocstyle/), |
| 70 | + [pylama](https://pypi.org/project/pylama/) |
| 71 | +- Testing: |
| 72 | + [nose](https://pypi.org/project/nose/), |
| 73 | + [pytest](https://pypi.org/project/pytest/), |
| 74 | + [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) |
| 75 | + |
| 76 | +And finally thanks to the [Python](https://www.python.org/) development team and |
| 77 | +community for creating a fantastic programming language and community to be a |
| 78 | +part of! |
| 79 | + |
3 | 80 | ## 2020.2.1 (12 February 2020) |
4 | 81 |
|
5 | 82 | ### Fixes |
|
0 commit comments