Skip to content

Commit

Permalink
Final release preparations (#1866)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon authored Jun 5, 2018
1 parent 1b281d5 commit 90cf55c
Show file tree
Hide file tree
Showing 46 changed files with 29 additions and 56 deletions.
36 changes: 28 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
# Changelog

## 2018.5.0 (28 May 2018)
## 2018.5.0 (05 Jun 2018)

Thanks to the following projects which we fully rely on to provide some of
our features:
- [isort 4.2.15](https://pypi.org/project/isort/4.2.15/)
- [jedi 0.12.0](https://pypi.org/project/jedi/0.12.0/)
and [parso 0.2.0](https://pypi.org/project/parso/0.2.0/)
- [ptvsd 3.0.0](https://pypi.org/project/ptvsd/3.0.0/) and [4.1.1a1](https://pypi.org/project/ptvsd/4.1.1a1/)
- [ptvsd 3.0.0](https://pypi.org/project/ptvsd/3.0.0/) and [4.1.1a5](https://pypi.org/project/ptvsd/4.1.1a5/)
- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed)
- [rope](https://pypi.org/project/rope/) (user-installed)

And thanks to the many other projects which users can optionally choose from
and install to work with the extension. Without them the extension would not be
nearly as feature-rich and useful as it is.

### Enhancements

1. Add support for the [Black formatter](https://pypi.org/project/black/)
(thanks to [Josh Smeaton](https:/jarshwah) for the initial patch)
([#1153](https:/Microsoft/vscode-python/issues/1153))
1. Add the command 'Discover Unit Tests'.
1. Add the command `Discover Unit Tests`.
([#1474](https:/Microsoft/vscode-python/issues/1474))
1. Auto detect `*.jinja2` and `*.j2` extensions as Jinja templates, to enable debugging of Jinja templates.
([#1484](https:/Microsoft/vscode-python/issues/1484))
Expand All @@ -27,6 +31,8 @@ our features:
([#1194](https:/Microsoft/vscode-python/issues/1194))
1. Ensure debugged program is terminated when `Stop` debugging button is clicked.
([#1345](https:/Microsoft/vscode-python/issues/1345))
1. Fix indentation when function contains type hints.
([#1461](https:/Microsoft/vscode-python/issues/1461))
1. Ensure python environment activation works as expected within a multi-root workspace.
([#1476](https:/Microsoft/vscode-python/issues/1476))
1. Close communication channel before exiting the test runner.
Expand All @@ -37,20 +43,26 @@ our features:
([#1634](https:/Microsoft/vscode-python/issues/1634))
1. Ensure the display name of an interpreter does not get prefixed twice with the words `Python`.
([#1651](https:/Microsoft/vscode-python/issues/1651))
1. Enable code refactoring when using the new Analysis Engine.
([#1774](https:/Microsoft/vscode-python/issues/1774))
1. `editor.formatOnType` no longer breaks numbers formatted with underscores.
([#1779](https:/Microsoft/vscode-python/issues/1779))
1. `editor.formatOnType` now better handles multiline function arguments
([#1796](https:/Microsoft/vscode-python/issues/1796))
1. `Go to Definition` now works for functions which have numbers that use `_` as a separator (as part of our Jedi 0.12.0 upgrade).
([#180](https:/Microsoft/vscode-python/issues/180))
1. Display documentation for auto completion items when the feature to automatically insert of brackets for selected item is turned on.
([#452](https:/Microsoft/vscode-python/issues/452))
1. Ensure empty paths do not get added into `sys.path` by the Jedi language server. (this was fixed in the previous release in [#1471](https:/Microsoft/vscode-python/pull/1471))
([#677](https:/Microsoft/vscode-python/issues/677))
1. Resoves rename refactor issue that remvoes the last line of the source file when the line is being refactored and source does not end with an EOL.
1. Resolves rename refactor issue that remvoes the last line of the source file when the line is being refactored and source does not end with an EOL.
([#695](https:/Microsoft/vscode-python/issues/695))
1. Ensure the prompt to install missing packages is not displayed more than once.
([#980](https:/Microsoft/vscode-python/issues/980))

### Code Health

1. Add syntax highlighting to constraints.txt file to match that of piprequirements files
1. Add syntax highlighting to `constraints.txt` files to match that of `requirements.txt` files.
(thanks [Waleed Sehgal](https:/waleedsehgal))
([#1053](https:/Microsoft/vscode-python/issues/1053))
1. Refactor unit testing functionality to improve testability of individual components.
Expand All @@ -65,7 +77,7 @@ our features:
([#1410](https:/Microsoft/vscode-python/issues/1410))
1. Ensure none of the npm packages (used by the extension) rely on native dependencies.
([#1416](https:/Microsoft/vscode-python/issues/1416))
1. Remove explicit initialization of PYTHONPATH with the current workspace path in unit testing of modules with the experimental debugger.
1. Remove explicit initialization of `PYTHONPATH` with the current workspace path in unit testing of modules with the experimental debugger.
([#1465](https:/Microsoft/vscode-python/issues/1465))
1. Flag `program` in `launch.json` configuration items as an optional attribute.
([#1503](https:/Microsoft/vscode-python/issues/1503))
Expand All @@ -77,13 +89,13 @@ our features:
([#1569](https:/Microsoft/vscode-python/issues/1569))
1. Add tests for log points in the experimental debugger.
([#1582](https:/Microsoft/vscode-python/issues/1582))
1. Update typescript package to 2.8.3
1. Update typescript package to 2.8.3.
([#1604](https:/Microsoft/vscode-python/issues/1604))
1. Fix typescript compilation error.
([#1623](https:/Microsoft/vscode-python/issues/1623))
1. Fix unit tests used to test flask template debugging on AppVeyor for the experimental debugger.
([#1640](https:/Microsoft/vscode-python/issues/1640))
1. Change yarn install script to include the keyword `--lock-file`
1. Change yarn install script to include the keyword `--lock-file`.
(thanks [Lingyu Li](https:/lingyv-li/))
([#1682](https:/Microsoft/vscode-python/issues/1682))
1. Run unit tests as a pre-commit hook.
Expand All @@ -96,6 +108,14 @@ our features:
([#1732](https:/Microsoft/vscode-python/issues/1732))
1. Prompt user to reload Visual Studio Code when toggling between the analysis engines.
([#1747](https:/Microsoft/vscode-python/issues/1747))
1. Fix typo in unit test.
([#1794](https:/Microsoft/vscode-python/issues/1794))
1. Fix failing Prospector unit tests and add more tests for linters (with and without workspaces).
([#1836](https:/Microsoft/vscode-python/issues/1836))
1. Ensure `Outline` view doesn't overload the language server with too many requets, while user is editing text in the editor.
([#1856](https:/Microsoft/vscode-python/issues/1856))





Expand Down
2 changes: 0 additions & 2 deletions news/1 Enhancements/1153.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1 Enhancements/1474.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1 Enhancements/1484.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions news/3 Code Health/1053.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1068.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1109.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1280.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1339.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1410.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1416.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1465.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1503.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1551.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1552.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1569.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1582.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1604.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1623.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1640.md

This file was deleted.

2 changes: 0 additions & 2 deletions news/3 Code Health/1682.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1703.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1719.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1730.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1732.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1747.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1794.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1836.md

This file was deleted.

1 change: 0 additions & 1 deletion news/3 Code Health/1856.md

This file was deleted.

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": "2018.5.0-rc",
"version": "2018.5.0",
"publisher": "ms-python",
"author": {
"name": "Microsoft Corporation"
Expand Down

0 comments on commit 90cf55c

Please sign in to comment.