@withgraphite/graphite-cli 1.3.10 → 1.4.1

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,38 @@
1
1
  # Graphite CLI Changelog
2
2
 
3
+ # 1.4.1 2024-07-10
4
+
5
+ - Added a `--trunk/-t` to `gt checkout` to switch to the current trunk
6
+
7
+ - Fixed bug where most gt commands would hang indefinitely due to an infinite loop
8
+ - Fixed bug where `gt sync` would try to update a trunk you don't have configured
9
+ - Fixed bug in `gt demo` that incorrectly created a "-p" directory to run the demo in
10
+ - Updated `gt init --reset` to also reset PR metadata
11
+ - Reduced the maximum number of parallel git calls in order to reduce spawn errors
12
+
13
+ # 1.4.0 2024-07-03
14
+
15
+ **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.**
16
+
17
+ 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.
18
+
19
+ - Major changes to the internal gt data model to support having multiple trunks at once
20
+ - Added new `gt config` repository options to:
21
+ - Add an additional trunk
22
+ - Remove additional trunks
23
+ - 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
24
+ - Updated `gt trunk` to print out the current trunk name instead of checkout the trunk
25
+ - Added a `--all` option to `gt trunk` to print out all the configured trunks
26
+ - Added a `--all` option to `gt log` to show all branches across all configured trunks
27
+ - Added a `--all` option to `gt checkout` to show all branches across all configured trunks in the interactive selector
28
+ - Added a `--all` option to `gt move` to show all branches across all configured trunks in the interactive selector
29
+ - Added a `--all` option to `gt sync` to pull all configured trunks and sync all branches across all these trunks
30
+ - 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.
31
+ - 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
32
+ - Updated `gt init` to reset gt back to single trunk, warning the user if they have multiple trunks currently configured
33
+
34
+ - Fixed a bug during command initialization that caused the CLI to hang infinitely
35
+
3
36
  # 1.3.10 2024-06-26
4
37
 
5
38
  - Updated `gt squash` to no-op when there are no commits to squash or only a single commit