Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dec1039

Browse files
karthiknadigKartik Raj
and
Kartik Raj
authored
Point release change log and version update (microsoft#14750)
* Point release change log and version update * Fix process picker (microsoft#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]>
1 parent dfd7cf1 commit dec1039

File tree

6 files changed

+71
-7
lines changed

6 files changed

+71
-7
lines changed

CHANGELOG.md

+66
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,71 @@
11
# Changelog
22

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

571
### Enhancements

news/1 Enhancements/12462.md

-1
This file was deleted.

news/2 Fixes/14727.md

-1
This file was deleted.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python",
33
"displayName": "Python",
44
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, Jupyter Notebooks, code formatting, refactoring, unit tests, snippets, and more.",
5-
"version": "2020.11.0",
5+
"version": "2020.11.1",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},

src/client/common/utils/icons.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import { EXTENSION_ROOT_DIR } from '../../constants';
1010
const darkIconsPath = path.join(EXTENSION_ROOT_DIR, 'resources', 'dark');
1111
const lightIconsPath = path.join(EXTENSION_ROOT_DIR, 'resources', 'light');
1212

13-
export function getIcon(fileName: string): { light: string | Uri; dark: string | Uri } {
13+
export function getIcon(fileName: string): { light: Uri; dark: Uri } {
1414
return {
15-
dark: path.join(darkIconsPath, fileName),
16-
light: path.join(lightIconsPath, fileName)
15+
dark: Uri.file(path.join(darkIconsPath, fileName)),
16+
light: Uri.file(path.join(lightIconsPath, fileName))
1717
};
1818
}

0 commit comments

Comments
 (0)