@auto-engineer/file-upload 1.155.0 → 1.156.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/file-upload@1.155.0 build /home/runner/work/auto-engineer/auto-engineer/packages/file-upload
2
+ > @auto-engineer/file-upload@1.156.0 build /home/runner/work/auto-engineer/auto-engineer/packages/file-upload
3
3
  > tsc && tsx ../../scripts/fix-esm-imports.ts
4
4
 
5
5
  Fixed ESM imports in dist/
@@ -1,5 +1,5 @@
1
1
 
2
- > @auto-engineer/file-upload@1.154.0 test /home/runner/work/auto-engineer/auto-engineer/packages/file-upload
2
+ > @auto-engineer/file-upload@1.155.0 test /home/runner/work/auto-engineer/auto-engineer/packages/file-upload
3
3
  > vitest run --reporter=dot
4
4
 
5
5
 
@@ -9,6 +9,6 @@
9
9
 
10
10
   Test Files  1 passed (1)
11
11
   Tests  10 passed (10)
12
-  Start at  19:49:45
13
-  Duration  2.02s (transform 431ms, setup 0ms, collect 484ms, tests 189ms, environment 0ms, prepare 550ms)
12
+  Start at  15:46:25
13
+  Duration  2.09s (transform 420ms, setup 0ms, collect 400ms, tests 178ms, environment 0ms, prepare 556ms)
14
14
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @auto-engineer/file-upload@1.154.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/file-upload
2
+ > @auto-engineer/file-upload@1.155.0 type-check /home/runner/work/auto-engineer/auto-engineer/packages/file-upload
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @auto-engineer/file-upload
2
2
 
3
+ ## 1.156.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a6b41da`](https://github.com/BeOnAuto/auto-engineer/commit/a6b41da5ff4a0dfe158d051e810f7a56adf9e820) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed state reference detection to use all stream events, preventing sibling event names from being incorrectly identified as state references
8
+ - Added field hints for sibling events in generated state types
9
+
10
+ - [`3dad664`](https://github.com/BeOnAuto/auto-engineer/commit/3dad66402eeef694318da8d470adc1ba2771f6ff) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added automatic detection of sibling events across shared streams for smarter event evolution
11
+ - Wired all stream events into the evolve template with proper temporal ordering and deduplication
12
+
13
+ - [`14dab22`](https://github.com/BeOnAuto/auto-engineer/commit/14dab22ee206a249deebf4db6910f0bb131347c3) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - State-ref Given steps with preceding siblings now generate Inspect state instructions instead of succeeding from initial state, improving event stream resolution accuracy
14
+
15
+ - [`dbe3629`](https://github.com/BeOnAuto/auto-engineer/commit/dbe3629bd3f8479631c9af94f9a9bcb1fe6a247a) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added sibling event resolution for shared streams in Given lookups
16
+ - State-ref fallback now uses preceding sibling events with example data
17
+
18
+ - [`061af97`](https://github.com/BeOnAuto/auto-engineer/commit/061af97904cca0eebb574e536974520e6560098c) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added utility to find events produced by sibling command moments that share the same stream pattern, enabling cross-command event awareness
19
+
20
+ - [`d27048c`](https://github.com/BeOnAuto/auto-engineer/commit/d27048c4089c2d3b7b3c6580dd91a81e1be441da) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added normalizeStreamPattern() utility that converts template variables to wildcards for flexible stream pattern matching
21
+
22
+ ### Patch Changes
23
+
24
+ - [`52b0795`](https://github.com/BeOnAuto/auto-engineer/commit/52b0795f94c2eb03c71943a708742c8a0f1982fe) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added planning document for shared-stream sibling event awareness in the Apollo Emmett server generator
25
+
26
+ - [`83f9321`](https://github.com/BeOnAuto/auto-engineer/commit/83f93210969133e9a4b18444b7a2a8b1be97593c) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added named UUID constant generation in handle.ts, producing readable variables (e.g., `const workoutId = randomUUID()`) instead of inline calls
27
+ - UUID variables from stream patterns are now available to all templates, not just the commands where they appear
28
+ - Generated UUIDs are passed to the decide function via a structured context object for cleaner data flow
29
+
30
+ - [`28745a6`](https://github.com/BeOnAuto/auto-engineer/commit/28745a6b8551184279237130d41775bcb6bf3e3b) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **global**: version packages
31
+ - **global**: fix pnpm lock
32
+
33
+ - [`d21b666`](https://github.com/BeOnAuto/auto-engineer/commit/d21b666e72b44017b73cb4b4e0d200a19d4f2c65) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed package manager lock file to ensure consistent dependency resolution
34
+
35
+ - [`d95fb26`](https://github.com/BeOnAuto/auto-engineer/commit/d95fb26b13f40791929b480e4133fe96c9e47dda) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Accept an optional context parameter in decide functions for UUID coordination across command handling
36
+ - Auto-assign UUID fields from context when a stream UUID is also an event field, falling back to randomUUID()
37
+ - Clean up generated code comments by filtering auto-assigned fields from instruction hints
38
+
3
39
  ## 1.155.0
4
40
 
5
41
  ### Minor Changes
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "publishConfig": {
14
14
  "access": "public"
15
15
  },
16
- "version": "1.155.0",
16
+ "version": "1.156.0",
17
17
  "scripts": {
18
18
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
19
19
  "test": "vitest run --reporter=dot",