Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge from main into WIP/NoDS #14134

Merged
merged 38 commits into from
Sep 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
bc9cd8b
Add an optional onUpdated event to the iterator returned by ILocator.…
ericsnowcurrently Sep 16, 2020
f687921
fully bump raw kernel (#13941)
IanMatthewHuff Sep 16, 2020
64c8526
Virtualenvwrapper locator (#13895)
kimadeline Sep 16, 2020
a9b5603
Clean up eslint errors (#13951)
karthiknadig Sep 16, 2020
016cce8
Add a legacy DI adapter for the Python envs component. (#13858)
ericsnowcurrently Sep 16, 2020
7b3b541
Extension api for DataScience (#13923)
DonJayamanne Sep 17, 2020
a7c3b7f
Fix installing ipykernel into interpreters for raw kernel (#13959)
IanMatthewHuff Sep 17, 2020
89b47a0
Fix kernel and server name missing in certain situations (#13974)
rchiodo Sep 17, 2020
7a86cf0
Extension API to return path to debugpy for DS (#13973)
DonJayamanne Sep 17, 2020
6b94c8b
Use the component adapter in the extension. (#13869)
ericsnowcurrently Sep 17, 2020
10b8965
Disable split views of custom editors (#13985)
DonJayamanne Sep 17, 2020
245f393
Fix backup storage by looking at the options correctly (#13983)
rchiodo Sep 18, 2020
8ec292e
update test plan for ipykernel (python repo) (#13993)
IanMatthewHuff Sep 18, 2020
da38997
Find interpreter based on hash in kernelspec of nb metadata (#13856)
DonJayamanne Sep 21, 2020
2cc2c93
Pyenv locator (#13996)
kimadeline Sep 21, 2020
ee0cad9
merge
gramster Sep 21, 2020
889375b
Revert "merge"
rchiodo Sep 22, 2020
8c0d3aa
Remove cwd while running using isolate script (#14014)
karthiknadig Sep 22, 2020
a7176fc
Upgrade isort to 5.5.3 (#14035)
Sep 22, 2020
ec568ca
Modify environment info worker to support new type and to work with r…
Sep 22, 2020
68e127a
Remove cross process lock (#14036)
joyceerhl Sep 22, 2020
352d9a5
Add API to get language server from external extensions (#14021)
rchiodo Sep 22, 2020
a531cba
Fix failing virtualenvwrapper Windows unit tests (#14012)
kimadeline Sep 22, 2020
221c0d5
make sure that we run our show code when a custom editor is shown (#1…
IanMatthewHuff Sep 22, 2020
367e002
Rely on AppInsights API for exceptions (#13878)
Sep 22, 2020
ed0e2a7
Fix HTML escaping to match what Jupyter does (#14038)
rchiodo Sep 22, 2020
f60eeaf
Have dependabot ignore pytest and py (#14039)
brettcannon Sep 23, 2020
5f09a26
Added environments reducer (#13953)
Sep 23, 2020
fd5abc1
Merge release back to master (#14059)
Sep 23, 2020
e31046b
Fix object sort order in tools tests (#14050)
karthiknadig Sep 23, 2020
66a4cb1
Update ubuntu images for GPU issue fix (#14064)
karthiknadig Sep 23, 2020
1a0c790
Added environments resolver (#14019)
Sep 25, 2020
6abde6b
Add Windows unit tests to the PR pipeline (#14106)
kimadeline Sep 25, 2020
d498e85
Do not opt users out of the insiders program if they have a stable ve…
Sep 25, 2020
12de21d
Do not quote isolated in exec module (#14108)
karthiknadig Sep 25, 2020
94da334
Update cell output and metadata using Edit API (#13737)
DonJayamanne Sep 25, 2020
57fedbd
Fix unit test broken by recent revert (#14122)
karthiknadig Sep 28, 2020
8b87f08
Merge remote-tracking branch 'origin/main' into rchiodo/merge_main_nods
rchiodo Sep 28, 2020
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
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ updates:
directory: /
schedule:
interval: daily
ignore:
- dependency-name: pytest # Due to Python 2.7 and #13776.
- dependency-name: py # Due to Python 2.7.

- package-ecosystem: 'pip'
directory: /news
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 2020.9.0 (14 September 2020)
## 2020.9.0 (23 September 2020)

### Enhancements

Expand All @@ -19,6 +19,8 @@
([#13831](https://github.com/Microsoft/vscode-python/issues/13831))
1. Enable custom editor support in stable VS code at 20%.
([#13890](https://github.com/Microsoft/vscode-python/issues/13890))
1. Upgraded to isort `5.5.3`.
([#14027](https://github.com/Microsoft/vscode-python/issues/14027))

### Fixes

Expand Down Expand Up @@ -57,6 +59,10 @@
([#13612](https://github.com/Microsoft/vscode-python/issues/13612))
1. Fix the behavior of the 'python.showStartPage' setting.
([#13706](https://github.com/Microsoft/vscode-python/issues/13706))
1. Correctly install ipykernel when launching from an interpreter.
([#13956](https://github.com/Microsoft/vscode-python/issues/13956))
1. Backup on custom editors is being ignored.
([#13981](https://github.com/Microsoft/vscode-python/issues/13981))

### Code Health

Expand All @@ -82,6 +88,11 @@
([#13729](https://github.com/Microsoft/vscode-python/issues/13729))
1. Fix nighly failure with beakerx.
([#13734](https://github.com/Microsoft/vscode-python/issues/13734))
## 2020.8.6 (15 September 2020)

### Fixes

1. Workaround problem caused by https://github.com/microsoft/vscode/issues/106547

### Thanks

Expand Down
Loading