@kudusov.takhir/ba-toolkit 3.10.6 → 3.11.0
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 +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,19 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
+
## [3.11.0] — 2026-04-11
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- **CHANGELOG hygiene CI check.** New `.github/scripts/validate-changelog.mjs` validates CHANGELOG.md on every PR: `[Unreleased]` must be first, every version heading must follow `## [X.Y.Z] — YYYY-MM-DD` format, versions must decrease top-to-bottom (semver monotonicity), no duplicates, every released version must have a compare link at the bottom, and no orphan links are allowed. Runs as a new `validate-changelog` job in `validate.yml` (triggered on CHANGELOG.md changes) and as part of `npm test` locally. Closes the recurring manual-numbering-drift issue that required hand-fixes three times in the recent release history.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **`npm test` now includes CHANGELOG validation.** The test script chains `node .github/scripts/validate-changelog.mjs` after the existing test suite, so local development catches formatting issues before push.
|
|
23
|
+
- **CONTRIBUTING.md** now notes that CHANGELOG.md is CI-validated and includes the local validation command.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
14
27
|
## [3.10.6] — 2026-04-11
|
|
15
28
|
|
|
16
29
|
### Added
|
|
@@ -805,6 +818,7 @@ CI scripts that relied on the old behaviour (`init` creates files only, `install
|
|
|
805
818
|
---
|
|
806
819
|
|
|
807
820
|
[Unreleased]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.1...HEAD
|
|
821
|
+
[3.11.0]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.6...v3.11.0
|
|
808
822
|
[3.10.6]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.5...v3.10.6
|
|
809
823
|
[3.10.5]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.4...v3.10.5
|
|
810
824
|
[3.10.4]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.3...v3.10.4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kudusov.takhir/ba-toolkit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "AI-powered Business Analyst pipeline — 24 skills from concept discovery to a sequenced implementation plan an AI coding agent can execute, with one-command Notion + Confluence publish. Works with Claude Code, Codex CLI, Gemini CLI, Cursor, and Windsurf.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"business-analyst",
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
"node": ">=18"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
|
-
"test": "node --test test/cli.test.js test/cli.integration.test.js"
|
|
46
|
+
"test": "node --test test/cli.test.js test/cli.integration.test.js && node .github/scripts/validate-changelog.mjs"
|
|
47
47
|
}
|
|
48
48
|
}
|