Skip to content

Commit

Permalink
Point release change log and version update (#14750)
Browse files Browse the repository at this point in the history
* 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 <karraj@microsoft.com>
  • Loading branch information
karthiknadig and Kartik Raj authored Nov 17, 2020
1 parent dfd7cf1 commit dec1039
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 7 deletions.
66 changes: 66 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,71 @@
# Changelog

## 2020.11.1 (17 November 2020)

1. Replaced "pythonPath" debug configuration property with "python".
([#12462](https://github.com/Microsoft/vscode-python/issues/12462))

### Fixes

1. Fix for Process Id Picker no longer showing up
([#14678](https://github.com/Microsoft/vscode-python/issues/14678)))
1. Fix workspace symbol searching always returning empty.
([#14727](https://github.com/Microsoft/vscode-python/issues/14727))

### 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.11.0 (11 November 2020)

### Enhancements
Expand Down
1 change: 0 additions & 1 deletion news/1 Enhancements/12462.md

This file was deleted.

1 change: 0 additions & 1 deletion news/2 Fixes/14727.md

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "python",
"displayName": "Python",
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, Jupyter Notebooks, code formatting, refactoring, unit tests, snippets, and more.",
"version": "2020.11.0",
"version": "2020.11.1",
"featureFlags": {
"usingNewInterpreterStorage": true
},
Expand Down
6 changes: 3 additions & 3 deletions src/client/common/utils/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import { EXTENSION_ROOT_DIR } from '../../constants';
const darkIconsPath = path.join(EXTENSION_ROOT_DIR, 'resources', 'dark');
const lightIconsPath = path.join(EXTENSION_ROOT_DIR, 'resources', 'light');

export function getIcon(fileName: string): { light: string | Uri; dark: string | Uri } {
export function getIcon(fileName: string): { light: Uri; dark: Uri } {
return {
dark: path.join(darkIconsPath, fileName),
light: path.join(lightIconsPath, fileName)
dark: Uri.file(path.join(darkIconsPath, fileName)),
light: Uri.file(path.join(lightIconsPath, fileName))
};
}

0 comments on commit dec1039

Please sign in to comment.