@tekyzinc/gsd-t 2.11.2 → 2.11.3
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 +5 -0
- package/bin/gsd-t.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.11.3] - 2026-02-12
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Reduced update check cache duration from 24 hours to 1 hour — new releases are detected faster
|
|
9
|
+
|
|
5
10
|
## [2.11.2] - 2026-02-12
|
|
6
11
|
|
|
7
12
|
### Fixed
|
package/bin/gsd-t.js
CHANGED
|
@@ -805,8 +805,8 @@ function checkForUpdates() {
|
|
|
805
805
|
showUpdateNotice(cached.latest);
|
|
806
806
|
}
|
|
807
807
|
|
|
808
|
-
// Refresh cache in background if stale (older than
|
|
809
|
-
const isStale = !cached || (Date.now() - cached.timestamp) >
|
|
808
|
+
// Refresh cache in background if stale (older than 1h) or missing
|
|
809
|
+
const isStale = !cached || (Date.now() - cached.timestamp) > 3600000;
|
|
810
810
|
if (isStale) {
|
|
811
811
|
const script = `
|
|
812
812
|
const https = require("https");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.3",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 35 slash commands with backlog management, impact analysis, test sync, and milestone archival",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|