@auto-engineer/model-factory 1.28.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.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +3 -3
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +39 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/model-factory@1.
|
|
2
|
+
> @auto-engineer/model-factory@1.28.0 build /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
|
|
3
3
|
> tsc && tsx ../../scripts/fix-esm-imports.ts
|
|
4
4
|
|
|
5
5
|
Fixed ESM imports in dist/
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/model-factory@1.
|
|
2
|
+
> @auto-engineer/model-factory@1.28.0 test /home/runner/work/auto-engineer/auto-engineer/packages/model-factory
|
|
3
3
|
> vitest run --reporter=dot
|
|
4
4
|
|
|
5
5
|
|
|
@@ -9,6 +9,6 @@
|
|
|
9
9
|
|
|
10
10
|
[2m Test Files [22m [1m[32m1 passed[39m[22m[90m (1)[39m
|
|
11
11
|
[2m Tests [22m [1m[32m13 passed[39m[22m[90m (13)[39m
|
|
12
|
-
[2m Start at [22m 20:
|
|
13
|
-
[2m Duration [22m 2.
|
|
12
|
+
[2m Start at [22m 20:54:35
|
|
13
|
+
[2m Duration [22m 2.20s[2m (transform 440ms, setup 0ms, collect 427ms, tests 281ms, environment 0ms, prepare 512ms)[22m
|
|
14
14
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @auto-engineer/model-factory
|
|
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
|
+
|
|
3
42
|
## 1.28.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|