@auto-engineer/app-implementer 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +63 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,68 @@
1
1
  # @auto-engineer/app-implementer
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
+ - @auto-engineer/model-factory@1.30.0
20
+
21
+ ## 1.29.0
22
+
23
+ ### Minor Changes
24
+
25
+ - [`2ef9632`](https://github.com/BeOnAuto/auto-engineer/commit/2ef9632a2db081f201981422f2ba26b026fa7277) Thanks [@SamHatoum](https://github.com/SamHatoum)! - ### react-component-implementer
26
+ - Add staging workflow with `writeStagedStory`, `checkStagedTypes`, and `promoteFromStaging`
27
+ - Add MCP connection pool and browser pool for resource reuse
28
+ - Add context filtering and system prompt caching to reduce tokens
29
+ - Add ts-service for type-aware error feedback with property suggestions
30
+ - Parallelize type checking and browser validation
31
+ - Replace score-based visual evaluation with binary ACK/NACK criteria
32
+ - Enable incremental TypeScript checking in staging
33
+
34
+ ### pipeline
35
+ - Add `.declare().accepts()` builder for AcceptsDescriptor type
36
+ - Show source commands in pipeline graph
37
+
38
+ ### job-graph-processor
39
+ - Add `hasFailedJobs` utility and discriminate GraphProcessed vs GraphProcessingFailed
40
+ - Bridge context.emit in command handler for downstream event routing
41
+
42
+ ### server-generator-apollo-emmett
43
+ - Add cleanServerDir to preserve node_modules during regeneration
44
+ - Accept Model directly instead of modelPath
45
+
46
+ ### server-generator-nestjs
47
+ - Accept Model directly instead of modelPath
48
+
49
+ ### generate-react-client
50
+ - Lock in overwrite behavior for copyStarter
51
+
52
+ ### narrative
53
+ - Remove export-schema command
54
+
55
+ ### global
56
+ - Remove references to information-architect and model-diff packages
57
+ - Fix biome lint errors for CI compliance
58
+ - Update examples and configuration files
59
+
60
+ ### Patch Changes
61
+
62
+ - Updated dependencies [[`2ef9632`](https://github.com/BeOnAuto/auto-engineer/commit/2ef9632a2db081f201981422f2ba26b026fa7277)]:
63
+ - @auto-engineer/message-bus@1.29.0
64
+ - @auto-engineer/model-factory@1.29.0
65
+
3
66
  ## 1.28.0
4
67
 
5
68
  ### Minor Changes
package/package.json CHANGED
@@ -21,13 +21,13 @@
21
21
  "@modelcontextprotocol/sdk": "^1.12.1",
22
22
  "ai": "^6.0.0",
23
23
  "debug": "^4.4.1",
24
- "@auto-engineer/model-factory": "1.28.0",
25
- "@auto-engineer/message-bus": "1.28.0"
24
+ "@auto-engineer/message-bus": "1.30.0",
25
+ "@auto-engineer/model-factory": "1.30.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/debug": "^4.1.12"
29
29
  },
30
- "version": "1.28.0",
30
+ "version": "1.30.0",
31
31
  "scripts": {
32
32
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
33
33
  "type-check": "tsc --noEmit"