@withgraphite/graphite-cli 1.3.9 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Graphite CLI Changelog
2
2
 
3
+ # 1.4.0 2024-07-03
4
+
5
+ **This version of the Graphite CLI adds support for working on multiple trunks that will be rolled out over the coming weeks via a server-side feature flag.**
6
+
7
+ If you'd like to be included in the initial rollout of these changes, please let us know in the #cli-beta channel on our Community Slack. Since we are using a server-side feature flag, updating to `1.4.0` alone will not enable the new behavior.
8
+
9
+ - Major changes to the internal gt data model to support having multiple trunks at once
10
+ - Added new `gt config` repository options to:
11
+ - Add an additional trunk
12
+ - Remove additional trunks
13
+ - Configure a local trunk to open all PRs against a different target trunk, supporting workflows where users work locally off a descendant of their remote trunk
14
+ - Updated `gt trunk` to print out the current trunk name instead of checkout the trunk
15
+ - Added a `--all` option to `gt trunk` to print out all the configured trunks
16
+ - Added a `--all` option to `gt log` to show all branches across all configured trunks
17
+ - Added a `--all` option to `gt checkout` to show all branches across all configured trunks in the interactive selector
18
+ - Added a `--all` option to `gt move` to show all branches across all configured trunks in the interactive selector
19
+ - Added a `--all` option to `gt sync` to pull all configured trunks and sync all branches across all these trunks
20
+ - Added a `--target-trunk` option to `gt submit` to defined what trunk to open PRs against on remote. By default only syncs the current trunk branches.
21
+ - Updated `gt sync` and `gt submit` to handle cases where a merged PR's merge commit is not actually included in the up-to-date trunk
22
+ - Updated `gt init` to reset gt back to single trunk, warning the user if they have multiple trunks currently configured
23
+
24
+ - Fixed a bug during command initialization that caused the CLI to hang infinitely
25
+
26
+ # 1.3.10 2024-06-26
27
+
28
+ - Updated `gt squash` to no-op when there are no commits to squash or only a single commit
29
+ - Updated all prompt suggestions to support fuzzy searching branches
30
+
3
31
  # 1.3.9 2024-06-18
4
32
 
5
33
  - Updated `gt demo` to initialize Graphite automatically if the current repo has not yet been initialized