Skip to content

Commit 4ea330c

Browse files
authored
17.7 Release Notes (#130)
Adds 17.7 release notes
1 parent b49ee88 commit 4ea330c

8 files changed

+163
-0
lines changed
4.59 MB
Binary file not shown.
14.9 MB
Binary file not shown.
411 KB
Loading

_images/gl-17-7-hero.png

634 KB
Loading
402 KB
Loading
17.5 MB
Binary file not shown.
4.34 MB
Binary file not shown.

gitlens/gitlens-release-notes-current.md

Lines changed: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,169 @@ Features marked with `PREVIEW` require a GitKraken Account, with access level ba
1616

1717
---
1818

19+
<a id="v17-7"></a>
20+
21+
## Version 17.7
22+
23+
#### Tuesday, November 11, 2025
24+
GitLens 17.7 expands Commit Composer with branch recomposition capabilities, transforms the Commit Graph with powerful new search operators, file history visualization, and faster performance, and enhances commit details with more context and file actions.
25+
26+
<img src="/wp-content/uploads/gl-17-7-hero.png" class="help-center-img img-bordered">
27+
28+
### Commit Composer: Branch Recomposition
29+
30+
Commit Composer now lets you clean up and reorganize commits on existing branches, making it perfect for preparing pull requests or refining your commit history before pushing.
31+
32+
<img src="/wp-content/uploads/gl-17-7-recompose-branch.png" class="help-center-img img-bordered">
33+
34+
#### Recompose Entire Branches
35+
36+
Open Commit Composer from any branch in the Commit Graph (or anywhere branches appear in GitLens) to inspect and reorganize its commits. The composer creates draft commits you can review before applying changes to your repository.
37+
38+
**Auto-Recompose with AI**: Let AI analyze your branch and restructure commits into logical, well-documented units. Choose your preferred model and provide custom instructions to match your team's conventions. (Pro tip: Set default instructions in the "Generate Commits: Custom Instructions" setting to save time.)
39+
40+
**Manual Control**: Review AI suggestions, regenerate specific commit messages, or manually edit messages and change organization. The composer gives you complete flexibility to craft the commit story that works best.
41+
42+
<video src="/wp-content/uploads/gl-17-7-recompose-example.mp4" autoplay loop controls muted class="help-center-video"></video>
43+
44+
#### Enhanced Composer Capabilities
45+
46+
Commit Composer now handles edge cases that previously blocked composition:
47+
48+
- **Untracked files**: Working changes now include untracked files, so all modifications can be composed together
49+
- **New repositories**: Compose your initial commits even before a base commit exists
50+
- **Performance boost**: Significantly faster rendering when working with changes across many files
51+
52+
### Commit Graph Enhancements
53+
54+
#### File History Visualization
55+
56+
The Commit Graph now visualizes complete file histories, making it easy to understand how specific files evolved over time.
57+
58+
Right-click any file in your IDE and select "File History > Open File History in Commit Graph" to filter the graph to commits that modified that file. Each commit displays the file's changes in the Commit Details panel, giving you a focused view of how the file developed.
59+
60+
You can also manually filter using `file:"path/filename"` syntax.
61+
62+
<video src="/wp-content/uploads/gl-17-7-file-filter-example.mp4" autoplay loop controls muted class="help-center-video"></video>
63+
64+
#### Search Enhancements
65+
66+
**Reference and Range Searches**: The new `ref:` operator lets you search by references or commit ranges. Natural language search leverages this automatically, so queries like "show me all commits on debt/graph-selection-jump that aren't on main" or "commits after tag v17.6.0" work seamlessly.
67+
68+
**Tip Filtering**: New `is:tip` and `type:tip` operators isolate branch and tag tips, helping you quickly identify meaningful entry points in your history without visual scanning.
69+
70+
**Search History**: Arrow up/down through previous search queries to quickly revisit recent searches.
71+
72+
<video src="/wp-content/uploads/gl-17-7-search-history-example.mp4" autoplay loop controls muted class="help-center-video"></video>
73+
74+
#### Solo Branches and Tags
75+
76+
Focus on a single branch or tag with the new "Solo" action, which automatically hides all other references using the `ref:` filter operator.
77+
78+
#### Workflow Improvements
79+
80+
- **Auto-select WIP**: The WIP row automatically selects when you have working changes, keeping your focus on current work
81+
- **Enhanced WIP row**: The WIP row now shows the number of changed files and lines, providing more context at a glance.
82+
- **Focused row preservation**: The graph maintains your selected row even when new data refreshes the view. This solved an annoying issue that resulted in losing context in the graph during updates.
83+
84+
#### Commit Details
85+
86+
**Commit Reachability**: Commit Details now display which branches and tags contain a specific commit, giving you instant visibility into how changes have propagated across your repository.
87+
88+
<video src="/wp-content/uploads/gl-17-7-commit-reachability-example.mp4" autoplay loop controls muted class="help-center-video"></video>
89+
90+
**File List Actions**: Context menus now provide the full range of file operations you expect from other IDE file lists—opening files, viewing history, applying changes, and more—directly from Commit Details.
91+
92+
<img src="/wp-content/uploads/gl-17-7-file-list-actions.png" class="help-center-img img-bordered">
93+
94+
----
95+
96+
### Added
97+
98+
- Adds new _Commit Composer_ features and improvements
99+
- Adds ability to recompose existing branches via the _Recompose Commits (Preview)_ command in the context menu of branches and from the Command Palette ([#4598](https://github.com/gitkraken/vscode-gitlens/issues/4598), [#4599](https://github.com/gitkraken/vscode-gitlens/issues/4599))
100+
- Adds drag and drop support to reorder auto-composed commits in the commit list ([#4433](https://github.com/gitkraken/vscode-gitlens/issues/4433))
101+
- Adds support for untracked files ([#4636](https://github.com/gitkraken/vscode-gitlens/issues/4636))
102+
- Adds support for composing without a base commit ([#4637](https://github.com/gitkraken/vscode-gitlens/issues/4637))
103+
- Greatly improves performance by virtualizing file diffs ([#4675](https://github.com/gitkraken/vscode-gitlens/issues/4675))
104+
- Improves some cases where staging or working tree changes are incorrectly detected ([#4667](https://github.com/gitkraken/vscode-gitlens/issues/4667))
105+
- Adds a link to the custom instructions setting in the _Commit Composer_ view
106+
- Adds ability to explain unpushed changes via the _Explain Unpushed Changes_ command in the context menu of branches in the _Commit Graph_ and views ([#4443](https://github.com/gitkraken/vscode-gitlens/issues/4443))
107+
- Adds improved experience to the _Commit Graph_
108+
- Improves rendering, scrolling, and selection performance and stability
109+
- Adds "pill-style" stats to the "Work in Progress" (WIP) row in the _Commit Graph_
110+
- Adds new keyboard navigation support: <kbd>Home</kbd>/<kbd>End</kbd> to navigate to the first/last row, <kbd>Page Up</kbd>/<kbd>Page Down</kbd> to navigate by page
111+
- Adds ability to show file or folder histories on the _Commit Graph_ ([#4725](https://github.com/gitkraken/vscode-gitlens/issues/4725))
112+
- Adds _Open File History in Commit Graph_ command to files in views
113+
- Adds _Open Folder History in Commit Graph_ command to folders in the Explorer view
114+
- Adds new _Solo Branch_ and _Solo Tag_ commands to quickly filter the _Commit Graph_ view to a specific branch or tag ([#4739](https://github.com/gitkraken/vscode-gitlens/issues/4739))
115+
- Adds _Solo Branch in Commit Graph_ and _Solo Tag in Commit Graph_ commands to the context menu of branches and tags in views
116+
if there are uncommitted changes
117+
- Changes to select the "Work in progress" (WIP) row in the _Commit Graph_ by default if there are uncommitted changes ([#4716](https://github.com/gitkraken/vscode-gitlens/issues/4716))
118+
- Adds `gitlens.graph.initialRowSelection` setting to specify whether to select the "Work in progress" (WIP) row instead of HEAD
119+
- Adds improved search experience on the _Commit Graph_, _Search & Compare_ view, and in the _Search Commits_ command
120+
- Adds support for reference or range commit searches ([#4723](https://github.com/gitkraken/vscode-gitlens/issues/4723))
121+
- Adds `ref:` search operator to filter commits by specific references (branches, tags, SHAs) or commit ranges
122+
- Adds natural language support to allow for more powerful queries
123+
- e.g. "show me all commits on `feature-branch` that aren't on `main`
124+
- e.g. "show me all commits after tag v17.6.0"
125+
- Adds ability to filter/search to branch & tag tips ([#4726](https://github.com/gitkraken/vscode-gitlens/issues/4726))
126+
- Adds `is:tip` search operator to filter to only commits directly pointed to by a branch or tag
127+
- Adds a navigable search history to the search box on the _Commit Graph_ ([#4724](https://github.com/gitkraken/vscode-gitlens/issues/4724))
128+
- Allows navigation with arrow keys and deletion of history items
129+
- Adds a _No Results_ message to the _Commit Graph_ when there are no search results
130+
- Adds new experience improvements to the _Commit Details_ and _Graph Details_ views
131+
- Adds "pill-style" file changed stats
132+
- Adds rich context menus to files, similar to the tree views
133+
- Adds the ability to see which branches and tags contain a specific commit([#4737](https://github.com/gitkraken/vscode-gitlens/issues/4737))
134+
- Adds the ability to see which files are matched by a search on the _Commit Graph_
135+
- Adds a filter toggle button to switch between showing all files, highlighting matched files, and only showing matched files
136+
- Adds a new _Safe Hard Reset_ (`--keep`) option to Git _reset_ command ([#4720](https://github.com/gitkraken/vscode-gitlens/issues/4720))
137+
- Adds sort context menu toggles for _Branches_, _Contributors_, _Remotes_, _Repositories_, _Tags_, and _Worktrees_ views ([#4738](https://github.com/gitkraken/vscode-gitlens/issues/4738))
138+
- Adds a new `gitlens.sortWorktreesBy` setting to specify the sort order for worktrees
139+
- Adds support for Claude 4.5 Haiku model and hides older Claude models for GitLens' AI features
140+
- Adds "Copy Changes (Patch)" to uncommitted files in the _Worktrees_, _Commit Details_, and _Graph Details_ views
141+
- Adds "inline" multiline commit message support to the _Commit Graph_
142+
- Adds _Next Change_ and _Previous Change_ navigation commands to the editor toolbar when the _Changes Annotations_ are active
143+
- Adds keybinding support for copy actions (<kbd>Ctrl+C</kbd> / <kbd>Cmd+C</kbd>) in the _Launchpad_ view
144+
- Adds _Quick Show Commit_ (`gitlens.showQuickCommitDetails`) command to the Command Palette
145+
146+
### Changed
147+
148+
- Improves performance and reduces overhead in many areas
149+
- Faster/less intensive detection of uncommitted changes
150+
- Faster/less intensive conflict file detection
151+
- Greatly improves performance providing the status of worktrees
152+
- Reduces view refresh frequency related to fetch times to avoid extra processing and re-rendering
153+
- Changes to use the "merge target" when we are creating pull requests ([#4709](https://github.com/gitkraken/vscode-gitlens/issues/4709), [#4734](https://github.com/gitkraken/vscode-gitlens/issues/4734))
154+
- Changes the minimum VS Code version to 1.95.0 ([#4690](https://github.com/gitkraken/vscode-gitlens/issues/4690), [#4691](https://github.com/gitkraken/vscode-gitlens/issues/4691))
155+
- Improves MCP checks and adds offline detection ([#4687](https://github.com/gitkraken/vscode-gitlens/issues/4687))
156+
- Improves reference/revision range entry in reference pickers
157+
- Consolidates (and fixes missing) progress indicators and spinners on the _Commit Graph_
158+
159+
### Fixed
160+
161+
- Fixes an issue where the _Home_ view would not update when switching repositories ([#4717](https://github.com/gitkraken/vscode-gitlens/issues/4717))
162+
- Fixes intermittent stuck loading state on the _Commit Graph_ ([#4669](https://github.com/gitkraken/vscode-gitlens/issues/4669))
163+
- Fixes underlines showing on home branch actions ([#4703](https://github.com/gitkraken/vscode-gitlens/issues/4703))
164+
- Fixes _Inspect_ view not showing uncommitted files on the Inspect tab ([#4714](https://github.com/gitkraken/vscode-gitlens/issues/4714))
165+
- Fixes _Commit Graph_ losing row selection when graph updates ([#4544](https://github.com/gitkraken/vscode-gitlens/issues/4544))
166+
- Fixes "Element with id already registered" error on comparison w/ multiple repos ([#4521](https://github.com/gitkraken/vscode-gitlens/issues/4521))
167+
- Fixes _Commit Composer_ diffs misaligned with large editor font sizes ([#4573](https://github.com/gitkraken/vscode-gitlens/issues/4573))
168+
- Fixes MCP installation flow from proceeding in cases where it shouldn't ([#4672](https://github.com/gitkraken/vscode-gitlens/issues/4672), [#4673](https://github.com/gitkraken/vscode-gitlens/issues/4673), [#4674](https://github.com/gitkraken/vscode-gitlens/issues/4674))
169+
- Fixes missing layout commands in view menus
170+
- Fixes stage/unstage failures with large file set by adding batching
171+
- Fixes copying untracked files as a patch
172+
- Fixes an issue where the "hidden references" control on the _Commit Graph_ could still receive focus
173+
- Fixes issues with inline versus block Markdown rendering
174+
- Fixes inconsistencies in the Work-in-Progress (WIP) statistics
175+
- Fixes an issue where the "visible day range" on the _Commit Graph_ minimap were not updating
176+
- Fixes showing overview mode when selecting a Work-in-Progress (WIP) row
177+
- Fixes path issues in untracked files and tree file parsing
178+
- Fixes action color on the merge/rebase status component
179+
- Fixes the copy shortcut key on grouped views
180+
- Fixes issue to ensure the immediate firing of repository close events to avoid potential deadlock issues
181+
19182
<a id="v17-6"></a>
20183

21184
## Version 17.6

0 commit comments

Comments
 (0)