@withgraphite/graphite-cli 1.4.0 → 1.4.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 +27 -2
- package/16.js +1 -1
- package/16.js.map +1 -1
- package/build/index.html +5 -1
- package/graphite.js +1 -1
- package/package.json +1 -1
package/.CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Graphite CLI Changelog
|
|
2
2
|
|
|
3
|
+
# 1.4.2 2024-07-30
|
|
4
|
+
|
|
5
|
+
- Added support for `--verbose/-v` in `gt create` and `gt modify` to include diff in commit message template
|
|
6
|
+
- Added a `--add` flag to `gt trunk` to configure an additional trunk branch
|
|
7
|
+
|
|
8
|
+
- Updated list of unmerged conflict files to print paths relative to the current working directory
|
|
9
|
+
- Updated `gt create` to suppress the detached HEAD message on every create
|
|
10
|
+
- Update pre-push hook error messages to include more details
|
|
11
|
+
- Updated `gt demo` to work in repos the user cannot submit to yet
|
|
12
|
+
- Fixed a bug where the branch name date prefix was incorrect in `gt config`
|
|
13
|
+
- Fixed a bug where `gt submit` would not fetch the branch before submitting to determine if it needs submitting
|
|
14
|
+
- Fixed a bug where `gt rebase --continue` would swallow the post-rewrite git hook output
|
|
15
|
+
- Fixed a bug where `gt track` would incorrectly tell you to track the branch
|
|
16
|
+
- Fixed a bug where the `--force` flag was not respected in `gt submit` when the remote was updated
|
|
17
|
+
- Fixed a bug in the interactive selector with `--all` where trunks could not be correctly selected
|
|
18
|
+
|
|
19
|
+
# 1.4.1 2024-07-10
|
|
20
|
+
|
|
21
|
+
- Added a `--trunk/-t` to `gt checkout` to switch to the current trunk
|
|
22
|
+
|
|
23
|
+
- Fixed bug where `gt sync` would try to update a trunk you don't have configured
|
|
24
|
+
- Fixed bug in `gt demo` that incorrectly created a "-p" directory to run the demo in
|
|
25
|
+
- Updated `gt init --reset` to also reset PR metadata
|
|
26
|
+
- Reduced the maximum number of parallel git calls in order to reduce spawn errors
|
|
27
|
+
|
|
3
28
|
# 1.4.0 2024-07-03
|
|
4
29
|
|
|
5
30
|
**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,8 +41,8 @@ If you'd like to be included in the initial rollout of these changes, please let
|
|
|
16
41
|
- Added a `--all` option to `gt log` to show all branches across all configured trunks
|
|
17
42
|
- Added a `--all` option to `gt checkout` to show all branches across all configured trunks in the interactive selector
|
|
18
43
|
- Added a `--all` option to `gt move` to show all branches across all configured trunks in the interactive selector
|
|
19
|
-
- Added a `--all` option to `gt sync` to pull all configured trunks and sync all branches across all these trunks
|
|
20
|
-
- Added a `--target-trunk` option to `gt submit` to
|
|
44
|
+
- 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.
|
|
45
|
+
- Added a `--target-trunk` option to `gt submit` to define what trunk to open PRs against on remote.
|
|
21
46
|
- 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
|
|
22
47
|
- Updated `gt init` to reset gt back to single trunk, warning the user if they have multiple trunks currently configured
|
|
23
48
|
|