Skip to content

Commit 7f86802

Browse files
committed
Preps v9.9
1 parent 648b260 commit 7f86802

File tree

4 files changed

+67
-272
lines changed

4 files changed

+67
-272
lines changed

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,26 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased]
7+
## [9.9.0] - 2019-07-21
88

99
### Added
1010

11+
- Adds guided (step-by-step) access to common Git commands (and their flags) via the all-new _Git Commands_ command (`gitlens.gitCommands`)
12+
- Quickly navigate and execute Git commands through easy-to-use menus where each command requires an explicit confirm step before executing
1113
- Adds _Open All Changes_, _Open All Changes with Working Tree_, _Open Files_, and _Open Revisions_ commands to files changed nodes in the views — closes [#760](https://github.com/eamodio/vscode-gitlens/issues/760)
14+
- Adds a new `${tips}` format token to show an indicator if the commit is a tip of any branches or tags — closes [#792](https://github.com/eamodio/vscode-gitlens/issues/792)
1215

1316
### Changed
1417

1518
- Improves performance and memory consumption
1619
- Changes the _Checkout_ command on remote branches to create and checkout a new local branch rather than checkout a detached HEAD — closes [#709](https://github.com/eamodio/vscode-gitlens/issues/709)
20+
- Changes folders in the views to expand by default when using _Tree Layout_
1721

1822
### Fixed
1923

2024
- Fixes [#791](https://github.com/eamodio/vscode-gitlens/issues/791) - Notification of unstashed changes in working directory on failed checkout
21-
- Fixes [#792](https://github.com/eamodio/vscode-gitlens/issues/792) - Show last commit message on repositories view instead of Git reference
2225
- Fixes [#795](https://github.com/eamodio/vscode-gitlens/issues/795) - Commit quick access icons replaced with open file actions in File History View
26+
- Fixes issue with the JSON schema of a configuration setting
2327

2428
## [9.8.5] - 2019-07-10
2529

@@ -54,7 +58,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
5458
### Changed
5559

5660
- Changes fetch, pull, and push commands to be executed in parallel, rather than sequentially
57-
- Changes _Search Commits_ (`gitlens.showCommitSearch`) command to prompt for a repository, if there is more than one
61+
- Changes _Search Commits_ command (`gitlens.showCommitSearch`) to prompt for a repository, if there is more than one
5862

5963
### Removed
6064

@@ -141,7 +145,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
141145
- Fixes issues with the _Show More Actions_ button on the _Details_ hover not working with renamed files
142146
- Fixes issues with the _Open File_, _Open Files_, _Open All Changes with Working Tree_, and _Apply Changes_ commands in the views not working with renamed files
143147
- Fixes issues with the _Open File_, _Open Files_, and _Apply Changes_ commands in the quick pick menus not working with renamed files
144-
- Fixes issues with the _Show Stashed Changes_ (`gitlens.showQuickStashList`) command and multiple repositories
148+
- Fixes issues with the _Show Stashed Changes_ command (`gitlens.showQuickStashList`) and multiple repositories
145149

146150
## [9.7.3] - 2019-05-11
147151

@@ -2996,6 +3000,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
29963000

29973001
- Initial release but still heavily a work in progress.
29983002

3003+
[9.9.0]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.5...eamodio:v9.9.0
29993004
[9.8.5]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.4...eamodio:v9.8.5
30003005
[9.8.4]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.3...eamodio:v9.8.4
30013006
[9.8.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.8.2...eamodio:v9.8.3

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,6 +634,10 @@ The compare view provides the following features,
634634

635635
#### Other Commands (not a complete list)
636636

637+
- Adds a _Git Commands_ command (`gitlens.gitCommands`) to provide a guided (step-by-step) access to common Git commands (and their flags)
638+
639+
- Quickly navigate and execute Git commands through easy-to-use menus where each command requires an explicit confirm step before executing
640+
637641
- Adds a _Copy Commit ID to Clipboard_ command (`gitlens.copyShaToClipboard`) to copy the commit id (sha) of the current line to the clipboard or from the most recent commit to the current branch, if there is no current editor
638642

639643
- Adds a _Copy Commit Message to Clipboard_ command (`gitlens.copyMessageToClipboard`) to copy the commit message of the current line to the clipboard or from the most recent commit to the current branch, if there is no current editor

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gitlens",
33
"displayName": "GitLens — Git supercharged",
44
"description": "Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more",
5-
"version": "9.8.5",
5+
"version": "9.9.0",
66
"author": {
77
"name": "Eric Amodio",
88
"email": "[email protected]"

0 commit comments

Comments
 (0)