|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 2020.10.0-rc (14 October 2020) |
| 4 | + |
| 5 | +### Enhancements |
| 6 | + |
| 7 | +1. `debugpy` updated to stable version. |
| 8 | +1. Do not opt users out of the insiders program if they have a stable version installed. |
| 9 | + ([#14090](https://github.com/Microsoft/vscode-python/issues/14090)) |
| 10 | + |
| 11 | +### Fixes |
| 12 | + |
| 13 | +1. Make sure not to set `__file__` unless necessary as this can mess up some modules (like multiprocessing). |
| 14 | + ([#12530](https://github.com/Microsoft/vscode-python/issues/12530)) |
| 15 | +1. Fix isolate script to only remove current working directory. |
| 16 | + ([#13942](https://github.com/Microsoft/vscode-python/issues/13942)) |
| 17 | +1. Make sure server name and kernel name show up when connecting. |
| 18 | + ([#13955](https://github.com/Microsoft/vscode-python/issues/13955)) |
| 19 | +1. Have Custom Editors load on editor show unless autostart is disabled. |
| 20 | + ([#14016](https://github.com/Microsoft/vscode-python/issues/14016)) |
| 21 | +1. For exporting, first check the notebook or interactive window interpreter before the jupyter selected interpreter. |
| 22 | + ([#14143](https://github.com/Microsoft/vscode-python/issues/14143)) |
| 23 | +1. Fix interactive debugging starting (trimQuotes error). |
| 24 | + ([#14212](https://github.com/Microsoft/vscode-python/issues/14212)) |
| 25 | +1. Use the kernel defined in the metadata of Notebook instead of using the default workspace interpreter. |
| 26 | + ([#14213](https://github.com/Microsoft/vscode-python/issues/14213)) |
| 27 | +1. Fix latex output not showing up without a 'display' call. |
| 28 | + ([#14216](https://github.com/Microsoft/vscode-python/issues/14216)) |
| 29 | +1. Fix markdown cell marker when exporting a notebook to a Python script. |
| 30 | + ([#14359](https://github.com/Microsoft/vscode-python/issues/14359)) |
| 31 | + |
| 32 | +### Code Health |
| 33 | + |
| 34 | +1. Add Windows unit tests to the PR validation pipeline. |
| 35 | + ([#14013](https://github.com/Microsoft/vscode-python/issues/14013)) |
| 36 | +1. Functional test failures related to kernel ports overlapping. |
| 37 | + ([#14290](https://github.com/Microsoft/vscode-python/issues/14290)) |
| 38 | +1. Change message from `IPython kernel` to `Jupyter kernel`. |
| 39 | + ([#14309](https://github.com/Microsoft/vscode-python/issues/14309)) |
| 40 | + |
| 41 | +### Thanks |
| 42 | + |
| 43 | +Thanks to the following projects which we fully rely on to provide some of |
| 44 | +our features: |
| 45 | + |
| 46 | +- [debugpy](https://pypi.org/project/debugpy/) |
| 47 | +- [isort](https://pypi.org/project/isort/) |
| 48 | +- [jedi](https://pypi.org/project/jedi/) |
| 49 | + and [parso](https://pypi.org/project/parso/) |
| 50 | +- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server) |
| 51 | +- [Pylance](https://github.com/microsoft/pylance-release) |
| 52 | +- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed) |
| 53 | +- [rope](https://pypi.org/project/rope/) (user-installed) |
| 54 | + |
| 55 | +Also thanks to the various projects we provide integrations with which help |
| 56 | +make this extension useful: |
| 57 | + |
| 58 | +- Debugging support: |
| 59 | + [Django](https://pypi.org/project/Django/), |
| 60 | + [Flask](https://pypi.org/project/Flask/), |
| 61 | + [gevent](https://pypi.org/project/gevent/), |
| 62 | + [Jinja](https://pypi.org/project/Jinja/), |
| 63 | + [Pyramid](https://pypi.org/project/pyramid/), |
| 64 | + [PySpark](https://pypi.org/project/pyspark/), |
| 65 | + [Scrapy](https://pypi.org/project/Scrapy/), |
| 66 | + [Watson](https://pypi.org/project/Watson/) |
| 67 | +- Formatting: |
| 68 | + [autopep8](https://pypi.org/project/autopep8/), |
| 69 | + [black](https://pypi.org/project/black/), |
| 70 | + [yapf](https://pypi.org/project/yapf/) |
| 71 | +- Interpreter support: |
| 72 | + [conda](https://conda.io/), |
| 73 | + [direnv](https://direnv.net/), |
| 74 | + [pipenv](https://pypi.org/project/pipenv/), |
| 75 | + [pyenv](https://github.com/pyenv/pyenv), |
| 76 | + [venv](https://docs.python.org/3/library/venv.html#module-venv), |
| 77 | + [virtualenv](https://pypi.org/project/virtualenv/) |
| 78 | +- Linting: |
| 79 | + [bandit](https://pypi.org/project/bandit/), |
| 80 | + [flake8](https://pypi.org/project/flake8/), |
| 81 | + [mypy](https://pypi.org/project/mypy/), |
| 82 | + [prospector](https://pypi.org/project/prospector/), |
| 83 | + [pylint](https://pypi.org/project/pylint/), |
| 84 | + [pydocstyle](https://pypi.org/project/pydocstyle/), |
| 85 | + [pylama](https://pypi.org/project/pylama/) |
| 86 | +- Testing: |
| 87 | + [nose](https://pypi.org/project/nose/), |
| 88 | + [pytest](https://pypi.org/project/pytest/), |
| 89 | + [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) |
| 90 | + |
| 91 | +And finally thanks to the [Python](https://www.python.org/) development team and |
| 92 | +community for creating a fantastic programming language and community to be a |
| 93 | +part of! |
| 94 | + |
3 | 95 | ## 2020.9.2 (6 October 2020) |
4 | 96 |
|
5 | 97 | ### Fixes |
@@ -216,6 +308,7 @@ part of! |
216 | 308 | ([#13729](https://github.com/Microsoft/vscode-python/issues/13729)) |
217 | 309 | 1. Fix nighly failure with beakerx. |
218 | 310 | ([#13734](https://github.com/Microsoft/vscode-python/issues/13734)) |
| 311 | + |
219 | 312 | ## 2020.8.6 (15 September 2020) |
220 | 313 |
|
221 | 314 | ### Fixes |
|
0 commit comments