@kudusov.takhir/ba-toolkit 3.10.5 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -11,6 +11,27 @@ 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
+
27
+ ## [3.10.6] — 2026-04-11
28
+
29
+ ### Added
30
+
31
+ - **Pipeline diagram and example link in the website getting-started page.** ASCII pipeline diagram (same as README) now visible on the documentation website before step 3 "Run the pipeline", with a link to the example project page.
32
+
33
+ ---
34
+
14
35
  ## [3.10.5] — 2026-04-11
15
36
 
16
37
  ### Added
@@ -797,6 +818,8 @@ CI scripts that relied on the old behaviour (`init` creates files only, `install
797
818
  ---
798
819
 
799
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
822
+ [3.10.6]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.5...v3.10.6
800
823
  [3.10.5]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.4...v3.10.5
801
824
  [3.10.4]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.3...v3.10.4
802
825
  [3.10.3]: https://github.com/TakhirKudusov/ba-toolkit/compare/v3.10.2...v3.10.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kudusov.takhir/ba-toolkit",
3
- "version": "3.10.5",
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
  }