@withgraphite/graphite-cli 1.2.4 → 1.2.6

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,28 @@
1
1
  # Graphite CLI Changelog
2
2
 
3
+ # 1.2.6 2024-03-05
4
+
5
+ - By default, `gt create` will now replace slashes in commit messages when inferring branch names, and will convert uppercase letters to lowercase. Both of these new behaviors can be disabled in `gt config`.
6
+ - Added individual `--edit-title` and `--edit-description` flags to `gt submit` to allow for editing the PR title and body, respectively. `--no-edit-title` and `--no-edit-description` can be used to skip the prompts for each. Note that `--edit` and `--no-edit` will still work as before.
7
+ - Added support for `gt submit` to use AI to populate PR titles and description. This will be rolled out via a server-side feature flag over the coming weeks.
8
+ - When creating new PRs, `gt submit` will continue to a web browser to edit PR metadata. `--cli` can be passed to use the CLI flow.
9
+ - Added a setting to `gt config` to toggle the above behavior: i.e., use the CLI instead of web by default. In that case, `--web` can be passed to use the web flow.
10
+
11
+ - Fixed an issue resulting in certain commands failing when using a YubiKey-protected SSH key.
12
+ - Fixed an issue where `gt demo` would not work on Windows.
13
+
14
+ - Debug logs are now always written, even when the `--debug` flag is not passed.
15
+ - The `--debug` flag now logs to the terminal as well as to a file.
16
+ - `gt feedback <message> --with-debug-context` now sends our engineers all debug logs from the past 24 hours.
17
+ - Debug logs are cleaned up after 24 hours.
18
+
19
+ # 1.2.5 2024-02-27
20
+
21
+ - Adjusted the set of branches that might be included in the new prompt to update upstack branches.
22
+ - Fixed an issue where staged changes could be discarded inadvertently during a `gt sync`.
23
+ - Fixed an issue where `gt demo` would fail on Windows.
24
+ - Added an NPM `postinstall` script to ensure NodeJS version compatibility.
25
+
3
26
  # 1.2.4 2024-02-22
4
27
 
5
28
  - `gt submit` now prompts to update upstack branches with open PRs when run from a mid-stack branch.