@withgraphite/graphite-cli 1.6.4 → 1.6.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,17 @@
1
1
  # Graphite CLI Changelog
2
2
 
3
+ # 1.6.6 2025-06-11
4
+
5
+ - Add an option to cancel the operation when `gt get` or `gt sync` encounter merge conflicts.
6
+ - Fixed an issue where `gt submit` would incorrectly warn about missing remote changes.
7
+
8
+ # 1.6.5 2025-06-04
9
+
10
+ - Added logging of processes holding index.lock when Git commands fail due to lock contention.
11
+ - Extended debug log expiry from 1 to 7 days for better access to historical logs.
12
+ - Added validation for unexpected arguments in the `gt checkout` command to avoid accidental invocations.
13
+ - Fixed an issue where some vscode extension activity could cause excessive log file usage.
14
+
3
15
  # 1.6.4 2025-05-19
4
16
 
5
17
  - Fixed a bug where `gt submit` and `gt sync` could incorrectly report a new remote version.
@@ -1 +1 @@
1
- if(!require("semver").satisfies(process.versions.node,">=16"))throw new Error("Your NodeJS version is "+process.versions.node+".\nGraphite is only supported on v16 or higher.");
1
+ if(!require("semver").satisfies(process.versions.node,">=18"))throw new Error("Your NodeJS version is "+process.versions.node+".\nGraphite is only supported on v18 or higher.");