@firtoz/drizzle-indexeddb 5.0.3 → 5.0.4
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 +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @firtoz/drizzle-indexeddb
|
|
2
2
|
|
|
3
|
+
## 5.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`43cbf3d`](https://github.com/firtoz/fullstack-toolkit/commit/43cbf3d2210a476ab7ea83f9a51b53118cf4dbed) Thanks [@firtoz](https://github.com/firtoz)! - Align with catalog dependency updates (Hono 4.12, `@hono/zod-validator` 0.8, TanStack DB 0.6.7, React 19.2.6, Valibot 1.4.1).
|
|
8
|
+
|
|
9
|
+
- **hono-fetcher:** Strip Zod validator 400 JSON bodies from inferred route response types so `json()` matches handler payloads again.
|
|
10
|
+
- **Peer ranges:** Widen minimum `@tanstack/db`, `@tanstack/react-db`, `react`, and `valibot` versions to match the workspace catalog.
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [[`43cbf3d`](https://github.com/firtoz/fullstack-toolkit/commit/43cbf3d2210a476ab7ea83f9a51b53118cf4dbed)]:
|
|
13
|
+
- @firtoz/db-helpers@2.2.3
|
|
14
|
+
- @firtoz/drizzle-utils@1.3.3
|
|
15
|
+
- @firtoz/idb-collections@0.3.3
|
|
16
|
+
|
|
3
17
|
## 5.0.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firtoz/drizzle-indexeddb",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.4",
|
|
4
4
|
"description": "IndexedDB migrations powered by Drizzle ORM",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -73,25 +73,25 @@
|
|
|
73
73
|
"access": "public"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"@firtoz/drizzle-utils": ">=1.3.
|
|
77
|
-
"@tanstack/db": ">=0.6.
|
|
76
|
+
"@firtoz/drizzle-utils": ">=1.3.3",
|
|
77
|
+
"@tanstack/db": ">=0.6.7",
|
|
78
78
|
"drizzle-orm": ">=0.45.2",
|
|
79
79
|
"drizzle-valibot": ">=0.4.0",
|
|
80
|
-
"react": ">=19.2.
|
|
81
|
-
"valibot": ">=1.
|
|
80
|
+
"react": ">=19.2.6",
|
|
81
|
+
"valibot": ">=1.4.1"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@firtoz/drizzle-utils": "^1.3.
|
|
85
|
-
"@tanstack/db": "^0.6.
|
|
86
|
-
"@types/react": "^19.2.
|
|
84
|
+
"@firtoz/drizzle-utils": "^1.3.3",
|
|
85
|
+
"@tanstack/db": "^0.6.7",
|
|
86
|
+
"@types/react": "^19.2.15",
|
|
87
87
|
"drizzle-orm": "^0.45.2",
|
|
88
88
|
"drizzle-valibot": "^0.4.2",
|
|
89
|
-
"react": "^19.2.
|
|
90
|
-
"valibot": "^1.
|
|
89
|
+
"react": "^19.2.6",
|
|
90
|
+
"valibot": "^1.4.1"
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@firtoz/db-helpers": "^2.2.
|
|
94
|
-
"@firtoz/idb-collections": "^0.3.
|
|
93
|
+
"@firtoz/db-helpers": "^2.2.3",
|
|
94
|
+
"@firtoz/idb-collections": "^0.3.3",
|
|
95
95
|
"@firtoz/maybe-error": "^1.6.2",
|
|
96
96
|
"citty": "^0.2.2"
|
|
97
97
|
}
|