@withgraphite/graphite-cli 1.6.0 → 1.6.2

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,23 @@
1
1
  # Graphite CLI Changelog
2
2
 
3
+ # 1.6.2 2025-05-02
4
+
5
+ - `gt track` shows the exact number of commits that will go into the new branch, making it easier to spot oversized stacks.
6
+ - Updated git fetch commands to longer fetch tags, reducing network usage and speeding up operations.
7
+
8
+ - Fixed a bug in `gt pr` where branch names were interpreted as a PR number if they started with a digit.
9
+ - Fixed a bug in `gt submit` where PR descriptions were being generated larger than the GitHub PR description limit.
10
+ - Fixed a bug in `gt submit` where PR titles were being generated larger than the GitHub PR title limit.
11
+ - Fixed a bug in `gt submit` where pushing all the branches in a stack could partially fail leading to inconsistent diffs in some PRs.
12
+ - Fixed a bug in `gt submit` where temporary branches were not being cleaned up correctly.
13
+ - Fixed a bug in `gt create` where the branch name was incorrectly added to the commit message.
14
+
15
+ # 1.6.1 2025-03-21
16
+
17
+ - Fixed a bug where in certain cases, trunk commits could be included in a tracked branch, resulting in many Graphite operations hanging or failing.
18
+ - Fixed a bug where certain cases of syncing a branch submitted outside of Graphite would crash the CLI.
19
+ - Added better protections against running too many `git` subprocesses.
20
+
3
21
  # 1.6.0 2025-03-07
4
22
 
5
23
  - Added support for multiple `-m` flags in `gt create`, `gt modify`, and `gt squash`.