@auto-engineer/release-automation 1.27.0 → 1.29.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 +51 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,56 @@
1
1
  # @auto-engineer/release-automation
2
2
 
3
+ ## 1.29.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`2ef9632`](https://github.com/BeOnAuto/auto-engineer/commit/2ef9632a2db081f201981422f2ba26b026fa7277) Thanks [@SamHatoum](https://github.com/SamHatoum)! - ### react-component-implementer
8
+ - Add staging workflow with `writeStagedStory`, `checkStagedTypes`, and `promoteFromStaging`
9
+ - Add MCP connection pool and browser pool for resource reuse
10
+ - Add context filtering and system prompt caching to reduce tokens
11
+ - Add ts-service for type-aware error feedback with property suggestions
12
+ - Parallelize type checking and browser validation
13
+ - Replace score-based visual evaluation with binary ACK/NACK criteria
14
+ - Enable incremental TypeScript checking in staging
15
+
16
+ ### pipeline
17
+ - Add `.declare().accepts()` builder for AcceptsDescriptor type
18
+ - Show source commands in pipeline graph
19
+
20
+ ### job-graph-processor
21
+ - Add `hasFailedJobs` utility and discriminate GraphProcessed vs GraphProcessingFailed
22
+ - Bridge context.emit in command handler for downstream event routing
23
+
24
+ ### server-generator-apollo-emmett
25
+ - Add cleanServerDir to preserve node_modules during regeneration
26
+ - Accept Model directly instead of modelPath
27
+
28
+ ### server-generator-nestjs
29
+ - Accept Model directly instead of modelPath
30
+
31
+ ### generate-react-client
32
+ - Lock in overwrite behavior for copyStarter
33
+
34
+ ### narrative
35
+ - Remove export-schema command
36
+
37
+ ### global
38
+ - Remove references to information-architect and model-diff packages
39
+ - Fix biome lint errors for CI compliance
40
+ - Update examples and configuration files
41
+
42
+ ## 1.28.0
43
+
44
+ ### Minor Changes
45
+
46
+ - [`251372b`](https://github.com/BeOnAuto/auto-engineer/commit/251372b0731f95f5ea38413bc40f6cab01fb7342) Thanks [@osamanar](https://github.com/osamanar)! - - Fixed issues with the React component implementer to improve reliability
47
+
48
+ - [`817d4a3`](https://github.com/BeOnAuto/auto-engineer/commit/817d4a386b205fc28da93fca6784b9ce9ec81990) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **react-component-implementer**: fix import errors
49
+ - **react-component-implementer**: fix import errors
50
+ - **typical**: improve fast mode detection and enhance command handler structure
51
+ - **global**: version packages
52
+ - **job-graph-processor**: standardize event naming and improve documentation
53
+
3
54
  ## 1.27.0
4
55
 
5
56
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-engineer/release-automation",
3
- "version": "1.27.0",
3
+ "version": "1.29.0",
4
4
  "type": "module",
5
5
  "description": "Automated release management with changesets and conventional commits",
6
6
  "main": "./dist/src/index.js",