@auto-engineer/release-automation 1.65.0 → 1.67.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 +74 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,79 @@
1
1
  # @auto-engineer/release-automation
2
2
 
3
+ ## 1.67.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`2132223`](https://github.com/BeOnAuto/auto-engineer/commit/2132223077bdc181cc7a5e5197fba921275056d6) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - **pipeline**: emit PipelineRestarted event on RestartPipeline command
8
+ - **pipeline**: add SQLite persistence with dual-write and replay on startup
9
+ - **pipeline**: session-based status tracking
10
+ - **pipeline**: parallelize emit mapping commands with Promise.all
11
+ - **pipeline**: pipeline server v2 with POST /command, GET /health, /registry, /events SSE
12
+
13
+ ## 1.66.0
14
+
15
+ ### Minor Changes
16
+
17
+ - 675ef99: - **pipeline**: settled decide returns SettledFailed when no retries left
18
+ - 3a2b8db: - **pipeline**: define-v2 toGraph() converts registrations to GraphIR
19
+ - 2934f85: - **pipeline**: createPipelineStore wraps SQLite event store
20
+ - b824630: - **pipeline**: session-based status tracking
21
+ - 3c013d7: - **pipeline**: settled decide returns RetryCommands on failure with retries left
22
+ - b0436c1: - **pipeline**: define-v2 on().emit() and on().handle() registrations
23
+ - 6cbae5c: - **pipeline**: settled decide returns [] when not all commands complete
24
+ - 34a0fd1: - **pipeline**: emit PipelineRestarted event on RestartPipeline command
25
+ - aa5cb13: - **pipeline**: settled workflow evolve tracks command starts and completions
26
+ - 5916594: - **pipeline**: parallelize emit mapping commands with Promise.all
27
+ - e44989c: - **pipeline**: sqlite consumer polls events in order from store
28
+ - bede5a3: - **pipeline**: engine projections wrap existing evolve functions for SQLite
29
+ - af1e4b6: - **packages/react-component-implementer**: fixes component generation
30
+ - **packages/generate-react-client**: fixes types
31
+ - **packages/generate-react-client**: improves starter
32
+ - **global**: version packages
33
+ - 00d3142: - **pipeline**: phased decide advances to next phase when current completes
34
+ - 0e9abee: - **pipeline**: pipeline server v2 with POST /command, GET /health, /registry, /events SSE
35
+ - 27c3b2a: - **pipeline**: pipeline engine wires dispatcher, router, and workflow processor
36
+ - 8002c21: - **pipeline**: event router dispatches commands for emit mappings
37
+ - 47ae70c: - **pipeline**: add SQLite persistence with dual-write and replay on startup
38
+ - 9e1658a: - **pipeline**: command dispatcher finds handler by command type
39
+ - 95399f7: - **pipeline**: settled decide returns AllSettled when all pass
40
+ - 1997734: - **pipeline**: dispatchAndStore appends command result events to store
41
+ - ea43b36: - **pipeline**: phased decide dispatches phase 0 commands on start
42
+ - 25dadc8: - **pipeline**: define-v2 .on().forEach().groupInto().process() produces PhasedRegistration
43
+ - 9d4d240: - **pipeline**: await workflow evolve tracks key completions
44
+ - f7c5dba: - **pipeline**: define-v2 .settled() produces SettledRegistration
45
+ - d6c7b68: - **pipeline**: await decide returns AwaitCompleted when all resolved
46
+ - bdc4728: - **pipeline**: createSettledWorkflow factory from DSL params
47
+
48
+ ### Patch Changes
49
+
50
+ - 613a84b: - Fixed incorrect indentation for .env and client entries in the typical example configuration
51
+ - b7739f4: - **pipeline**: integration tests for engine pipeline flow
52
+ - ba42186: - **pipeline**: mark all durable pipeline bursts done
53
+ - ab5f5cb: - **job-graph-processor**: verify ready jobs dispatch in parallel
54
+ - 68734cd: - **pipeline**: add replay bug reproduction e2e test
55
+ - 0d1bbff: - **pipeline**: add E2E test suite bursts to ketchup plan
56
+ - c418bbf: - **pipeline**: mark all E2E bursts complete in ketchup plan
57
+ - 7fecdac: - **pipeline**: add multi-archetype combined pipeline e2e test
58
+ - 75f7b31: - **pipeline**: add concurrency and non-blocking e2e tests
59
+ - 09bb123: - **pipeline**: add settled all-pass e2e test
60
+ - ef92bf1: - **pipeline**: add durable SQLite persistence bursts to plan
61
+ - cf0e26e: - **pipeline**: add graph visualization e2e test
62
+ - c5d3c0d: - **pipeline**: add await workflow e2e test
63
+ - 1c79ada: - **pipeline**: update ketchup plan — 44/48 bursts complete
64
+ - a3353c9: - **pipeline**: add parallel scatter-gather bursts P-1 to P-3
65
+ - e89fda3: - **pipeline**: mark session tracking bursts done in ketchup plan
66
+ - 19f89b4: - **pipeline**: add phased sequential execution e2e test
67
+ - a6a2567: - **pipeline**: add settled retry and failure e2e tests
68
+ - e1f9019: - **pipeline**: mark SQLite persistence bursts done in plan
69
+ - 5ca50f2: - **pipeline**: add ketchup plan for Emmett engine migration
70
+ - f5a1a84: - **pipeline**: add phased stopOnFailure e2e test
71
+ - 9da7fb4: - **pipeline**: add session-based status tracking bursts to ketchup plan
72
+ - f09beb4: - **job-graph-processor**: add parallel dispatch verification burst P-4
73
+ - fd92e76: - **pipeline**: settled scatter-gather runs checks in parallel
74
+ - 2a23265: - **pipeline**: add e2e test harness and emit chain tests
75
+ - 8561e33: - **pipeline**: add v2 pipeline exports to package barrel
76
+
3
77
  ## 1.65.0
4
78
 
5
79
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-engineer/release-automation",
3
- "version": "1.65.0",
3
+ "version": "1.67.0",
4
4
  "type": "module",
5
5
  "description": "Automated release management with changesets and conventional commits",
6
6
  "main": "./dist/src/index.js",