Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 2019.10.0-rc (2 October 2019)
## 2019.10.0 (8 October 2019)

### Enhancements

Expand Down Expand Up @@ -36,6 +36,8 @@
([#7517](https://github.com/Microsoft/vscode-python/issues/7517))
1. Add support for ptvsd and debug adapter experiments in remote debugging API.
([#7549](https://github.com/Microsoft/vscode-python/issues/7549))
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.
([#4441](https://github.com/Microsoft/vscode-python/issues/4441))

### Fixes

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

### Code Health

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

8 changes: 4 additions & 4 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions 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, code formatting, refactoring, unit tests, snippets, and more.",
"version": "2019.10.0-rc",
"version": "2019.10.0",
"languageServerVersion": "0.4.24",
"publisher": "ms-python",
"author": {
Expand Down Expand Up @@ -1872,11 +1872,12 @@
"python.analysis.cachingLevel": {
"type": "string",
"enum": [
"Default",
"None",
"System",
"Library"
],
"default": "None",
"default": "Default",
"description": "Defines which types of modules get their analysis cached.",
"scope": "resource"
},
Expand Down