Skip to content

Commit 0900d43

Browse files
authored
2018.10.0-rc (#3238)
1 parent 9c10e42 commit 0900d43

36 files changed

+45
-66
lines changed

CHANGELOG.md

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

3-
## 2018.10.0-beta (31 Oct 2018)
3+
## 2018.10.0-rc (07 Nov 2018)
44

55
### Thanks
66

@@ -9,8 +9,8 @@ our features:
99
- [isort 4.3.4](https://pypi.org/project/isort/4.3.4/)
1010
- [jedi 0.12.0](https://pypi.org/project/jedi/0.12.0/)
1111
and [parso 0.2.1](https://pypi.org/project/parso/0.2.1/)
12-
- [Microsoft Python Language Server 2018.10.0](https://github.com/Microsoft/python-language-server/releases/tag/2018.10.0)
13-
- [ptvsd 4.1.4](https://github.com/Microsoft/ptvsd/releases/tag/v4.1.4)
12+
- Microsoft Python Language Server
13+
- ptvsd
1414
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
1515
- [rope](https://pypi.org/project/rope/) (user-installed)
1616

@@ -64,7 +64,7 @@ part of!
6464
([#2302](https://github.com/Microsoft/vscode-python/issues/2302))
6565
1. Add support for automatic reloading of flask in the debugger.
6666
([#2326](https://github.com/Microsoft/vscode-python/issues/2326))
67-
1. Add a debugger setting to show return values of functions while stepping.
67+
1. Added a debugger setting to show return values of functions while stepping.
6868
([#2463](https://github.com/Microsoft/vscode-python/issues/2463))
6969
1. Enable on-type formatting from language server
7070
([#2690](https://github.com/Microsoft/vscode-python/issues/2690))
@@ -73,6 +73,17 @@ part of!
7373
([#2775](https://github.com/Microsoft/vscode-python/issues/2775))
7474
1. Ensure `python.condaPath` supports paths relative to `Home`. E.g. `"python.condaPath":"~/anaconda3/bin/conda"`.
7575
([#2781](https://github.com/Microsoft/vscode-python/issues/2781))
76+
1. Updated the [language server](https://github.com/Microsoft/python-language-server) to [0.1.57/2018.11.0](https://github.com/Microsoft/python-language-server/releases/tag/2018.11.0) (from 2018.10.0)
77+
and the [debugger](https://pypi.org/project/ptvsd/) to
78+
[4.2.0](https://github.com/Microsoft/ptvsd/releases/tag/v4.2.0) (from 4.1.3). Highlights include:
79+
* Language server
80+
- Completion support for [`collections.namedtuple`](https://docs.python.org/3/library/collections.html#collections.namedtuple).
81+
- Support [`typing.NewType`](https://docs.python.org/3/library/typing.html#typing.NewType)
82+
and [`typing.TypeVar`](https://docs.python.org/3/library/typing.html#typing.TypeVar).
83+
* Debugger
84+
- Add support for multi-processing debugging (set `"subProcess": true` in your `launch.json` to use).
85+
- Add support for [pyside2](https://pypi.org/project/PySide2/).
86+
([#3235](https://github.com/Microsoft/vscode-python/issues/3235))
7687
1. Add localization of strings. Localized versions are specified in the package.nls.\<locale\>.json files.
7788
([#463](https://github.com/Microsoft/vscode-python/issues/463))
7889
1. Clear cached list of interpreters when an interpeter is created in the workspace folder (this allows for virtual environments created in one's workspace folder to be detectable immediately).
@@ -84,7 +95,7 @@ part of!
8495

8596
### Fixes
8697

87-
1. Support `conda activate` after 4.4.0.
98+
1. Support "conda activate" after 4.4.0.
8899
([#1882](https://github.com/Microsoft/vscode-python/issues/1882))
89100
1. Fix installation of codna packages when conda environment contains spaces.
90101
([#2015](https://github.com/Microsoft/vscode-python/issues/2015))
@@ -101,6 +112,21 @@ part of!
101112
1. Fixed a typo in the Python interpreter selection balloon for macOS.
102113
(thanks [Joe Graham](https://github.com/joe-graham))
103114
([#2868](https://github.com/Microsoft/vscode-python/issues/2868))
115+
1. Updated the [language server](https://github.com/Microsoft/python-language-server) to [0.1.57/2018.11.0](https://github.com/Microsoft/python-language-server/releases/tag/2018.11.0) (from 2018.10.0)
116+
and the [debugger](https://pypi.org/project/ptvsd/) to
117+
[4.2.0](https://github.com/Microsoft/ptvsd/releases/tag/v4.2.0) (from 4.1.3). Highlights include:
118+
* Language server
119+
- Completions on generic containers work (e.g. `x: List[T]` now have completions for `x`, not just `x[]`).
120+
- Fixed issues relating to `Go to Definition` for `from ... import` statements.
121+
- `None` is no longer flagged as undefined.
122+
- `BadSourceException` should no longer be raised.
123+
- Fixed a null reference exception when handling certain function overloads.
124+
* Debugger
125+
- Properly deal with handled or unhandled exception in top level frames.
126+
- Any folder ending with `site-packages` is considered a library.
127+
- Treat any code not in `site-packages` as user code.
128+
- Handle case where no completions are provided by the debugger.
129+
([#3235](https://github.com/Microsoft/vscode-python/issues/3235))
104130

105131
### Code Health
106132

@@ -129,6 +155,10 @@ part of!
129155
([#2999](https://github.com/Microsoft/vscode-python/issues/2999))
130156
1. Move language server downloads to the CDN.
131157
([#3000](https://github.com/Microsoft/vscode-python/issues/3000))
158+
1. Pin extension to a minimum version of the language server.
159+
([#3125](https://github.com/Microsoft/vscode-python/issues/3125))
160+
161+
132162

133163

134164

news/1 Enhancements/1076.md

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

news/1 Enhancements/2242.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/1 Enhancements/2302.md

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

news/1 Enhancements/2326.md

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

news/1 Enhancements/2463.md

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

news/1 Enhancements/2690.md

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

news/1 Enhancements/2775.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/1 Enhancements/2781.md

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

news/1 Enhancements/463.md

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

0 commit comments

Comments
 (0)