@withgraphite/graphite-cli 1.1.3 → 1.1.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 +20 -1
- package/graphite.js +1 -1
- package/package.json +1 -1
package/.CHANGELOG.md
CHANGED
|
@@ -1,12 +1,31 @@
|
|
|
1
1
|
# Graphite CLI Changelog
|
|
2
2
|
|
|
3
|
+
# 1.1.5 2024-02-02
|
|
4
|
+
|
|
5
|
+
- 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`).
|
|
6
|
+
- We now show `--patch` as an option for `create` and `modify` even when there are only untracked changes.
|
|
7
|
+
- Added interface to let users pick untracked files to track in `--patch` mode (in `create` and `modify`).
|
|
8
|
+
|
|
9
|
+
- Improved error messaging for `gt get` for when we can't find a PR for the requested branch.
|
|
10
|
+
- Updated `gt get <trunk>` functionality to checkout the trunk branch.
|
|
11
|
+
|
|
12
|
+
- Improved error messaging for when a user tries to fold a branch into main.
|
|
13
|
+
- Added an example to `gt fold --help`.
|
|
14
|
+
|
|
15
|
+
- Fixed bug where `gt rename` could cause branches to become untracked.
|
|
16
|
+
|
|
17
|
+
- Added support for `pre-push` git hook.
|
|
18
|
+
|
|
19
|
+
# 1.1.4 2024-01-31
|
|
20
|
+
|
|
21
|
+
- Added an alias `gt --help --all`, which is equivalent to `gt --help --all-commands`.
|
|
22
|
+
|
|
3
23
|
# 1.1.3 2024-01-22
|
|
4
24
|
|
|
5
25
|
- Added an option to change the trunk branch name in `gt config`.
|
|
6
26
|
- Removed prompt to submit on web when the `--no-edit` flag is passed to `gt submit`.
|
|
7
27
|
|
|
8
28
|
- Updated `gt --help --all-commands`.
|
|
9
|
-
- Added an alias `gt --help --all`, which is equivalent to `gt --help --all-commands`.
|
|
10
29
|
- Added `gt completion` to `gt --help --all`.
|
|
11
30
|
|
|
12
31
|
# 1.1.2 2024-01-16
|