@kernl-sdk/storage 0.1.24 → 0.1.26

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @kernl-sdk/storage@0.1.24 build /home/runner/work/kernl/kernl/packages/storage/core
2
+ > @kernl-sdk/storage@0.1.26 build /home/runner/work/kernl/kernl/packages/storage/core
3
3
  > tsc && tsc-alias --resolve-full-paths
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @kernl/storage
2
2
 
3
+ ## 0.1.26
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [f593374]
8
+ - kernl@0.10.0
9
+ - @kernl-sdk/protocol@0.4.0
10
+
11
+ ## 0.1.25
12
+
13
+ ### Patch Changes
14
+
15
+ - 25e46e7: Move zod to peerDependencies to prevent version conflicts
16
+
17
+ Consumers should add `zod` as a direct dependency in their project. This ensures
18
+ a single zod instance is used across all packages, avoiding type incompatibilities
19
+ that could cause TypeScript to hang during type checking.
20
+
21
+ - Updated dependencies [25e46e7]
22
+ - kernl@0.9.1
23
+ - @kernl-sdk/shared@0.3.1
24
+ - @kernl-sdk/protocol@0.3.1
25
+
3
26
  ## 0.1.24
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.24",
3
+ "version": "0.1.26",
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
- "zod": "^4.1.12",
39
- "kernl": "0.9.0",
40
- "@kernl-sdk/protocol": "0.3.0",
41
- "@kernl-sdk/shared": "0.3.0"
39
+ "kernl": "0.10.0",
40
+ "@kernl-sdk/protocol": "0.4.0",
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",