agileflow 2.96.5 → 2.96.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
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.96.6] - 2026-02-06
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Force-overwrite internal scripts and lib files during updates to fix stale code
|
|
14
|
+
|
|
10
15
|
## [2.96.5] - 2026-02-06
|
|
11
16
|
|
|
12
17
|
### Fixed
|
package/package.json
CHANGED
|
@@ -155,12 +155,16 @@ class Installer {
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
// Copy essential scripts to user's scripts/ directory
|
|
158
|
+
// Always force-overwrite scripts - they are internal AgileFlow code,
|
|
159
|
+
// never user-edited, and must stay in sync with the installed version.
|
|
158
160
|
spinner.text = 'Installing scripts...';
|
|
159
|
-
await this.installScripts(directory, { force:
|
|
161
|
+
await this.installScripts(directory, { force: true });
|
|
160
162
|
|
|
161
163
|
// Copy lib/ directory (shared utilities used by scripts)
|
|
164
|
+
// Always force-overwrite lib files - they are internal AgileFlow code,
|
|
165
|
+
// never user-edited, and must stay in sync with the installed version.
|
|
162
166
|
spinner.text = 'Installing shared libraries...';
|
|
163
|
-
await this.installLib(directory, { force:
|
|
167
|
+
await this.installLib(directory, { force: true });
|
|
164
168
|
|
|
165
169
|
// Copy CHANGELOG.md for /agileflow:whats-new command
|
|
166
170
|
spinner.text = 'Installing changelog...';
|