@withgraphite/graphite-cli 1.4.3 → 1.4.5
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 +30 -0
- package/16.js +1 -1
- package/16.js.map +1 -1
- package/graphite.js +1 -1
- package/package.json +2 -1
package/.CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Graphite CLI Changelog
|
|
2
2
|
|
|
3
|
+
# 1.4.5 2024-09-13
|
|
4
|
+
|
|
5
|
+
- Added support for working with and updating branches checked out across worktrees
|
|
6
|
+
- Added support for working with branches automatically rebased by graphite
|
|
7
|
+
|
|
8
|
+
- Fixed a bug where adding an undefined trunk would corrupt cli metadata
|
|
9
|
+
- Fixed a bug where `gt sync --all` would only clean up branches on the current trunk
|
|
10
|
+
- Improved `gt submit` performance by skipping unnecessary fetches
|
|
11
|
+
- Improved performance of deleting branches by only deleting required metadata
|
|
12
|
+
- Updated `gt checkout` to work while on a detached head
|
|
13
|
+
- Updated `gt submit` to submit branches that have never been submitted with Graphite
|
|
14
|
+
- Updated `gt sync` to better handle cases where the branch was updated outside of Graphite
|
|
15
|
+
- Updated `gt init --trunk` to warn against setting a trunk that does not exist locally
|
|
16
|
+
- Updated `gt sync` and `gt get` to work on untracked branches
|
|
17
|
+
|
|
18
|
+
# 1.4.4 2024-08-29
|
|
19
|
+
|
|
20
|
+
- Added new `gt unlink` command to unlink a branch from the currently associated PR
|
|
21
|
+
- Added better support for re-using branch names
|
|
22
|
+
- Added support for passing a branch name to `gt info`
|
|
23
|
+
- Added installation information to CLI releases
|
|
24
|
+
|
|
25
|
+
- Fixed a bug where rebases would not handle commits without a parent commit (e.g. original or orphaned commits)
|
|
26
|
+
- Fixed a bug where rebases with merge commits would cause conflicts with already merged commits
|
|
27
|
+
- Fixed a bug where request error logs could cause circular structure errors
|
|
28
|
+
- Updated `gt rename` to use the correct name when asking for a rename confirmation
|
|
29
|
+
- Updated `gt create --insert` to leave descendants in an un-restacked state when there are conflicts
|
|
30
|
+
- Updated `gt delete` to also prune branches
|
|
31
|
+
- Updated pre-push git hooks to better handle running in repo root
|
|
32
|
+
|
|
3
33
|
# 1.4.3 2024-08-09
|
|
4
34
|
|
|
5
35
|
- Added a `--stack` flag to `gt checkout` to only show current stack
|