@auto-engineer/message-store 1.10.0 → 1.12.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.9.0 build /home/runner/work/auto-engineer/auto-engineer/packages/message-store
2
+ > @auto-engineer/message-store@1.11.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.10.0 test /home/runner/work/auto-engineer/auto-engineer/packages/message-store
2
+ > @auto-engineer/message-store@1.12.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
- include: **/*.specs.{js,ts}
9
8
 
10
9
  No test files found, exiting with code 0
11
10
 
11
+ include: **/*.specs.{js,ts}
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.10.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/message-store
2
+ > @auto-engineer/message-store@1.12.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,35 @@
1
1
  # @auto-engineer/message-store
2
2
 
3
+ ## 1.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a425971`](https://github.com/BeOnAuto/auto-engineer/commit/a4259717bdd3bd1c9f0194c9c33c46bbff510f00) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **packages/narrative**: add @auto-engineer/narrative/schema subpath export
8
+ - **packages/model-diff**: new package for model-level change detection (incremental generation)
9
+ - **packages/server-generator-apollo-emmett**: add incremental generation support via model-diff change sets
10
+ - **global**: version packages
11
+ - **global**: add changeset
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`a425971`](https://github.com/BeOnAuto/auto-engineer/commit/a4259717bdd3bd1c9f0194c9c33c46bbff510f00)]:
16
+ - @auto-engineer/message-bus@1.12.0
17
+
18
+ ## 1.11.0
19
+
20
+ ### Minor Changes
21
+
22
+ - [`94f3151`](https://github.com/BeOnAuto/auto-engineer/commit/94f315181e69e190f84ba06871b27591e27771c2) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added a lightweight schema subpath export for the narrative package, allowing consumers to import Zod schemas and TypeScript types without pulling in heavy dependencies like typescript, prettier, or graphql
23
+
24
+ - [`afd1cd2`](https://github.com/BeOnAuto/auto-engineer/commit/afd1cd28412d12ba7c29ba133fdf57616cf42370) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **packages/frontend-implementer**: updates implementation prompt
25
+ - **global**: version packages
26
+ - **global**: add changeset
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies [[`94f3151`](https://github.com/BeOnAuto/auto-engineer/commit/94f315181e69e190f84ba06871b27591e27771c2), [`afd1cd2`](https://github.com/BeOnAuto/auto-engineer/commit/afd1cd28412d12ba7c29ba133fdf57616cf42370)]:
31
+ - @auto-engineer/message-bus@1.11.0
32
+
3
33
  ## 1.10.0
4
34
 
5
35
  ### 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.10.0",
4
+ "version": "1.12.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.10.0"
11
+ "@auto-engineer/message-bus": "1.12.0"
12
12
  },
13
13
  "devDependencies": {
14
14
  "typescript": "^5.3.0"