@withgraphite/graphite-cli 1.6.4 → 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 +7 -0
- package/check-node-version.js +1 -1
- package/graphite.js +1 -1
- package/package.json +1 -1
- package/686.js +0 -3
- package/686.js.LICENSE.txt +0 -604
- package/691.js +0 -3
- package/child.js +0 -3
package/.CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
# 1.6.4 2025-05-19
|
|
4
11
|
|
|
5
12
|
- Fixed a bug where `gt submit` and `gt sync` could incorrectly report a new remote version.
|
package/check-node-version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
if(!require("semver").satisfies(process.versions.node,">=
|
|
1
|
+
if(!require("semver").satisfies(process.versions.node,">=18"))throw new Error("[31mYour NodeJS version is "+process.versions.node+".[0m\n[31mGraphite is only supported on v18 or higher.[0m");
|