Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge point release back to main #14293

Merged
merged 25 commits into from
Oct 7, 2020
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8c44490
Port ipykernel install fix to release (#13975)
IanMatthewHuff Sep 17, 2020
b92203a
Merge in changes to release (#13976)
rchiodo Sep 17, 2020
8c4a0ec
Port two fixes to the release branch (#13995)
rchiodo Sep 18, 2020
6cb43d5
add jedi-language-server to 3rd party notices (#13977)
Sep 18, 2020
832025a
disable test_discover_complex_default and (#14024)
Sep 22, 2020
074024c
Upgrade isort to 5.5.3 (#14035) (#14037)
Sep 22, 2020
c1258f0
prepare release (#14042)
Sep 22, 2020
0b41a86
fixed annoying warnings (#14049)
Sep 23, 2020
8d337a7
Cherry pick to address path issues. (#14125)
karthiknadig Sep 28, 2020
5da34fc
Port escape fix to release branch (#14133)
rchiodo Sep 28, 2020
5065d31
update version and changelog (#14139)
Sep 28, 2020
f276e07
Escaping fix broke a number of things (#14145) (#14154)
rchiodo Sep 29, 2020
2e129b4
Port NB Convert Fix to point release branch (#14200)
IanMatthewHuff Oct 1, 2020
ef278da
Port escape fix to release branch (#14202)
rchiodo Oct 1, 2020
f4762cb
Port interactive window export fix (#14232)
IanMatthewHuff Oct 2, 2020
8022bfe
Select kernel based on metadata in notebook (#14217) (#14234)
DonJayamanne Oct 2, 2020
f076311
Port more escape fixes to point release (#14242)
rchiodo Oct 2, 2020
aaca611
Port prune fix from main to release (#14243)
rchiodo Oct 5, 2020
3efbc39
Merge fixes related to remembering interpreter (#14270)
DonJayamanne Oct 6, 2020
b05589e
update version, changelog and thrid party notices (#14280)
Oct 6, 2020
f476047
Merge branch 'main' into david/releaseToMain
Oct 6, 2020
e822cc6
remove VSC_PYTHON_CI_TEST_VSC_CHANNEL
Oct 6, 2020
57d1561
delete ipynb file
Oct 7, 2020
862f567
delete solved news files
Oct 7, 2020
7f1a48b
delete more news
Oct 7, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,70 @@
# Changelog

## 2020.9.2 (6 October 2020)

### Fixes

1. Support nbconvert version 6+ for exporting notebooks to python code.
([#14169](https://github.com/Microsoft/vscode-python/issues/14169))
1. Do not escape output in the actual ipynb file.
([#14182](https://github.com/Microsoft/vscode-python/issues/14182))
1. Fix exporting from the interactive window.
([#14210](https://github.com/Microsoft/vscode-python/issues/14210))

### Thanks

Thanks to the following projects which we fully rely on to provide some of
our features:

- [debugpy](https://pypi.org/project/debugpy/)
- [isort](https://pypi.org/project/isort/)
- [jedi](https://pypi.org/project/jedi/)
and [parso](https://pypi.org/project/parso/)
- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server)
- [Pylance](https://github.com/microsoft/pylance-release)
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
- [rope](https://pypi.org/project/rope/) (user-installed)

Also thanks to the various projects we provide integrations with which help
make this extension useful:

- Debugging support:
[Django](https://pypi.org/project/Django/),
[Flask](https://pypi.org/project/Flask/),
[gevent](https://pypi.org/project/gevent/),
[Jinja](https://pypi.org/project/Jinja/),
[Pyramid](https://pypi.org/project/pyramid/),
[PySpark](https://pypi.org/project/pyspark/),
[Scrapy](https://pypi.org/project/Scrapy/),
[Watson](https://pypi.org/project/Watson/)
- Formatting:
[autopep8](https://pypi.org/project/autopep8/),
[black](https://pypi.org/project/black/),
[yapf](https://pypi.org/project/yapf/)
- Interpreter support:
[conda](https://conda.io/),
[direnv](https://direnv.net/),
[pipenv](https://pypi.org/project/pipenv/),
[pyenv](https://github.com/pyenv/pyenv),
[venv](https://docs.python.org/3/library/venv.html#module-venv),
[virtualenv](https://pypi.org/project/virtualenv/)
- Linting:
[bandit](https://pypi.org/project/bandit/),
[flake8](https://pypi.org/project/flake8/),
[mypy](https://pypi.org/project/mypy/),
[prospector](https://pypi.org/project/prospector/),
[pylint](https://pypi.org/project/pylint/),
[pydocstyle](https://pypi.org/project/pydocstyle/),
[pylama](https://pypi.org/project/pylama/)
- Testing:
[nose](https://pypi.org/project/nose/),
[pytest](https://pypi.org/project/pytest/),
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)

And finally thanks to the [Python](https://www.python.org/) development team and
community for creating a fantastic programming language and community to be a
part of!

## 2020.9.1 (29 September 2020)

### Fixes
Expand Down
Loading