@firtoz/drizzle-utils 0.3.0 → 0.3.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 +6 -0
- package/package.json +8 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @firtoz/drizzle-utils
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`8abab0a`](https://github.com/firtoz/fullstack-toolkit/commit/8abab0ae7a99320a4254cb128c0fd823726e58e0) Thanks [@firtoz](https://github.com/firtoz)! - Update peer dependencies to require `@tanstack/db >= 0.5.12` and `drizzle-orm >= 0.45.1` for compatibility with latest pagination features.
|
|
8
|
+
|
|
3
9
|
## 0.3.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firtoz/drizzle-utils",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Shared utilities and types for Drizzle-based packages",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"module": "./src/index.ts",
|
|
@@ -28,9 +28,7 @@
|
|
|
28
28
|
"typecheck": "tsc --noEmit -p ./tsconfig.json",
|
|
29
29
|
"lint": "biome check --write src",
|
|
30
30
|
"lint:ci": "biome ci src",
|
|
31
|
-
"format": "biome format src --write"
|
|
32
|
-
"test": "bun test --pass-with-no-tests",
|
|
33
|
-
"test:watch": "bun test --watch"
|
|
31
|
+
"format": "biome format src --write"
|
|
34
32
|
},
|
|
35
33
|
"keywords": [
|
|
36
34
|
"typescript",
|
|
@@ -55,14 +53,14 @@
|
|
|
55
53
|
"access": "public"
|
|
56
54
|
},
|
|
57
55
|
"peerDependencies": {
|
|
58
|
-
"@tanstack/db": "
|
|
59
|
-
"drizzle-orm": "
|
|
60
|
-
"drizzle-valibot": "
|
|
61
|
-
"valibot": "
|
|
56
|
+
"@tanstack/db": ">=0.5.15",
|
|
57
|
+
"drizzle-orm": ">=0.45.1",
|
|
58
|
+
"drizzle-valibot": ">=0.4.0",
|
|
59
|
+
"valibot": ">=1.0.0"
|
|
62
60
|
},
|
|
63
61
|
"devDependencies": {
|
|
64
|
-
"@tanstack/db": "^0.5.
|
|
65
|
-
"drizzle-orm": "^0.
|
|
62
|
+
"@tanstack/db": "^0.5.15",
|
|
63
|
+
"drizzle-orm": "^0.45.1",
|
|
66
64
|
"drizzle-valibot": "^0.4.2",
|
|
67
65
|
"valibot": "^1.2.0"
|
|
68
66
|
}
|