Skip to content

Commit 9c21f7c

Browse files
Update version and change log for point release. (#17074)
* Update `vsce` to latest. (#17051) * Update vscode-extension-telemetry to 0.2.9 (#17071) * Update vscode-extension-telemetry to 0.2.9 * Remove todo * Remove other todo * Exact * Update version and change log for point release. Co-authored-by: Jake Bailey <[email protected]>
1 parent e1d1f8a commit 9c21f7c

File tree

5 files changed

+95
-34
lines changed

5 files changed

+95
-34
lines changed

CHANGELOG.md

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

3+
## 2021.8.3 (23 August 2021)
4+
5+
### Fixes
6+
7+
1. Update `vsce` to latest to fix metadata in VSIX for web extension.
8+
([#17049](https://github.com/Microsoft/vscode-python/issues/17049))
9+
10+
### Thanks
11+
12+
Thanks to the following projects which we fully rely on to provide some of
13+
our features:
14+
15+
- [debugpy](https://pypi.org/project/debugpy/)
16+
- [isort](https://pypi.org/project/isort/)
17+
- [jedi](https://pypi.org/project/jedi/)
18+
and [parso](https://pypi.org/project/parso/)
19+
- [jedi-language-server](https://pypi.org/project/jedi-language-server/)
20+
- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server)
21+
- [Pylance](https://github.com/microsoft/pylance-release)
22+
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
23+
- [rope](https://pypi.org/project/rope/) (user-installed)
24+
25+
Also thanks to the various projects we provide integrations with which help
26+
make this extension useful:
27+
28+
- Debugging support:
29+
[Django](https://pypi.org/project/Django/),
30+
[Flask](https://pypi.org/project/Flask/),
31+
[gevent](https://pypi.org/project/gevent/),
32+
[Jinja](https://pypi.org/project/Jinja/),
33+
[Pyramid](https://pypi.org/project/pyramid/),
34+
[PySpark](https://pypi.org/project/pyspark/),
35+
[Scrapy](https://pypi.org/project/Scrapy/),
36+
[Watson](https://pypi.org/project/Watson/)
37+
- Formatting:
38+
[autopep8](https://pypi.org/project/autopep8/),
39+
[black](https://pypi.org/project/black/),
40+
[yapf](https://pypi.org/project/yapf/)
41+
- Interpreter support:
42+
[conda](https://conda.io/),
43+
[direnv](https://direnv.net/),
44+
[pipenv](https://pypi.org/project/pipenv/),
45+
[pyenv](https://github.com/pyenv/pyenv),
46+
[venv](https://docs.python.org/3/library/venv.html#module-venv),
47+
[virtualenv](https://pypi.org/project/virtualenv/)
48+
- Linting:
49+
[bandit](https://pypi.org/project/bandit/),
50+
[flake8](https://pypi.org/project/flake8/),
51+
[mypy](https://pypi.org/project/mypy/),
52+
[prospector](https://pypi.org/project/prospector/),
53+
[pylint](https://pypi.org/project/pylint/),
54+
[pydocstyle](https://pypi.org/project/pydocstyle/),
55+
[pylama](https://pypi.org/project/pylama/)
56+
- Testing:
57+
[nose](https://pypi.org/project/nose/),
58+
[pytest](https://pypi.org/project/pytest/),
59+
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)
60+
61+
And finally thanks to the [Python](https://www.python.org/) development team and
62+
community for creating a fantastic programming language and community to be a
63+
part of!
64+
365
## 2021.8.2 (19 August 2021)
466

567
### Enhancements

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
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": "2021.8.2",
5+
"version": "2021.8.3",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},
@@ -2265,7 +2265,7 @@
22652265
"untildify": "^3.0.2",
22662266
"vscode-debugadapter": "^1.28.0",
22672267
"vscode-debugprotocol": "^1.28.0",
2268-
"vscode-extension-telemetry": "0.2.8",
2268+
"vscode-extension-telemetry": "0.2.9",
22692269
"vscode-jsonrpc": "6.0.0",
22702270
"vscode-languageclient": "7.0.0",
22712271
"vscode-languageserver": "7.0.0",
@@ -2437,7 +2437,7 @@
24372437
"url-loader": "^1.1.2",
24382438
"uuid": "^3.3.2",
24392439
"vinyl-fs": "^3.0.3",
2440-
"vsce": "^1.59.0",
2440+
"vsce": "^1.96.1",
24412441
"vscode-debugadapter-testsupport": "^1.27.0",
24422442
"webpack": "^4.33.0",
24432443
"webpack-bundle-analyzer": "^3.6.0",

src/client/browser/extension.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,7 @@ function sendTelemetryEventBrowser(
197197

198198
// To avoid hardcoding the names and forgetting to update later.
199199
const errorPropNames = Object.getOwnPropertyNames(errorProps);
200-
// TODO: remove this "as any" once the upstream lib is fixed.
201-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
202-
(reporter.sendTelemetryErrorEvent as any)(eventNameSent, customProperties, measures, errorPropNames);
200+
reporter.sendTelemetryErrorEvent(eventNameSent, customProperties, measures, errorPropNames);
203201
} else {
204202
reporter.sendTelemetryEvent(eventNameSent, customProperties, measures);
205203
}

src/client/telemetry/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,7 @@ export function sendTelemetryEvent<P extends IEventNamePropertyMapping, E extend
159159

160160
// To avoid hardcoding the names and forgetting to update later.
161161
const errorPropNames = Object.getOwnPropertyNames(errorProps);
162-
// TODO: remove this "as any" once the upstream lib is fixed.
163-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
164-
(reporter.sendTelemetryErrorEvent as any)(eventNameSent, customProperties, measures, errorPropNames);
162+
reporter.sendTelemetryErrorEvent(eventNameSent, customProperties, measures, errorPropNames);
165163
} else {
166164
reporter.sendTelemetryEvent(eventNameSent, customProperties, measures);
167165
}

0 commit comments

Comments
 (0)