@withgraphite/graphite-cli 1.3.0 → 1.3.1

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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # Graphite CLI Changelog
2
2
 
3
+ # 1.3.1 2024-03-23
4
+
5
+ - Updated `gt submit` to match the new behavior of `gt sync` and `gt get`.
6
+ - `gt submit` now skips branches with no commits between head and base and their descendants, instead of failing outright (GitHub does not allow PRs with no commits).
7
+ - `gt submit` now prompts to restack if the `--restack` flag is not passed and it would fail without restacking.
8
+ - Fixed a bug where `gt submit` would restack in certain cases when the `--restack` flag was not passed.
9
+ - Fixed a bug where `gt submit` was not prompting to choose between pasting template/commit messages and editing them.
10
+ - Fixed a bug where legacy scoped submit commands were not enforcing that branches be restacked before submitting.
11
+
12
+ - Deleting branches in `gt sync`, `gt get`, `gt submit`, or with `gt delete` now prints the SHA the branch was at before deletion like Git, as there is no reflog for deleted branches.
13
+
14
+ - Added better error messaging for the new version of `gt sync` when unauthed.
15
+ - Fixed a bug where commands that open a URL would fail if `xdg-open` was not installed, instead of printing the URL to the terminal.
16
+ - Fixed a bug where `gt get` would not set up the remote-tracking branch properly.
17
+ - Fixed a bug in the new version of `gt get` and `gt sync` where branches would not get newly associated with PRs.
18
+ - Fixed a typo in `gt absorb`.
19
+
3
20
  # 1.3.0 2024-03-20
4
21
 
5
22
  - This version of the Graphite CLI includes a significant update to `gt sync` and `gt get` that will be rolled out over the coming weeks via a server-side feature flag.