Skip to content

Commit b82d784

Browse files
authored
Updates for point release (#18877)
* Update version * Update change log * Force es5-ext to 0.10.53 * Add publish extension parameter (#18881)
1 parent d4faf97 commit b82d784

File tree

9 files changed

+151
-34
lines changed

9 files changed

+151
-34
lines changed

CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,72 @@
11
# Changelog
22

3+
## 2022.4.1 (7 April 2022)
4+
5+
### Fixes
6+
7+
1. Ensure `conda info` command isn't run multiple times during startup when large number of conda interpreters are present.
8+
([#18200](https://github.com/Microsoft/vscode-python/issues/18200))
9+
1. If a conda environment is not returned via the `conda env list` command, consider it as unknown env type.
10+
([#18530](https://github.com/Microsoft/vscode-python/issues/18530))
11+
1. Wrap file paths containing an ampersand in double quotation marks for running commands in a shell.
12+
([#18722](https://github.com/Microsoft/vscode-python/issues/18722))
13+
1. Fixes regression with support for python binaries not following the standard names.
14+
([#18835](https://github.com/Microsoft/vscode-python/issues/18835))
15+
1. Fix launch of Python Debugger when using conda environments.
16+
([#18847](https://github.com/Microsoft/vscode-python/issues/18847))
17+
18+
### Thanks
19+
20+
Thanks to the following projects which we fully rely on to provide some of
21+
our features:
22+
23+
- [debugpy](https://pypi.org/project/debugpy/)
24+
- [isort](https://pypi.org/project/isort/)
25+
- [jedi](https://pypi.org/project/jedi/)
26+
and [parso](https://pypi.org/project/parso/)
27+
- [jedi-language-server](https://pypi.org/project/jedi-language-server/)
28+
- [Pylance](https://github.com/microsoft/pylance-release)
29+
30+
Also thanks to the various projects we provide integrations with which help
31+
make this extension useful:
32+
33+
- Debugging support:
34+
[Django](https://pypi.org/project/Django/),
35+
[Flask](https://pypi.org/project/Flask/),
36+
[gevent](https://pypi.org/project/gevent/),
37+
[Jinja](https://pypi.org/project/Jinja/),
38+
[Pyramid](https://pypi.org/project/pyramid/),
39+
[PySpark](https://pypi.org/project/pyspark/),
40+
[Scrapy](https://pypi.org/project/Scrapy/),
41+
[Watson](https://pypi.org/project/Watson/)
42+
- Formatting:
43+
[autopep8](https://pypi.org/project/autopep8/),
44+
[black](https://pypi.org/project/black/),
45+
[yapf](https://pypi.org/project/yapf/)
46+
- Interpreter support:
47+
[conda](https://conda.io/),
48+
[direnv](https://direnv.net/),
49+
[pipenv](https://pypi.org/project/pipenv/),
50+
[poetry](https://pypi.org/project/poetry/),
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+
[pytest](https://pypi.org/project/pytest/),
64+
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)
65+
66+
And finally thanks to the [Python](https://www.python.org/) development team and
67+
community for creating a fantastic programming language and community to be a
68+
part of!
69+
370
## 2022.4.0 (30 March 2022)
471

572
### Enhancements

build/azure-pipeline.stable.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,16 @@ resources:
1414
ref: main
1515
endpoint: Monaco
1616

17+
parameters:
18+
- name: publishExtension
19+
displayName: 🚀 Publish Extension
20+
type: boolean
21+
default: false
22+
1723
extends:
1824
template: azure-pipelines/extension/stable.yml@templates
1925
parameters:
26+
publishExtension: ${{ parameters.publishExtension }}
2027
buildSteps:
2128
- task: NodeTool@0
2229
inputs:

news/2 Fixes/18200.md

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

news/2 Fixes/18530.md

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

news/2 Fixes/18722.md

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

news/2 Fixes/18835.md

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

news/2 Fixes/18847.md

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

package-lock.json

Lines changed: 75 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python",
33
"displayName": "Python",
44
"description": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.",
5-
"version": "2022.4.0",
5+
"version": "2022.4.1",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},
@@ -1899,6 +1899,7 @@
18991899
"cross-spawn": "^6.0.5",
19001900
"del": "^3.0.0",
19011901
"download": "^7.0.0",
1902+
"es5-ext": "0.10.53",
19021903
"eslint": "^7.2.0",
19031904
"eslint-config-airbnb": "^18.2.0",
19041905
"eslint-config-prettier": "^8.3.0",

0 commit comments

Comments
 (0)