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

Skip to content

Commit 48fe766

Browse files
authored
Preparing for release (microsoft#7828)
* Allow the language server to choose its default caching mode (microsoft#7822) * Preparing for release * Update to change logs * Grammar and typo fixes.
1 parent 9af1d4f commit 48fe766

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 2019.10.0-rc (2 October 2019)
3+
## 2019.10.0 (8 October 2019)
44

55
### Enhancements
66

@@ -36,6 +36,8 @@
3636
([#7517](https://github.com/Microsoft/vscode-python/issues/7517))
3737
1. Add support for ptvsd and debug adapter experiments in remote debugging API.
3838
([#7549](https://github.com/Microsoft/vscode-python/issues/7549))
39+
1. Support other variables for `notebookFileRoot` besides `${workspaceRoot}`. Specifically allow things like `${fileDirName}` so that the directory of the first file run in the interactive window is used for the current directory.
40+
([#4441](https://github.com/Microsoft/vscode-python/issues/4441))
3941

4042
### Fixes
4143

@@ -183,6 +185,14 @@
183185
([#7636](https://github.com/Microsoft/vscode-python/issues/7636))
184186
1. Goto cell code lens was not scrolling.
185187
([#7639](https://github.com/Microsoft/vscode-python/issues/7639))
188+
1. Make interactive window and native take their `fontSize` and `fontFamily` from the settings in VS Code.
189+
([#7624](https://github.com/Microsoft/vscode-python/issues/7624))
190+
1. Fix a hang in the Interactive window when connecting guest to host after the host has already started the interactive window.
191+
([#7638](https://github.com/Microsoft/vscode-python/issues/7638))
192+
1. When there's no workspace open, use the directory of the opened file as the root directory for a Jupyter session.
193+
([#7688](https://github.com/Microsoft/vscode-python/issues/7688))
194+
1. Allow the language server to pick a default caching mode.
195+
([#7821](https://github.com/Microsoft/vscode-python/issues/7821))
186196

187197
### Code Health
188198

news/1 Enhancements/4441.md

-1
This file was deleted.

news/2 Fixes/7624.md

-1
This file was deleted.

news/2 Fixes/7638.md

-1
This file was deleted.

news/2 Fixes/7688.md

-1
This file was deleted.

package-lock.json

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

package.json

+3-2
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, code formatting, refactoring, unit tests, snippets, and more.",
5-
"version": "2019.10.0-rc",
5+
"version": "2019.10.0",
66
"languageServerVersion": "0.4.24",
77
"publisher": "ms-python",
88
"author": {
@@ -1872,11 +1872,12 @@
18721872
"python.analysis.cachingLevel": {
18731873
"type": "string",
18741874
"enum": [
1875+
"Default",
18751876
"None",
18761877
"System",
18771878
"Library"
18781879
],
1879-
"default": "None",
1880+
"default": "Default",
18801881
"description": "Defines which types of modules get their analysis cached.",
18811882
"scope": "resource"
18821883
},

0 commit comments

Comments
 (0)