@auto-engineer/release-automation 1.18.0 → 1.20.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 +47 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # @auto-engineer/release-automation
2
2
 
3
+ ## 1.20.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`1a07f67`](https://github.com/BeOnAuto/auto-engineer/commit/1a07f67e1e6dfe381866507408374e52361636b6) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Updated allowed hosts configuration in Vite for client and starter packages to support additional development and deployment environments
8
+
9
+ ### Patch Changes
10
+
11
+ - [`127dfff`](https://github.com/BeOnAuto/auto-engineer/commit/127dfff9e568687f44c10541628ccb5cbd849f77) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Fixed a race condition in server tests to improve test reliability
12
+
13
+ - [`9f67ac0`](https://github.com/BeOnAuto/auto-engineer/commit/9f67ac02e09ea502ee8b802519d9d852ef475330) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **global**: remove stale package names from changesets
14
+ - **server-generator-apollo-emmett**: emit SliceGenerated events on no-change path
15
+ - **server-generator-apollo-emmett**: use raw projectionName for collectionName
16
+ - **narrative**: handle Array<T> type arguments in extractTypeReference
17
+ - **global**: version packages
18
+
19
+ - [`a38050e`](https://github.com/BeOnAuto/auto-engineer/commit/a38050e1942287ee6ada6ae97645d1f08b0bcb10) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Increased test timeouts for file watching and directory sync tests to improve test reliability
20
+
21
+ - [`0aa6411`](https://github.com/BeOnAuto/auto-engineer/commit/0aa6411d2c6907b7c96894c250588dcd3a43324b) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Added build dependency to the type-check task to ensure builds complete before type checking runs
22
+
23
+ ## 1.19.0
24
+
25
+ ### Minor Changes
26
+
27
+ - [`af79665`](https://github.com/BeOnAuto/auto-engineer/commit/af7966518d3496ce0880323756aa572df3da640a) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **cli**: ngrok tunnel mode, TUI mode for better visibility
28
+ - **cli**: improve AutoTab display with remote access hint
29
+ - **dev-server**: use piped output in TUI mode
30
+ - **cli**: add ServiceRegistry to server and global accessor
31
+ - **cli**: integrate TUI as default startup mode
32
+
33
+ ### Patch Changes
34
+
35
+ - [`7c663c2`](https://github.com/BeOnAuto/auto-engineer/commit/7c663c23988a086d738b47735c1b5369f98faccb) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Updated project tracking plan to mark completed work items
36
+
37
+ - [`189a5b4`](https://github.com/BeOnAuto/auto-engineer/commit/189a5b4e22c10b0a43debae44c3a0df74c0612c3) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed collection name case mismatch in Apollo/Emmett server generator that caused projection tests to fail
38
+
39
+ - [`189a5b4`](https://github.com/BeOnAuto/auto-engineer/commit/189a5b4e22c10b0a43debae44c3a0df74c0612c3) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed narrative type extraction to correctly handle generic types like Array<T>, producing accurate output such as "Array<{ name: string }>" instead of just "Array"
40
+
41
+ - [`6969856`](https://github.com/BeOnAuto/auto-engineer/commit/6969856d3d017cf14829a2235b1b02e2c65ce77f) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed pipeline stalling when no schema changes are detected by ensuring slice generation events are always emitted
42
+ - Resolved issue where implementation steps would never trigger after a no-change scaffold generation
43
+
44
+ - [`2472cba`](https://github.com/BeOnAuto/auto-engineer/commit/2472cba432d6c99f86aa2850ada1016b215c71d5) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Updated the ketchup plan for the Apollo-Emmett server generator with bursts 8-9
45
+
46
+ - [`b9f5389`](https://github.com/BeOnAuto/auto-engineer/commit/b9f53894162680342a23eaa95d46e17e69d8f5dd) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Upgraded AI SDK from v5 to v6 across all packages to resolve version compatibility issues with the Anthropic provider
47
+
48
+ - [`776f131`](https://github.com/BeOnAuto/auto-engineer/commit/776f13124487782819f8586b541c32ec311f49d7) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed narrative type extraction to correctly handle generic types like Array<T>, producing accurate output such as "Array<{ name: string }>" instead of just "Array"
49
+
3
50
  ## 1.18.0
4
51
 
5
52
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auto-engineer/release-automation",
3
- "version": "1.18.0",
3
+ "version": "1.20.0",
4
4
  "type": "module",
5
5
  "description": "Automated release management with changesets and conventional commits",
6
6
  "main": "./dist/src/index.js",