@withgraphite/graphite-cli 1.6.3 → 1.6.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Graphite CLI Changelog
2
2
 
3
+ # 1.6.5 2025-06-04
4
+
5
+ - Added logging of processes holding index.lock when Git commands fail due to lock contention.
6
+ - Extended debug log expiry from 1 to 7 days for better access to historical logs.
7
+ - Added validation for unexpected arguments in the `gt checkout` command to avoid accidental invocations.
8
+ - Fixed an issue where some vscode extension activity could cause excessive log file usage.
9
+
10
+ # 1.6.4 2025-05-19
11
+
12
+ - Fixed a bug where `gt submit` and `gt sync` could incorrectly report a new remote version.
13
+ - Fixed a bug where `gt submit` may try to push the same branch twice.
14
+ - Fixed a bug where help text would be displayed in a single column when piped to another command.
15
+ - Fixed an issue where polling in the vscode extension could cause large amounts of log file usage.
16
+
3
17
  # 1.6.3 2025-05-09
4
18
 
5
19
  - Fixed a bug in `gt submit` and `gt sync` that caused performance degradation and crashes when pull requests were modified outside of Graphite.
@@ -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.");