@systemfsoftware/effect-schema-law 0.7.0 → 0.8.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 +14 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @systemfsoftware/effect-schema-law
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- cut over to effect v4 (4.0.0-rc.108): public surface derives from effect types; peers flip effect ^3→^4
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Array types are spelled one way. `Array<T>` and `ReadonlyArray<T>` in emitted
|
|
12
|
+
declarations become `T[]` and `readonly T[]`, which the type checker cannot tell
|
|
13
|
+
apart: no exported type changes, only how it is written.
|
|
14
|
+
|
|
15
|
+
- New version is published through npm trusted publishing, so it carries a provenance attestation you can verify.
|
|
16
|
+
|
|
3
17
|
## 0.7.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/effect-schema-law",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.8.0",
|
|
5
5
|
"author": "Ryan Lee <drdgvhbh@gmail.com>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
|
|
9
|
-
"directory": "packages/effect
|
|
9
|
+
"directory": "packages/core/effect/schema/law"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/effect
|
|
11
|
+
"homepage": "https://github.com/systemfsoftware/systemfsoftware/tree/main/packages/core/effect/schema/law#readme",
|
|
12
12
|
"bugs": "https://github.com/systemfsoftware/systemfsoftware/issues",
|
|
13
13
|
"description": "Property-test the codec laws of any Effect Schema in one call — decode/encode round-trip identity and encode stability, generated with @effect/vitest and fast-check.",
|
|
14
14
|
"keywords": [
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"rimraf": "^6.1.3",
|
|
47
47
|
"tsdown": "^0.22.14",
|
|
48
48
|
"vitest": "^4.1.10",
|
|
49
|
+
"@systemfsoftware/effect-gherkin-spec": "^2.0.0",
|
|
50
|
+
"@systemfsoftware/tsconfig": "^1.3.3",
|
|
49
51
|
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
50
|
-
"@systemfsoftware/tsconfig": "^1.3.2",
|
|
51
|
-
"@systemfsoftware/effect-gherkin-spec": "^1.0.0",
|
|
52
52
|
"@systemfsoftware/vitest-config": "^0.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|