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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 2019.8.0-rc (30 July 2019)
## 2019.8.0 (6 August 2019)

### Enhancements

Expand Down Expand Up @@ -40,6 +40,8 @@
1. Remove "Debug cell" action from data science code lenses for markdown cells.
(thanks [Janosh Riebesell](https://github.com/janosh))
([#6588](https://github.com/Microsoft/vscode-python/issues/6588))
1. Add debug command code lenses when in debug mode
([#6672](https://github.com/Microsoft/vscode-python/issues/6672))

### Fixes

Expand Down Expand Up @@ -123,6 +125,12 @@
([#6743](https://github.com/Microsoft/vscode-python/issues/6743))
1. Remove Debug Cell and Run Cell from the command palette. They should both be 'Debug Current Cell' and 'Run Current Cell'
([#6754](https://github.com/Microsoft/vscode-python/issues/6754))
1. Make the dataviewer open a window much faster. Total load time is the same, but initial response is much faster.
([#6729](https://github.com/Microsoft/vscode-python/issues/6729))
1. Debugging an untitled file causes an error 'Untitled-1 cannot be opened'.
([#6738](https://github.com/Microsoft/vscode-python/issues/6738))
1. Eliminate 'History_\<guid\>' from the problems list when using the interactive panel.
([#6748](https://github.com/Microsoft/vscode-python/issues/6748))

### Code Health

Expand Down
4 changes: 2 additions & 2 deletions ThirdPartyNotices-Distribution.txt
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Microsoft Python extension for Visual Studio Code incorporates third party mater
217. line-by-line 0.1.6 (https://registry.npmjs.org/line-by-line/-/line-by-line-0.1.6.tgz)
218. linear-layout-vector 0.0.1 (https://registry.npmjs.org/linear-layout-vector/-/linear-layout-vector-0.0.1.tgz)
219. linebreak 0.3.0 (https://registry.npmjs.org/linebreak/-/linebreak-0.3.0.tgz)
220. lodash 4.17.13 (https://registry.npmjs.org/lodash/-/lodash-4.17.13.tgz)
220. lodash 4.17.15 (https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz)
221. lodash.clonedeep 4.5.0 (https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz)
222. lodash.curry 4.1.1 (https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz)
223. lodash.flatten 4.4.0 (https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz)
Expand Down Expand Up @@ -6940,7 +6940,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
=========================================
END OF linebreak NOTICES AND INFORMATION

%% lodash 4.17.13 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/lodash/-/lodash-4.17.13.tgz)
%% lodash 4.17.15 NOTICES AND INFORMATION BEGIN HERE (https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz)
=========================================
Copyright OpenJS Foundation and other contributors <https://openjsf.org/>

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

339 changes: 188 additions & 151 deletions package-lock.json

Large diffs are not rendered by default.

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, code formatting, refactoring, unit tests, snippets, and more.",
"version": "2019.8.0-rc",
"version": "2019.8.0",
"languageServerVersion": "0.3.43",
"publisher": "ms-python",
"author": {
Expand Down