@astrale-os/sdk 0.5.0-beta.93 → 0.5.0-beta.95
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/README.md +5 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.0-beta.95](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.94...sdk-v0.5.0-beta.95) (2026-08-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** expose exact Zod peer contract ([#371](https://github.com/astrale-os/sdk/issues/371)) ([0bf2079](https://github.com/astrale-os/sdk/commit/0bf207908f0a5f1466906b82c9baf9196c119062))
|
|
9
|
+
|
|
10
|
+
## [0.5.0-beta.94](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.93...sdk-v0.5.0-beta.94) (2026-08-30)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **deps:** keep one Zod runtime across SDK and Kernel ([#369](https://github.com/astrale-os/sdk/issues/369)) ([86ba9cc](https://github.com/astrale-os/sdk/commit/86ba9ccd952f88e58a285f05c618a2c67279b559))
|
|
16
|
+
|
|
3
17
|
## [0.5.0-beta.93](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.92...sdk-v0.5.0-beta.93) (2026-08-30)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -16,6 +16,11 @@ The SDK and its complete runtime dependency graph are public on npm and require
|
|
|
16
16
|
npm install @astrale-os/sdk
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
Zod schemas cross the SDK and Kernel compiler boundary by runtime identity. The SDK therefore
|
|
20
|
+
declares one exact, non-optional Zod peer. If an Application declares Zod directly, it must use the
|
|
21
|
+
same exact version rather than a range; a second physical Zod runtime is not an admitted authoring
|
|
22
|
+
environment.
|
|
23
|
+
|
|
19
24
|
During the beta program, opt in explicitly:
|
|
20
25
|
|
|
21
26
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrale-os/sdk",
|
|
3
|
-
"version": "0.5.0-beta.
|
|
3
|
+
"version": "0.5.0-beta.95",
|
|
4
4
|
"description": "Schema-first SDK for defining, composing, and deploying Astrale domains",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"astrale",
|
|
@@ -225,8 +225,7 @@
|
|
|
225
225
|
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
226
226
|
"hono": "^4.13.2",
|
|
227
227
|
"jose": "^6.2.9",
|
|
228
|
-
"typescript": "~6.0.3"
|
|
229
|
-
"zod": "^4.4.3"
|
|
228
|
+
"typescript": "~6.0.3"
|
|
230
229
|
},
|
|
231
230
|
"devDependencies": {
|
|
232
231
|
"@astrale-os/ox": "0.1.3",
|
|
@@ -246,12 +245,14 @@
|
|
|
246
245
|
"tsx": "^4.23.12",
|
|
247
246
|
"vite": "^8.2.1",
|
|
248
247
|
"vitest": "^4.1.10",
|
|
249
|
-
"yaml": "^2.9.0"
|
|
248
|
+
"yaml": "^2.9.0",
|
|
249
|
+
"zod": "4.4.3"
|
|
250
250
|
},
|
|
251
251
|
"peerDependencies": {
|
|
252
252
|
"@astrale-os/ox": ">=0.1.3 <1.0.0",
|
|
253
253
|
"@hono/node-server": "^1.19.0 || ^2.1.1",
|
|
254
|
-
"oxlint": ">=1.78.0 <2.0.0"
|
|
254
|
+
"oxlint": ">=1.78.0 <2.0.0",
|
|
255
|
+
"zod": "4.4.3"
|
|
255
256
|
},
|
|
256
257
|
"peerDependenciesMeta": {
|
|
257
258
|
"@astrale-os/ox": {
|