@start9labs/start-sdk 1.4.0 → 1.4.1

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.4.1 — StartOS 0.4.0-beta.8 (2026-05-04)
4
+
5
+ ### Fixed
6
+
7
+ - Pin `zod` to exact version `4.3.6`. Zod 4.4 changed `.catch()` to no longer fire on missing object keys (only on present-but-invalid values), which silently breaks every package's `.merge({})` seed pattern — required fields with `.catch()` defaults throw `"expected nonoptional, received undefined"` instead of falling back to the default. The previous `^4.3.6` range allowed packages installed after 4.4.0 dropped to pick up the new behavior on `npm install`. Pinning ensures consistent behavior across all packages regardless of when they were installed
8
+
3
9
  ## 1.4.0 — StartOS 0.4.0-beta.8 (2026-05-03)
4
10
 
5
11
  ### Added
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@start9labs/start-sdk",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Software development kit to facilitate packaging services for StartOS",
5
5
  "main": "./package/lib/index.js",
6
6
  "types": "./package/lib/index.d.ts",
@@ -40,7 +40,7 @@
40
40
  "isomorphic-fetch": "^3.0.0",
41
41
  "mime": "^4.1.0",
42
42
  "yaml": "^2.8.3",
43
- "zod": "^4.3.6",
43
+ "zod": "4.3.6",
44
44
  "zod-deep-partial": "^1.2.0"
45
45
  },
46
46
  "prettier": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@start9labs/start-sdk",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Software development kit to facilitate packaging services for StartOS",
5
5
  "main": "./package/lib/index.js",
6
6
  "types": "./package/lib/index.d.ts",
@@ -40,7 +40,7 @@
40
40
  "isomorphic-fetch": "^3.0.0",
41
41
  "mime": "^4.1.0",
42
42
  "yaml": "^2.8.3",
43
- "zod": "^4.3.6",
43
+ "zod": "4.3.6",
44
44
  "zod-deep-partial": "^1.2.0"
45
45
  },
46
46
  "prettier": {