@effect-app/cli 2.1.0-beta.27 → 2.1.0-beta.29
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 +17 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @effect-app/cli
|
|
2
2
|
|
|
3
|
+
## 2.1.0-beta.29
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3e855bc: Update Effect packages to `4.0.0-beta.83` (from `beta.74`): `effect`, `@effect/platform-node`, `@effect/platform-browser`, `@effect/sql-sqlite-node`, `@effect/atom-vue`, `@effect/vitest`.
|
|
8
|
+
|
|
9
|
+
Adapt the infra workflow engines to beta.83 API changes:
|
|
10
|
+
|
|
11
|
+
- `Schema.Defect` is now a constructor function — use `S.Defect()` when building the deferred-exit codec (the bare constant no longer produces a usable schema and crashed `toType`).
|
|
12
|
+
- `Workflow` exposes its name as `_tag` instead of `name`. `WorkflowEngineSqlite`/`WorkflowEngineCosmos` now key the registry, codec caches, and persisted `workflow_name` off `workflow._tag`, fixing crash-recovery (stale-lease re-drive previously registered under an `undefined` key and never matched).
|
|
13
|
+
|
|
14
|
+
## 2.1.0-beta.28
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 55c6572: update packages
|
|
19
|
+
|
|
3
20
|
## 2.1.0-beta.27
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/cli",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.29",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,18 +9,18 @@
|
|
|
9
9
|
"effect-app-cli": "./bin.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
13
|
-
"effect": "4.0.0-beta.
|
|
14
|
-
"js-yaml": "4.
|
|
12
|
+
"@effect/platform-node": "4.0.0-beta.83",
|
|
13
|
+
"effect": "4.0.0-beta.83",
|
|
14
|
+
"js-yaml": "4.2.0",
|
|
15
15
|
"node-watch": "^0.7.4"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/js-yaml": "^4.0.9",
|
|
19
|
-
"@types/node": "25.
|
|
19
|
+
"@types/node": "25.9.1",
|
|
20
20
|
"json5": "^2.2.3",
|
|
21
21
|
"typescript": "npm:@typescript/native-preview@beta",
|
|
22
|
-
"vitest": "^4.1.
|
|
23
|
-
"effect-app": "4.0.0-beta.
|
|
22
|
+
"vitest": "^4.1.7",
|
|
23
|
+
"effect-app": "4.0.0-beta.265"
|
|
24
24
|
},
|
|
25
25
|
"typesVersions": {
|
|
26
26
|
"*": {
|