Skip to content

Commit 850de71

Browse files
karthiknadigjoyceerhlKartik RajjakebaileyPavel Minaev
authored
Merge back from release to main (#14758)
* Cherry pick from main (#14644) * Update shipped wheels version (#14615) * Update shipped wheels version * News item * Remove redundant files (#14620) * Add extension dependencies at build time (#14636) * Use Node 12.15 in Insiders and Release GitHub Actions (#14641) * Use Node 12.15 on all Insiders and Release GitHub Actions jobs (#14642) Co-authored-by: Joyce Er <[email protected]> * Cherry pic fixes into release for tests. (#14673) * Added FSWatching base class and made related changes (#14605) * Add FSWatching locator base class * Correct glob pattern to not match python3.2whoa * Add documentation of python binary watcher * Fix lint errors * Update ignore list * Add disposable registry * Modify FSWatching Locator * Code reviews * Use string[] * Remove list disposable getter * Fix failing global virtual env watcher tests (#14633) Co-authored-by: Kartik Raj <[email protected]> * Version, change log and cherrypicks for nov release (#14696) * change log updates * Update gifs * Fix for interpreter selection (#14693) * Fix for interpreter selection * Fix linting errors * Minor tweak to property removal * Cherry pick "Bind function to correct this for workspace syms" (#14743) * Fix #14674: Enable overriding "pythonPath" in the launcher Fix #12462: Update launch.json schema to add "python" and remove "pythonPath" Split the "pythonPath" debug property into "python", "debugAdapterPython", and "debugLauncherPython". Do most debug config validation on fully expanded property values via resolveDebugConfigurationWithSubstitutedVariables(). Add fixups for legacy launch.json with "pythonPath". * Point release change log and version update (#14750) * Point release change log and version update * Fix process picker (#14700) * Workaround VSCode bug for process picker * Fix how we pass in icons to VSCode * update change log with cherry pick Co-authored-by: Kartik Raj <[email protected]> Co-authored-by: Joyce Er <[email protected]> Co-authored-by: Kartik Raj <[email protected]> Co-authored-by: Jake Bailey <[email protected]> Co-authored-by: Pavel Minaev <[email protected]>
1 parent 4a04ad6 commit 850de71

File tree

8 files changed

+75
-5
lines changed

8 files changed

+75
-5
lines changed

CHANGELOG.md

Lines changed: 75 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,79 @@
11
# Changelog
22

3-
## 2020.11.0-rc (4 November 2020)
3+
## 2020.11.1 (17 November 2020)
44

55
### Enhancements
66

7-
UPDATE THIS BEFORE RELEASE
7+
1. Replaced "pythonPath" debug configuration property with "python".
8+
([#12462](https://github.com/Microsoft/vscode-python/issues/12462))
9+
10+
### Fixes
11+
12+
1. Fix for Process Id Picker no longer showing up
13+
([#14678](https://github.com/Microsoft/vscode-python/issues/14678)))
14+
1. Fix workspace symbol searching always returning empty.
15+
([#14727](https://github.com/Microsoft/vscode-python/issues/14727))
16+
17+
### Thanks
18+
19+
Thanks to the following projects which we fully rely on to provide some of
20+
our features:
21+
22+
- [debugpy](https://pypi.org/project/debugpy/)
23+
- [isort](https://pypi.org/project/isort/)
24+
- [jedi](https://pypi.org/project/jedi/)
25+
and [parso](https://pypi.org/project/parso/)
26+
- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server)
27+
- [Pylance](https://github.com/microsoft/pylance-release)
28+
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
29+
- [rope](https://pypi.org/project/rope/) (user-installed)
30+
31+
Also thanks to the various projects we provide integrations with which help
32+
make this extension useful:
33+
34+
- Debugging support:
35+
[Django](https://pypi.org/project/Django/),
36+
[Flask](https://pypi.org/project/Flask/),
37+
[gevent](https://pypi.org/project/gevent/),
38+
[Jinja](https://pypi.org/project/Jinja/),
39+
[Pyramid](https://pypi.org/project/pyramid/),
40+
[PySpark](https://pypi.org/project/pyspark/),
41+
[Scrapy](https://pypi.org/project/Scrapy/),
42+
[Watson](https://pypi.org/project/Watson/)
43+
- Formatting:
44+
[autopep8](https://pypi.org/project/autopep8/),
45+
[black](https://pypi.org/project/black/),
46+
[yapf](https://pypi.org/project/yapf/)
47+
- Interpreter support:
48+
[conda](https://conda.io/),
49+
[direnv](https://direnv.net/),
50+
[pipenv](https://pypi.org/project/pipenv/),
51+
[pyenv](https://github.com/pyenv/pyenv),
52+
[venv](https://docs.python.org/3/library/venv.html#module-venv),
53+
[virtualenv](https://pypi.org/project/virtualenv/)
54+
- Linting:
55+
[bandit](https://pypi.org/project/bandit/),
56+
[flake8](https://pypi.org/project/flake8/),
57+
[mypy](https://pypi.org/project/mypy/),
58+
[prospector](https://pypi.org/project/prospector/),
59+
[pylint](https://pypi.org/project/pylint/),
60+
[pydocstyle](https://pypi.org/project/pydocstyle/),
61+
[pylama](https://pypi.org/project/pylama/)
62+
- Testing:
63+
[nose](https://pypi.org/project/nose/),
64+
[pytest](https://pypi.org/project/pytest/),
65+
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)
66+
67+
And finally thanks to the [Python](https://www.python.org/) development team and
68+
community for creating a fantastic programming language and community to be a
69+
part of!
70+
71+
## 2020.11.0 (11 November 2020)
72+
73+
### Enhancements
74+
75+
1. Update shipped debugger wheels to python 3.8.
76+
([#14614](https://github.com/Microsoft/vscode-python/issues/14614))
877

978
### Fixes
1079

@@ -15,6 +84,10 @@ UPDATE THIS BEFORE RELEASE
1584
1. When sending code to the REPL, read input from `sys.stdin` instead of passing it as an argument.
1685
([#14471](https://github.com/Microsoft/vscode-python/issues/14471))
1786

87+
### Code Health
88+
89+
1. Code for Jupyter Notebooks support has been refactored into the Jupyter extension, which is now a dependency for the Python extension
90+
1891
### Thanks
1992

2093
Thanks to the following projects which we fully rely on to provide some of

images/ConfigureDebugger.gif

19.3 KB
Loading

images/ConfigureTests.gif

276 KB
Loading

images/InterpreterSelectionZoom.gif

16.4 KB
Loading

images/OpenOrCreateNotebook.gif

3.44 MB
Loading

news/1 Enhancements/12462.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/1 Enhancements/14614.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/2 Fixes/14727.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)