@withgraphite/graphite-cli 1.4.2 → 1.4.4
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 +28 -0
- package/16.js +1 -1
- package/16.js.map +1 -1
- package/468.js +1 -1
- package/build/index.html +1 -5
- package/graphite.js +1 -1
- package/package.json +2 -1
package/.CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Graphite CLI Changelog
|
|
2
2
|
|
|
3
|
+
# 1.4.4 2024-08-29
|
|
4
|
+
|
|
5
|
+
- Added new `gt unlink` command to unlink a branch from the currently associated PR
|
|
6
|
+
- Added better support for re-using branch names
|
|
7
|
+
- Added support for passing a branch name to `gt info`
|
|
8
|
+
- Added installation information to CLI releases
|
|
9
|
+
|
|
10
|
+
- Fixed a bug where rebases would not handle commits without a parent commit (e.g. original or orphaned commits)
|
|
11
|
+
- Fixed a bug where rebases with merge commits would cause conflicts with already merged commits
|
|
12
|
+
- Fixed a bug where request error logs could cause circular structure errors
|
|
13
|
+
- Updated `gt rename` to use the correct name when asking for a rename confirmation
|
|
14
|
+
- Updated `gt create --insert` to leave descendants in an un-restacked state when there are conflicts
|
|
15
|
+
- Updated `gt delete` to also prune branches
|
|
16
|
+
- Updated pre-push git hooks to better handle running in repo root
|
|
17
|
+
|
|
18
|
+
# 1.4.3 2024-08-09
|
|
19
|
+
|
|
20
|
+
- Added a `--stack` flag to `gt checkout` to only show current stack
|
|
21
|
+
|
|
22
|
+
- Fixed a bug where `gt log` and `gt checkout` don't work on untracked branches
|
|
23
|
+
- Fixed a bug where unsetting a trunk would not fully unset it
|
|
24
|
+
- Fixed a bug where `gt` throws a cannot read undefined error while reading 'validationResult'
|
|
25
|
+
- Fixed a bug where `gt track` might get into an infinite loop while recovering diverged branches
|
|
26
|
+
- Improved merge conflict status to handle unstaged changes during rebasing
|
|
27
|
+
- Updated instructions for committing untracked files to be more clear
|
|
28
|
+
- Updated networking error diagnostics
|
|
29
|
+
- Updated `gt pr`, `gt docs`, and `gt dash` to print out the URL being opened
|
|
30
|
+
|
|
3
31
|
# 1.4.2 2024-07-30
|
|
4
32
|
|
|
5
33
|
- Added support for `--verbose/-v` in `gt create` and `gt modify` to include diff in commit message template
|