@auto-engineer/cli 1.3.3 → 1.4.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/CHANGELOG.md +31 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @auto-engineer/cli
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c2503a1`](https://github.com/BeOnAuto/auto-engineer/commit/c2503a1cfb342ab1399a382d175def1a8239e2b9) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Added query detection for When clauses in query slices, enabling better handling of query-based conditions in narrative definitions
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [`a0cf1a8`](https://github.com/BeOnAuto/auto-engineer/commit/a0cf1a8a41faa1a8f4687b0b80be745d1f7a0091) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **narrative**: generate all declared types for authored modules
|
|
12
|
+
- **global**: version packages
|
|
13
|
+
- **global**: add changeset
|
|
14
|
+
- Updated dependencies [[`c2503a1`](https://github.com/BeOnAuto/auto-engineer/commit/c2503a1cfb342ab1399a382d175def1a8239e2b9), [`a0cf1a8`](https://github.com/BeOnAuto/auto-engineer/commit/a0cf1a8a41faa1a8f4687b0b80be745d1f7a0091)]:
|
|
15
|
+
- @auto-engineer/file-store@1.4.0
|
|
16
|
+
- @auto-engineer/narrative@1.4.0
|
|
17
|
+
- @auto-engineer/pipeline@1.4.0
|
|
18
|
+
|
|
19
|
+
## 1.3.4
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- [`f2ee305`](https://github.com/BeOnAuto/auto-engineer/commit/f2ee305eb055873d93cfe30f2a0f49ee297393c1) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **narrative**: handle negative numbers in jsonToExpr
|
|
24
|
+
- **global**: version packages
|
|
25
|
+
- **global**: add changeset
|
|
26
|
+
|
|
27
|
+
- [`22916b0`](https://github.com/BeOnAuto/auto-engineer/commit/22916b01abc8cee787e79be7aea01de579e30ec3) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed type generation to include all declared types for authored modules
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [[`f2ee305`](https://github.com/BeOnAuto/auto-engineer/commit/f2ee305eb055873d93cfe30f2a0f49ee297393c1), [`22916b0`](https://github.com/BeOnAuto/auto-engineer/commit/22916b01abc8cee787e79be7aea01de579e30ec3)]:
|
|
30
|
+
- @auto-engineer/file-store@1.3.4
|
|
31
|
+
- @auto-engineer/narrative@1.3.4
|
|
32
|
+
- @auto-engineer/pipeline@1.3.4
|
|
33
|
+
|
|
3
34
|
## 1.3.3
|
|
4
35
|
|
|
5
36
|
### Patch 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/
|
|
44
|
-
"@auto-engineer/
|
|
45
|
-
"@auto-engineer/narrative": "1.
|
|
43
|
+
"@auto-engineer/file-store": "1.4.0",
|
|
44
|
+
"@auto-engineer/pipeline": "1.4.0",
|
|
45
|
+
"@auto-engineer/narrative": "1.4.0"
|
|
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.
|
|
51
|
+
"version": "1.4.0",
|
|
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",
|