Skip to content

Commit e7ebfbf

Browse files
Updates CHANGELOG
1 parent 76fc9aa commit e7ebfbf

File tree

1 file changed

+52
-2
lines changed

1 file changed

+52
-2
lines changed

CHANGELOG.md

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,67 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1313
- Adds support for the latest OpenAI and Anthropic models for GitLens' experimental AI features
1414
- Adds a new `gitlens.views.collapseWorktreesWhenPossible` setting to specify whether to try to collapse the opened worktrees into a single (common) repository in the views when possible
1515
- Shows a PR’s code suggestions anywhere we currently display a PR node in our GitLens views (Commits, Branches, Remotes).
16+
- Adds a preview of [Launchpad](https://www.gitkraken.com/solutions/launchpad), a new Pro feature bringing your GitHub pull requests into a unified, categorized list:
17+
- Open using the new _GitLens: Open Launchpad_ command
18+
- Categorizes pull requests by status:
19+
- _Current Branch_: Pull requests associated with your current branch
20+
- _Ready to Merge_: Pull requests without conflicts, ci failures, change suggestions or other issues preventing merge
21+
- _Blocked_: Pull requests with conflicts, CI failures, or that have no reviewers assigned
22+
- _Needs Your Review_: Pull requests waiting for your review
23+
- _Requires Follow-Up_: Pull requests that have been reviewed and need follow-up
24+
- _Draft_: Draft pull requests
25+
- _Pinned_: Pull requests you have pinned
26+
- _Snoozed_: Pull requests you have snoozed
27+
- _Other_: Other pull requests
28+
- Action on a pull request directly from the Launchpad:
29+
- Merge a pull request
30+
- Open a pull request on GitHub
31+
- Switch to or create a branch or worktree for a pull request to review changes
32+
- Display a pull request's details in the _Overview_
33+
- Open a pull request's changes in the multi-diff editor
34+
- View a pull request's branch in the _Commit Graph_
35+
- View or create code suggestions for a pull request
36+
- Pin or snooze a pull request in the Launchpad
37+
- Adds the following settings:
38+
- `gitlens.launchpad.ignoredRepositories`: Array of repositories with `owner/name` format to ignore in the Launchpad
39+
- `gitlens.launchpad.staleThreshold`: Value in days after which a pull request is considered stale and moved to the _Other_ category
40+
- Adds a preview of the _Launchpad_ indicator, a new Pro feature, to the status bar:
41+
- Opens the Launchpad when clicked
42+
- Shows the top pull request and its status in the status bar
43+
- Also highlights your top pull request in the launchpad when opened from the indicator
44+
- Provides a summary of your most critical pull requests on hover
45+
- Each summary line includes a link to open the Launchpad to that category
46+
- Adds the following settings:
47+
`gitlens.launchpad.indicator.enabled`: Specifies whether to show the Launchpad indicator in the status bar
48+
`gitlens.launchpad.indicator.icon`: Specifies the style of the Launchpad indicator icon
49+
`gitlens.launchpad.indicator.label`: Specifies the style of the Launchpad indicator label
50+
`gitlens.launchpad.indicator.groups`: Specifies which critical categories of pull requests to summarize in the indicator tooltip
51+
`gitlens.launchpad.indicator.useColors`: Specifies whether to use colors in the indicator
52+
`gitlens.launchpad.indicator.openInEditor`: Specifies whether to open the Launchpad in the editor when clicked
53+
`gitlens.launchpad.indicator.polling.enabled`: Specifies whether to regularly check for changes to pull requests
54+
`gitlens.launchpad.indicator.polling.interval`: Specifies the interval in minutes to check for changes to pull requests
55+
- Adds support for Jira Cloud integration as a GitKraken account cloud integration:
56+
- When connected, enables rich Jira autolinks in commit messages everywhere autolinks are supported in GitLens
57+
- Automatically syncs from a connected GitKraken account
58+
- Adds a _Cloud Integrations_ button to the GitKraken Account view and a new `GitLens: Manage Cloud Integrations` command to manage connected cloud integrations
59+
- Adds a _Manage Jira_ button to _Inspect_ and a link in Autolink settings to connect to Jira
1660

1761
### Changed
1862

1963
- Improves performance when creating colors derived from the VS Code theme
64+
- Changes the command to open the Launchpad in the editor (formerly _Focus View_) from _GitLens: Show Focus_ to _GitLens: Open Launchpad in Editor_
65+
- Renames the setting `gitlens.focus.allowMultiple` to `gitlens.launchpad.allowMultiple`
66+
- Updates most deep link prompts to quick picks or quick inputs, moves most prompts to before a repository is opened.
67+
- Updates Pro upgrade links to use the newer gitkraken.dev site
2068

2169
### Fixed
2270

2371
- Fixes [#3221](https://github.com/gitkraken/vscode-gitlens/issues/3221) - Cannot use word "detached" in branch names
2472
- Fixes [#3197](https://github.com/gitkraken/vscode-gitlens/issues/3197) - Only emojify standalone emojis — thanks to [PR #3208](https://github.com/gitkraken/vscode-gitlens/pull/3208) by may ([@m4rch3n1ng](https://github.com/m4rch3n1ng))
2573
- Fixes [#3180](https://github.com/gitkraken/vscode-gitlens/issues/3180) - Focus View feedback button is not working
2674
- Fixes [#3179](https://github.com/gitkraken/vscode-gitlens/issues/3179) - The checkmarks in cherry pick are not displayed
75+
- Fixes [#3249](https://github.com/gitkraken/vscode-gitlens/issues/3249) - Error "Cannot read properties of null (reading 'map')
76+
- Fixes [#3198] (https://github.com/gitkraken/vscode-gitlens/issues/3198) - Repository location in cloud workspace doesn't work when the repo descriptor does not contain a url
2777

2878
## [14.9.0] - 2024-03-06
2979

@@ -557,7 +607,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
557607
- Adds the ability to rename stashes — closes [#2538](https://github.com/gitkraken/vscode-gitlens/issues/2538)
558608
- Adds a new _Rename Stash..._ command to the _Stashes_ view
559609
- Adds new _Commit Graph_ features and improvements
560-
- Adds a _Push_ or _Pull_ toolbar button depending the current branch being ahead or behind its upstream
610+
- Adds a _Push_ or _Pull_ toolbar button depending the current branch being ahead or behind it's upstream
561611
- Adds support for the _Commit Graph_ over [Visual Studio Live Share](https://visualstudio.microsoft.com/services/live-share/) sessions
562612
- Adds the ability to move all of the columns, including the ones that were previously unmovable
563613
- Automatically switches column headers from text to icons when the column's width is too small for the text to be useful
@@ -778,7 +828,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
778828
- Adds a new _Filter Graph_ dropdown button at the start of the search bar
779829
- Adds ability to quickly switch between _Show All Local Branches_ and _Show Current Branch Only_ branch filtering options
780830
- _Show All Local Branches_ — displays all local branches (default)
781-
- _Show Current Branch Only_ — displays only the current branch and its upstream remote (if exists and _Hide Remote Branches_ isn't enabled)
831+
- _Show Current Branch Only_ — displays only the current branch and it's upstream remote (if exists and _Hide Remote Branches_ isn't enabled)
782832
- Adds ability to hide all remote branches, stashes, and tags
783833
- Adds the ability to dim (deemphasize) merge commits
784834
- Adds a new header bar to provide quick access to common actions

0 commit comments

Comments
 (0)