@auto-engineer/message-store 1.28.0 → 1.30.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/message-store@1.27.0 build /home/runner/work/auto-engineer/auto-engineer/packages/message-store
2
+ > @auto-engineer/message-store@1.29.0 build /home/runner/work/auto-engineer/auto-engineer/packages/message-store
3
3
  > tsc && tsx ../../scripts/fix-esm-imports.ts
4
4
 
5
5
  Fixed ESM imports in dist/
@@ -1,13 +1,13 @@
1
1
 
2
- > @auto-engineer/message-store@1.27.0 test /home/runner/work/auto-engineer/auto-engineer/packages/message-store
2
+ > @auto-engineer/message-store@1.29.0 test /home/runner/work/auto-engineer/auto-engineer/packages/message-store
3
3
  > vitest run --reporter=dot
4
4
 
5
5
 
6
6
   RUN  v3.2.4 /home/runner/work/auto-engineer/auto-engineer/packages/message-store
7
7
 
8
8
 
9
- include: **/*.specs.{js,ts,tsx}
10
9
  No test files found, exiting with code 0
11
10
 
11
+ include: **/*.specs.{js,ts,tsx}
12
12
  exclude: **/.tmp/**, **/node_modules/**, **/dist/**, **/examples/**, **/create-auto-app/templates/**, **/*-starter/**, **/vite.config.ts
13
13
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/message-store@1.27.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/message-store
2
+ > @auto-engineer/message-store@1.29.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/message-store
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,66 @@
1
1
  # @auto-engineer/message-store
2
2
 
3
+ ## 1.30.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`2181802`](https://github.com/BeOnAuto/auto-engineer/commit/21818027dc5db0ab2b69116e7dae4ed458fa6c3d) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **pipeline**: use .declare().accepts() in auto.config.ts
8
+ - **pipeline**: add .declare() to EmitChain, SettledChain, HandleChain
9
+ - **pipeline**: add AcceptsDescriptor type and .declare().accepts() builder
10
+ - **react-component-implementer**: parallelize type check and browser validation
11
+ - **react-component-implementer**: wire mcp-pool for connection reuse
12
+
13
+ - [`b095ae5`](https://github.com/BeOnAuto/auto-engineer/commit/b095ae52b9574566f64cc194b8567a001ae1210c) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - **generate-react-client**: add postMessage-based iframe navigation tracking
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [[`2181802`](https://github.com/BeOnAuto/auto-engineer/commit/21818027dc5db0ab2b69116e7dae4ed458fa6c3d), [`b095ae5`](https://github.com/BeOnAuto/auto-engineer/commit/b095ae52b9574566f64cc194b8567a001ae1210c)]:
18
+ - @auto-engineer/message-bus@1.30.0
19
+
20
+ ## 1.29.0
21
+
22
+ ### Minor Changes
23
+
24
+ - [`2ef9632`](https://github.com/BeOnAuto/auto-engineer/commit/2ef9632a2db081f201981422f2ba26b026fa7277) Thanks [@SamHatoum](https://github.com/SamHatoum)! - ### react-component-implementer
25
+ - Add staging workflow with `writeStagedStory`, `checkStagedTypes`, and `promoteFromStaging`
26
+ - Add MCP connection pool and browser pool for resource reuse
27
+ - Add context filtering and system prompt caching to reduce tokens
28
+ - Add ts-service for type-aware error feedback with property suggestions
29
+ - Parallelize type checking and browser validation
30
+ - Replace score-based visual evaluation with binary ACK/NACK criteria
31
+ - Enable incremental TypeScript checking in staging
32
+
33
+ ### pipeline
34
+ - Add `.declare().accepts()` builder for AcceptsDescriptor type
35
+ - Show source commands in pipeline graph
36
+
37
+ ### job-graph-processor
38
+ - Add `hasFailedJobs` utility and discriminate GraphProcessed vs GraphProcessingFailed
39
+ - Bridge context.emit in command handler for downstream event routing
40
+
41
+ ### server-generator-apollo-emmett
42
+ - Add cleanServerDir to preserve node_modules during regeneration
43
+ - Accept Model directly instead of modelPath
44
+
45
+ ### server-generator-nestjs
46
+ - Accept Model directly instead of modelPath
47
+
48
+ ### generate-react-client
49
+ - Lock in overwrite behavior for copyStarter
50
+
51
+ ### narrative
52
+ - Remove export-schema command
53
+
54
+ ### global
55
+ - Remove references to information-architect and model-diff packages
56
+ - Fix biome lint errors for CI compliance
57
+ - Update examples and configuration files
58
+
59
+ ### Patch Changes
60
+
61
+ - Updated dependencies [[`2ef9632`](https://github.com/BeOnAuto/auto-engineer/commit/2ef9632a2db081f201981422f2ba26b026fa7277)]:
62
+ - @auto-engineer/message-bus@1.29.0
63
+
3
64
  ## 1.28.0
4
65
 
5
66
  ### Minor Changes
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@auto-engineer/message-store",
3
3
  "type": "module",
4
- "version": "1.28.0",
4
+ "version": "1.30.0",
5
5
  "description": "Message store for commands and events with pluggable backends",
6
6
  "main": "./dist/src/index.js",
7
7
  "types": "./dist/src/index.d.ts",
8
8
  "dependencies": {
9
9
  "debug": "^4.3.4",
10
10
  "nanoid": "^5.0.0",
11
- "@auto-engineer/message-bus": "1.28.0"
11
+ "@auto-engineer/message-bus": "1.30.0"
12
12
  },
13
13
  "devDependencies": {
14
14
  "typescript": "^5.3.0"