@auto-engineer/cli 1.5.0 → 1.5.2
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 +30 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @auto-engineer/cli
|
|
2
2
|
|
|
3
|
+
## 1.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`02f70b8`](https://github.com/BeOnAuto/auto-engineer/commit/02f70b8e3be0655ab340c53e2ac2082a3ddc10ef) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **narrative**: use browser-compatible path utilities in cross-module-imports
|
|
8
|
+
- **global**: version packages
|
|
9
|
+
- **global**: add changeset
|
|
10
|
+
|
|
11
|
+
- [`e5883d0`](https://github.com/BeOnAuto/auto-engineer/commit/e5883d0db038d1f95645a46ce528cbd153bde277) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Exported cross-module types for better integration between modules
|
|
12
|
+
- Improved Date field handling in the narrative package
|
|
13
|
+
- Updated dependencies [[`02f70b8`](https://github.com/BeOnAuto/auto-engineer/commit/02f70b8e3be0655ab340c53e2ac2082a3ddc10ef), [`e5883d0`](https://github.com/BeOnAuto/auto-engineer/commit/e5883d0db038d1f95645a46ce528cbd153bde277)]:
|
|
14
|
+
- @auto-engineer/file-store@1.5.2
|
|
15
|
+
- @auto-engineer/narrative@1.5.2
|
|
16
|
+
- @auto-engineer/pipeline@1.5.2
|
|
17
|
+
|
|
18
|
+
## 1.5.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [`6afefa3`](https://github.com/BeOnAuto/auto-engineer/commit/6afefa3cd483930b2cea1933f6b0d3e84a546a9b) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **narrative**: add query support to isMessageKind type guard
|
|
23
|
+
- **global**: version packages
|
|
24
|
+
- **global**: add changeset
|
|
25
|
+
|
|
26
|
+
- [`6edb039`](https://github.com/BeOnAuto/auto-engineer/commit/6edb0394444edcab597b6d149b3928debe9824c8) Thanks [@rami-hatoum](https://github.com/rami-hatoum)! - - Fixed browser compatibility issues with path utilities in cross-module imports
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [[`6afefa3`](https://github.com/BeOnAuto/auto-engineer/commit/6afefa3cd483930b2cea1933f6b0d3e84a546a9b), [`6edb039`](https://github.com/BeOnAuto/auto-engineer/commit/6edb0394444edcab597b6d149b3928debe9824c8)]:
|
|
29
|
+
- @auto-engineer/file-store@1.5.1
|
|
30
|
+
- @auto-engineer/narrative@1.5.1
|
|
31
|
+
- @auto-engineer/pipeline@1.5.1
|
|
32
|
+
|
|
3
33
|
## 1.5.0
|
|
4
34
|
|
|
5
35
|
### 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/
|
|
44
|
-
"@auto-engineer/
|
|
45
|
-
"@auto-engineer/
|
|
43
|
+
"@auto-engineer/narrative": "1.5.2",
|
|
44
|
+
"@auto-engineer/pipeline": "1.5.2",
|
|
45
|
+
"@auto-engineer/file-store": "1.5.2"
|
|
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.5.
|
|
51
|
+
"version": "1.5.2",
|
|
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",
|