@auto-engineer/server-generator-apollo-emmett 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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/server-generator-apollo-emmett@1.65.0 build /home/runner/work/auto-engineer/auto-engineer/packages/server-generator-apollo-emmett
2
+ > @auto-engineer/server-generator-apollo-emmett@1.67.0 build /home/runner/work/auto-engineer/auto-engineer/packages/server-generator-apollo-emmett
3
3
  > tsc && tsx ../../scripts/fix-esm-imports.ts && rm -rf dist/src/codegen/templates && mkdir -p dist/src/codegen && cp -r src/codegen/templates dist/src/codegen/templates && cp src/server.ts dist/src && cp -r src/utils dist/src && cp -r src/domain dist/src
4
4
 
5
5
  Fixed ESM imports in dist/
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/server-generator-apollo-emmett@1.64.0 test /home/runner/work/auto-engineer/auto-engineer/packages/server-generator-apollo-emmett
2
+ > @auto-engineer/server-generator-apollo-emmett@1.66.0 test /home/runner/work/auto-engineer/auto-engineer/packages/server-generator-apollo-emmett
3
3
  > vitest run --reporter=dot
4
4
 
5
5
 
@@ -9,6 +9,6 @@
9
9
 
10
10
   Test Files  30 passed | 1 skipped (31)
11
11
   Tests  170 passed | 1 skipped (171)
12
-  Start at  03:28:07
13
-  Duration  21.83s (transform 3.16s, setup 0ms, collect 44.86s, tests 8.71s, environment 7ms, prepare 4.21s)
12
+  Start at  08:28:05
13
+  Duration  22.12s (transform 2.47s, setup 0ms, collect 45.82s, tests 9.03s, environment 8ms, prepare 4.21s)
14
14
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/server-generator-apollo-emmett@1.64.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/server-generator-apollo-emmett
2
+ > @auto-engineer/server-generator-apollo-emmett@1.66.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/server-generator-apollo-emmett
3
3
  > tsc --noEmit --project tsconfig.json
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,140 @@
1
1
  # @auto-engineer/server-generator-apollo-emmett
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
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`2132223`](https://github.com/BeOnAuto/auto-engineer/commit/2132223077bdc181cc7a5e5197fba921275056d6)]:
16
+ - @auto-engineer/message-bus@1.67.0
17
+ - @auto-engineer/narrative@1.67.0
18
+
19
+ ## 1.66.0
20
+
21
+ ### Minor Changes
22
+
23
+ - 675ef99: - **pipeline**: settled decide returns SettledFailed when no retries left
24
+ - 3a2b8db: - **pipeline**: define-v2 toGraph() converts registrations to GraphIR
25
+ - 2934f85: - **pipeline**: createPipelineStore wraps SQLite event store
26
+ - b824630: - **pipeline**: session-based status tracking
27
+ - 3c013d7: - **pipeline**: settled decide returns RetryCommands on failure with retries left
28
+ - b0436c1: - **pipeline**: define-v2 on().emit() and on().handle() registrations
29
+ - 6cbae5c: - **pipeline**: settled decide returns [] when not all commands complete
30
+ - 34a0fd1: - **pipeline**: emit PipelineRestarted event on RestartPipeline command
31
+ - aa5cb13: - **pipeline**: settled workflow evolve tracks command starts and completions
32
+ - 5916594: - **pipeline**: parallelize emit mapping commands with Promise.all
33
+ - e44989c: - **pipeline**: sqlite consumer polls events in order from store
34
+ - bede5a3: - **pipeline**: engine projections wrap existing evolve functions for SQLite
35
+ - af1e4b6: - **packages/react-component-implementer**: fixes component generation
36
+ - **packages/generate-react-client**: fixes types
37
+ - **packages/generate-react-client**: improves starter
38
+ - **global**: version packages
39
+ - 00d3142: - **pipeline**: phased decide advances to next phase when current completes
40
+ - 0e9abee: - **pipeline**: pipeline server v2 with POST /command, GET /health, /registry, /events SSE
41
+ - 27c3b2a: - **pipeline**: pipeline engine wires dispatcher, router, and workflow processor
42
+ - 8002c21: - **pipeline**: event router dispatches commands for emit mappings
43
+ - 47ae70c: - **pipeline**: add SQLite persistence with dual-write and replay on startup
44
+ - 9e1658a: - **pipeline**: command dispatcher finds handler by command type
45
+ - 95399f7: - **pipeline**: settled decide returns AllSettled when all pass
46
+ - 1997734: - **pipeline**: dispatchAndStore appends command result events to store
47
+ - ea43b36: - **pipeline**: phased decide dispatches phase 0 commands on start
48
+ - 25dadc8: - **pipeline**: define-v2 .on().forEach().groupInto().process() produces PhasedRegistration
49
+ - 9d4d240: - **pipeline**: await workflow evolve tracks key completions
50
+ - f7c5dba: - **pipeline**: define-v2 .settled() produces SettledRegistration
51
+ - d6c7b68: - **pipeline**: await decide returns AwaitCompleted when all resolved
52
+ - bdc4728: - **pipeline**: createSettledWorkflow factory from DSL params
53
+
54
+ ### Patch Changes
55
+
56
+ - 613a84b: - Fixed incorrect indentation for .env and client entries in the typical example configuration
57
+ - b7739f4: - **pipeline**: integration tests for engine pipeline flow
58
+ - ba42186: - **pipeline**: mark all durable pipeline bursts done
59
+ - ab5f5cb: - **job-graph-processor**: verify ready jobs dispatch in parallel
60
+ - 68734cd: - **pipeline**: add replay bug reproduction e2e test
61
+ - 0d1bbff: - **pipeline**: add E2E test suite bursts to ketchup plan
62
+ - c418bbf: - **pipeline**: mark all E2E bursts complete in ketchup plan
63
+ - 7fecdac: - **pipeline**: add multi-archetype combined pipeline e2e test
64
+ - 75f7b31: - **pipeline**: add concurrency and non-blocking e2e tests
65
+ - 09bb123: - **pipeline**: add settled all-pass e2e test
66
+ - ef92bf1: - **pipeline**: add durable SQLite persistence bursts to plan
67
+ - cf0e26e: - **pipeline**: add graph visualization e2e test
68
+ - c5d3c0d: - **pipeline**: add await workflow e2e test
69
+ - 1c79ada: - **pipeline**: update ketchup plan — 44/48 bursts complete
70
+ - a3353c9: - **pipeline**: add parallel scatter-gather bursts P-1 to P-3
71
+ - e89fda3: - **pipeline**: mark session tracking bursts done in ketchup plan
72
+ - 19f89b4: - **pipeline**: add phased sequential execution e2e test
73
+ - a6a2567: - **pipeline**: add settled retry and failure e2e tests
74
+ - e1f9019: - **pipeline**: mark SQLite persistence bursts done in plan
75
+ - 5ca50f2: - **pipeline**: add ketchup plan for Emmett engine migration
76
+ - f5a1a84: - **pipeline**: add phased stopOnFailure e2e test
77
+ - 9da7fb4: - **pipeline**: add session-based status tracking bursts to ketchup plan
78
+ - f09beb4: - **job-graph-processor**: add parallel dispatch verification burst P-4
79
+ - fd92e76: - **pipeline**: settled scatter-gather runs checks in parallel
80
+ - 2a23265: - **pipeline**: add e2e test harness and emit chain tests
81
+ - 8561e33: - **pipeline**: add v2 pipeline exports to package barrel
82
+ - Updated dependencies [613a84b]
83
+ - Updated dependencies [b7739f4]
84
+ - Updated dependencies [ba42186]
85
+ - Updated dependencies [675ef99]
86
+ - Updated dependencies [ab5f5cb]
87
+ - Updated dependencies [68734cd]
88
+ - Updated dependencies [3a2b8db]
89
+ - Updated dependencies [0d1bbff]
90
+ - Updated dependencies [2934f85]
91
+ - Updated dependencies [c418bbf]
92
+ - Updated dependencies [b824630]
93
+ - Updated dependencies [7fecdac]
94
+ - Updated dependencies [3c013d7]
95
+ - Updated dependencies [b0436c1]
96
+ - Updated dependencies [75f7b31]
97
+ - Updated dependencies [09bb123]
98
+ - Updated dependencies [6cbae5c]
99
+ - Updated dependencies [ef92bf1]
100
+ - Updated dependencies [cf0e26e]
101
+ - Updated dependencies [34a0fd1]
102
+ - Updated dependencies [c5d3c0d]
103
+ - Updated dependencies [1c79ada]
104
+ - Updated dependencies [a3353c9]
105
+ - Updated dependencies [aa5cb13]
106
+ - Updated dependencies [e89fda3]
107
+ - Updated dependencies [19f89b4]
108
+ - Updated dependencies [5916594]
109
+ - Updated dependencies [a6a2567]
110
+ - Updated dependencies [e44989c]
111
+ - Updated dependencies [bede5a3]
112
+ - Updated dependencies [af1e4b6]
113
+ - Updated dependencies [e1f9019]
114
+ - Updated dependencies [00d3142]
115
+ - Updated dependencies [0e9abee]
116
+ - Updated dependencies [27c3b2a]
117
+ - Updated dependencies [5ca50f2]
118
+ - Updated dependencies [8002c21]
119
+ - Updated dependencies [47ae70c]
120
+ - Updated dependencies [f5a1a84]
121
+ - Updated dependencies [9e1658a]
122
+ - Updated dependencies [9da7fb4]
123
+ - Updated dependencies [95399f7]
124
+ - Updated dependencies [1997734]
125
+ - Updated dependencies [ea43b36]
126
+ - Updated dependencies [25dadc8]
127
+ - Updated dependencies [9d4d240]
128
+ - Updated dependencies [f09beb4]
129
+ - Updated dependencies [f7c5dba]
130
+ - Updated dependencies [fd92e76]
131
+ - Updated dependencies [2a23265]
132
+ - Updated dependencies [8561e33]
133
+ - Updated dependencies [d6c7b68]
134
+ - Updated dependencies [bdc4728]
135
+ - @auto-engineer/message-bus@1.66.0
136
+ - @auto-engineer/narrative@1.66.0
137
+
3
138
  ## 1.65.0
4
139
 
5
140
  ### Minor Changes
package/package.json CHANGED
@@ -32,8 +32,8 @@
32
32
  "uuid": "^11.0.0",
33
33
  "web-streams-polyfill": "^4.1.0",
34
34
  "zod": "^3.22.4",
35
- "@auto-engineer/message-bus": "1.65.0",
36
- "@auto-engineer/narrative": "1.65.0"
35
+ "@auto-engineer/narrative": "1.67.0",
36
+ "@auto-engineer/message-bus": "1.67.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
@@ -44,9 +44,9 @@
44
44
  "typescript": "^5.8.3",
45
45
  "vitest": "^3.2.4",
46
46
  "tsx": "^4.19.2",
47
- "@auto-engineer/cli": "1.65.0"
47
+ "@auto-engineer/cli": "1.67.0"
48
48
  },
49
- "version": "1.65.0",
49
+ "version": "1.67.0",
50
50
  "scripts": {
51
51
  "generate:server": "tsx src/cli/index.ts",
52
52
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && rm -rf dist/src/codegen/templates && mkdir -p dist/src/codegen && cp -r src/codegen/templates dist/src/codegen/templates && cp src/server.ts dist/src && cp -r src/utils dist/src && cp -r src/domain dist/src",