@withgraphite/graphite-cli 1.4.1 → 1.4.3
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 +31 -3
- package/16.js +1 -1
- package/16.js.map +1 -1
- package/468.js +1 -1
- package/graphite.js +1 -1
- package/package.json +1 -1
package/.CHANGELOG.md
CHANGED
|
@@ -1,10 +1,38 @@
|
|
|
1
1
|
# Graphite CLI Changelog
|
|
2
2
|
|
|
3
|
+
# 1.4.3 2024-08-09
|
|
4
|
+
|
|
5
|
+
- Added a `--stack` flag to `gt checkout` to only show current stack
|
|
6
|
+
|
|
7
|
+
- Fixed a bug where `gt log` and `gt checkout` don't work on untracked branches
|
|
8
|
+
- Fixed a bug where unsetting a trunk would not fully unset it
|
|
9
|
+
- Fixed a bug where `gt` throws a cannot read undefined error while reading 'validationResult'
|
|
10
|
+
- Fixed a bug where `gt track` might get into an infinite loop while recovering diverged branches
|
|
11
|
+
- Improved merge conflict status to handle unstaged changes during rebasing
|
|
12
|
+
- Updated instructions for committing untracked files to be more clear
|
|
13
|
+
- Updated networking error diagnostics
|
|
14
|
+
- Updated `gt pr`, `gt docs`, and `gt dash` to print out the URL being opened
|
|
15
|
+
|
|
16
|
+
# 1.4.2 2024-07-30
|
|
17
|
+
|
|
18
|
+
- Added support for `--verbose/-v` in `gt create` and `gt modify` to include diff in commit message template
|
|
19
|
+
- Added a `--add` flag to `gt trunk` to configure an additional trunk branch
|
|
20
|
+
|
|
21
|
+
- Updated list of unmerged conflict files to print paths relative to the current working directory
|
|
22
|
+
- Updated `gt create` to suppress the detached HEAD message on every create
|
|
23
|
+
- Update pre-push hook error messages to include more details
|
|
24
|
+
- Updated `gt demo` to work in repos the user cannot submit to yet
|
|
25
|
+
- Fixed a bug where the branch name date prefix was incorrect in `gt config`
|
|
26
|
+
- Fixed a bug where `gt submit` would not fetch the branch before submitting to determine if it needs submitting
|
|
27
|
+
- Fixed a bug where `gt rebase --continue` would swallow the post-rewrite git hook output
|
|
28
|
+
- Fixed a bug where `gt track` would incorrectly tell you to track the branch
|
|
29
|
+
- Fixed a bug where the `--force` flag was not respected in `gt submit` when the remote was updated
|
|
30
|
+
- Fixed a bug in the interactive selector with `--all` where trunks could not be correctly selected
|
|
31
|
+
|
|
3
32
|
# 1.4.1 2024-07-10
|
|
4
33
|
|
|
5
34
|
- Added a `--trunk/-t` to `gt checkout` to switch to the current trunk
|
|
6
35
|
|
|
7
|
-
- Fixed bug where most gt commands would hang indefinitely due to an infinite loop
|
|
8
36
|
- Fixed bug where `gt sync` would try to update a trunk you don't have configured
|
|
9
37
|
- Fixed bug in `gt demo` that incorrectly created a "-p" directory to run the demo in
|
|
10
38
|
- Updated `gt init --reset` to also reset PR metadata
|
|
@@ -26,8 +54,8 @@ If you'd like to be included in the initial rollout of these changes, please let
|
|
|
26
54
|
- Added a `--all` option to `gt log` to show all branches across all configured trunks
|
|
27
55
|
- Added a `--all` option to `gt checkout` to show all branches across all configured trunks in the interactive selector
|
|
28
56
|
- 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
|
|
57
|
+
- Added a `--all` option to `gt sync` to pull all configured trunks and sync all branches across all these trunks. By default only syncs the current trunk branches.
|
|
58
|
+
- Added a `--target-trunk` option to `gt submit` to define what trunk to open PRs against on remote.
|
|
31
59
|
- 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
60
|
- Updated `gt init` to reset gt back to single trunk, warning the user if they have multiple trunks currently configured
|
|
33
61
|
|