@kernl-sdk/storage 0.1.23 → 0.1.25
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +23 -0
- package/package.json +9 -6
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @kernl/storage
|
|
2
2
|
|
|
3
|
+
## 0.1.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 25e46e7: Move zod to peerDependencies to prevent version conflicts
|
|
8
|
+
|
|
9
|
+
Consumers should add `zod` as a direct dependency in their project. This ensures
|
|
10
|
+
a single zod instance is used across all packages, avoiding type incompatibilities
|
|
11
|
+
that could cause TypeScript to hang during type checking.
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [25e46e7]
|
|
14
|
+
- kernl@0.9.1
|
|
15
|
+
- @kernl-sdk/shared@0.3.1
|
|
16
|
+
- @kernl-sdk/protocol@0.3.1
|
|
17
|
+
|
|
18
|
+
## 0.1.24
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [572ae80]
|
|
23
|
+
- @kernl-sdk/protocol@0.3.0
|
|
24
|
+
- kernl@0.9.0
|
|
25
|
+
|
|
3
26
|
## 0.1.23
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernl-sdk/storage",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.25",
|
|
4
4
|
"description": "Core storage abstractions for kernl",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kernl",
|
|
@@ -32,13 +32,16 @@
|
|
|
32
32
|
"@types/node": "^24.10.0",
|
|
33
33
|
"tsc-alias": "^1.8.10",
|
|
34
34
|
"typescript": "5.9.2",
|
|
35
|
-
"vitest": "^4.0.8"
|
|
35
|
+
"vitest": "^4.0.8",
|
|
36
|
+
"zod": "^4.1.8"
|
|
36
37
|
},
|
|
37
38
|
"dependencies": {
|
|
38
|
-
"
|
|
39
|
-
"kernl": "0.
|
|
40
|
-
"@kernl-sdk/shared": "0.3.
|
|
41
|
-
|
|
39
|
+
"kernl": "0.9.1",
|
|
40
|
+
"@kernl-sdk/protocol": "0.3.1",
|
|
41
|
+
"@kernl-sdk/shared": "0.3.1"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"zod": "^4.1.8"
|
|
42
45
|
},
|
|
43
46
|
"scripts": {
|
|
44
47
|
"build": "tsc && tsc-alias --resolve-full-paths",
|