@auto-engineer/cli 1.2.0 → 1.3.1

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 +27 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @auto-engineer/cli
2
2
 
3
+ ## 1.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f6ec207`](https://github.com/BeOnAuto/auto-engineer/commit/f6ec207cd6cd3457aca2ab8202677101fe531cd6) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed workspace dependency resolution for the narrative package to ensure correct publishing
8
+
9
+ - Updated dependencies [[`f6ec207`](https://github.com/BeOnAuto/auto-engineer/commit/f6ec207cd6cd3457aca2ab8202677101fe531cd6)]:
10
+ - @auto-engineer/file-store@1.3.1
11
+ - @auto-engineer/narrative@1.3.1
12
+ - @auto-engineer/pipeline@1.3.1
13
+
14
+ ## 2.0.0
15
+
16
+ ### Major Changes
17
+
18
+ - [`c3a1f4f`](https://github.com/BeOnAuto/auto-engineer/commit/c3a1f4f51bdda9cd97f839c0f9a3d2664518388a) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **global**: version packages
19
+ - **cli**: rename suspend hooks to generic shutdown hooks (#42)
20
+
21
+ ### Patch Changes
22
+
23
+ - [`6770053`](https://github.com/BeOnAuto/auto-engineer/commit/67700538ddd17656eb0de17b1a16d5f7e4ca14f6) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed incorrect argument order in test code generation for it/describe blocks
24
+
25
+ - Updated dependencies [[`c3a1f4f`](https://github.com/BeOnAuto/auto-engineer/commit/c3a1f4f51bdda9cd97f839c0f9a3d2664518388a), [`6770053`](https://github.com/BeOnAuto/auto-engineer/commit/67700538ddd17656eb0de17b1a16d5f7e4ca14f6)]:
26
+ - @auto-engineer/file-store@2.0.0
27
+ - @auto-engineer/narrative@2.0.0
28
+ - @auto-engineer/pipeline@2.0.0
29
+
3
30
  ## 1.2.0
4
31
 
5
32
  ### Minor Changes
package/package.json CHANGED
@@ -40,15 +40,15 @@
40
40
  "node-fetch": "^3.3.2",
41
41
  "ora": "^8.0.1",
42
42
  "socket.io": "^4.7.5",
43
- "@auto-engineer/narrative": "1.2.0",
44
- "@auto-engineer/file-store": "1.2.0",
45
- "@auto-engineer/pipeline": "1.2.0"
43
+ "@auto-engineer/file-store": "1.3.1",
44
+ "@auto-engineer/pipeline": "1.3.1",
45
+ "@auto-engineer/narrative": "1.3.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/node": "^22.0.0",
49
49
  "socket.io-client": "^4.8.3"
50
50
  },
51
- "version": "1.2.0",
51
+ "version": "1.3.1",
52
52
  "scripts": {
53
53
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && chmod +x dist/bin/auto.js",
54
54
  "test": "vitest run --reporter=dot",