@withgraphite/graphite-cli 1.1.4 → 1.2.0
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 +32 -0
- package/graphite.js +1 -1
- package/package.json +1 -1
package/.CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Graphite CLI Changelog
|
|
2
2
|
|
|
3
|
+
# 1.2.0 2024-02-09
|
|
4
|
+
|
|
5
|
+
- Introduced `gt absorb`, which automatically amends staged changes to commits in your stack.
|
|
6
|
+
|
|
7
|
+
- You can now select which PR template will be used by default in `gt config`.
|
|
8
|
+
- `gt checkout -` now selects the last branch that was checked out, just like Git.
|
|
9
|
+
- `gt sync` now denotes the currently checked out branch when it was unable to restack it cleanly.
|
|
10
|
+
|
|
11
|
+
- Added clearer messaging for the action needed to avoid detected merge conflicts on `submit`.
|
|
12
|
+
|
|
13
|
+
- Fixed an issue where pressing Escape in an interactive prompt selected the current option.
|
|
14
|
+
- Fixed an issue where GitHub pull request templates with extensions other than .txt and .md were not detected.
|
|
15
|
+
- Fixed an issue where invalid/expired auth on `gt get` resulted in an unclear error message.
|
|
16
|
+
- Fixed an issue where `gt get` would not work for stacked branches if using a YubiKey-protected SSH key.
|
|
17
|
+
- Fixed an issue where `gt track` would display remote-tracking branches as potential parents.
|
|
18
|
+
|
|
19
|
+
# 1.1.5 2024-02-02
|
|
20
|
+
|
|
21
|
+
- Fixed bug in `create` and `modify` where we showed `--update` as an option when there were only unstaged changes (now we only show `--all` and `--patch`).
|
|
22
|
+
- We now show `--patch` as an option for `create` and `modify` even when there are only untracked changes.
|
|
23
|
+
- Added interface to let users pick untracked files to track in `--patch` mode (in `create` and `modify`).
|
|
24
|
+
|
|
25
|
+
- Improved error messaging for `gt get` for when we can't find a PR for the requested branch.
|
|
26
|
+
- Updated `gt get <trunk>` functionality to checkout the trunk branch.
|
|
27
|
+
|
|
28
|
+
- Improved error messaging for when a user tries to fold a branch into main.
|
|
29
|
+
- Added an example to `gt fold --help`.
|
|
30
|
+
|
|
31
|
+
- Fixed bug where `gt rename` could cause branches to become untracked.
|
|
32
|
+
|
|
33
|
+
- Added support for `pre-push` git hook.
|
|
34
|
+
|
|
3
35
|
# 1.1.4 2024-01-31
|
|
4
36
|
|
|
5
37
|
- Added an alias `gt --help --all`, which is equivalent to `gt --help --all-commands`.
|