Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f22924c
Update tpn distro and 3rd party notices
DonJayamanne Mar 19, 2019
46d4d02
Pin to beta version of PTVSD (#4836)
DonJayamanne Mar 19, 2019
095e210
Add ignore button to the MacInterpreterSelectedAndNoOtherInterpreters…
alinalobast Mar 20, 2019
d180c9c
Generalize test results service (#4813)
Mar 19, 2019
aa2c0ba
Merge branch 'release' of https://github.com/Microsoft/vscode-python …
DonJayamanne Mar 20, 2019
369397c
fix names for run above and run below code lenses (#4879)
IanMatthewHuff Mar 21, 2019
f7a4d53
Fix multiline comments with text on first line. (#4884)
rchiodo Mar 21, 2019
0d96d3a
Cherry-pick 26a7b9c
rchiodo Mar 22, 2019
2412a58
cherry pick from master branch
IanMatthewHuff Mar 22, 2019
76eb5e2
Revert "Revert "Always use the same jedi environment (#4687)" (#4850)"
DonJayamanne Mar 22, 2019
4e44f6d
Update change log entries
DonJayamanne Mar 25, 2019
434567e
Bump ptvsd to 4.2.5 (#4904)
DonJayamanne Mar 25, 2019
6c9b79c
Ensure output panel does not steal focus due to ls errors (#4919)
DonJayamanne Mar 26, 2019
3e314b6
Fix change log
DonJayamanne Mar 26, 2019
d852809
Bump pinned version of Language Server
DonJayamanne Mar 26, 2019
c0f7eca
Release for march 2018 (#4931)
DonJayamanne Mar 26, 2019
1f600d9
Same logic for stable and beta (#4964)
DonJayamanne Mar 27, 2019
095b74c
Point release for March 2018 (#4965)
DonJayamanne Mar 27, 2019
7c041fd
Capture telemetry when tests are disabled (#4997)
DonJayamanne Mar 28, 2019
68316a0
Update change log
DonJayamanne Mar 28, 2019
bc58a73
Merge release into master
DonJayamanne Mar 29, 2019
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
40 changes: 39 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
# Changelog


## 2019.3.0-rc (19 March 2019)
## 2019.3.1 (28 March 2019)

### Enhancements

1. Use the download same logic for `stable` channel of the `Language Server` as that in `beta`.
([#4960](https://github.com/Microsoft/vscode-python/issues/4960))

### Code Health

1. Capture telemetry when tests are disabled..
([#4801](https://github.com/Microsoft/vscode-python/issues/4801))

## 2019.3.6139 (26 March 2019)

### Enhancements

Expand Down Expand Up @@ -34,6 +46,11 @@
([#4718](https://github.com/Microsoft/vscode-python/issues/4718))
1. Update status of test suite when all tests pass
([#4727](https://github.com/Microsoft/vscode-python/issues/4727))
1. Add button to ignore the message warning about the use of the macOS system install of Python.
(thanks [Alina Lobastova](https://github.com/alina7091))
([#4448](https://github.com/Microsoft/vscode-python/issues/4448))
1. Add "Run In Interactive" command to run the contents of a file not cell by cell. Group data science context commands in one group. Add run file command to explorer context menu.
([#4855](https://github.com/Microsoft/vscode-python/issues/4855))

### Fixes

Expand Down Expand Up @@ -79,6 +96,25 @@
([#4743](https://github.com/Microsoft/vscode-python/issues/4743))
1. Perform case insensitive comparison of Python Environment paths
([#4797](https://github.com/Microsoft/vscode-python/issues/4797))
1. Ensure `Jedi` uses the currently selected intepreter.
(thanks [Selim Belhaouane](https://github.com/selimb))
([#4687](https://github.com/Microsoft/vscode-python/issues/4687))
1. Multiline comments with text on the first line break Python Interactive window execution.
([#4791](https://github.com/Microsoft/vscode-python/issues/4791))
1. Fix status bar when using Live Share or just starting the Python Interactive window.
([#4853](https://github.com/Microsoft/vscode-python/issues/4853))
1. Change the names of our "Run All Cells Above" and "Run Cell and All Below" commands to be more concise
([#4876](https://github.com/Microsoft/vscode-python/issues/4876))
1. Ensure the `Python` output panel does not steal focus when there errors in the `Language Server`.
([#4868](https://github.com/Microsoft/vscode-python/issues/4868))
1. Update ptvsd to [4.2.5](https://github.com/Microsoft/ptvsd/releases/tag/v4.2.5).
([#4932](https://github.com/Microsoft/vscode-python/issues/4932))
* Fix issues with django and jinja2 exceptions.
* Detaching sometimes throws ValueError.
* StackTrace request respecting just-my-code.
* Don't give error redirecting output with pythonw.
* Fix for stop on entry issue.
1. Update the Python language server to 0.2.31.

### Code Health

Expand Down Expand Up @@ -119,6 +155,8 @@
([#4757](https://github.com/Microsoft/vscode-python/issues/4757))
1. Make cancel test and server cache test more robust
([#4818](https://github.com/Microsoft/vscode-python/issues/4818))
1. Generalize code used to parse Test results service
([#4796](https://github.com/Microsoft/vscode-python/issues/4796))

### Thanks

Expand Down
3,013 changes: 403 additions & 2,610 deletions ThirdPartyNotices-Distribution.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jedi==0.12.0
parso==0.2.1
isort==4.3.4
ptvsd==4.2.4
ptvsd==4.2.5
570 changes: 285 additions & 285 deletions src/client/common/utils/localize.ts

Large diffs are not rendered by default.

312 changes: 156 additions & 156 deletions src/client/datascience/constants.ts

Large diffs are not rendered by default.

Loading