fullstack-agentic-flow 2.0.2 → 2.0.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 +30 -0
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
Each release says which kind of bump it is and what a repository that already
|
|
4
|
+
has the pipeline installed needs to do. See the versioning policy in
|
|
5
|
+
`PUBLISHING.md`.
|
|
6
|
+
|
|
7
|
+
## 2.0.3 — 2026-09-23
|
|
8
|
+
|
|
9
|
+
**Patch.** No action needed in installed repositories.
|
|
10
|
+
|
|
11
|
+
- The package now includes this `CHANGELOG.md`, so release notes can be read
|
|
12
|
+
from npm without access to the source repository.
|
|
13
|
+
- The pipeline files, CLI, and installer are unchanged.
|
|
14
|
+
|
|
15
|
+
## 2.0.2 — 2026-09-23
|
|
16
|
+
|
|
17
|
+
**Patch.** No action needed in installed repositories.
|
|
18
|
+
|
|
19
|
+
- Release tooling only: fixed the npm version check in the CI publish job,
|
|
20
|
+
which crashed before publishing because `npm_config_user_agent` is only set
|
|
21
|
+
inside npm scripts. Releases are now published from GitLab CI with OIDC
|
|
22
|
+
trusted publishing.
|
|
23
|
+
- The pipeline files, CLI, and installer are unchanged from 2.0.0;
|
|
24
|
+
`npx fullstack-agentic-flow update` will report nothing to refresh.
|
|
25
|
+
|
|
26
|
+
2.0.1 was tagged but never published, because of the CI bug above.
|
|
27
|
+
|
|
28
|
+
## 2.0.0 — 2026-09-23
|
|
29
|
+
|
|
30
|
+
First release published to npm.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fullstack-agentic-flow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Gated multi-agent delivery pipeline for Claude Code and Codex: MVC, unified API, and split backend/frontend topologies, TDD-first, typed data, impact analysis.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist/src",
|
|
11
11
|
"payload",
|
|
12
|
+
"CHANGELOG.md",
|
|
12
13
|
"README.md",
|
|
13
14
|
"LICENSE"
|
|
14
15
|
],
|