@firtoz/drizzle-utils 1.2.0 → 1.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @firtoz/drizzle-utils
2
2
 
3
+ ## 1.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#70](https://github.com/firtoz/fullstack-toolkit/pull/70) [`138c394`](https://github.com/firtoz/fullstack-toolkit/commit/138c3944b491ebf2e76b7f2c00d651fd5d788bac) Thanks [@firtoz](https://github.com/firtoz)! - Raise TanStack DB peer range to `>=0.6.3` where applicable. `createGenericCollectionConfig` now sets `defaultIndexType: BasicIndex` and `autoIndex: "eager"` so Drizzle-backed collections match pre-0.6 indexing defaults for `orderBy`/`limit` live queries. Re-enable `DeduplicatedLoadSubset` (`USE_DEDUPE`) with `@tanstack/db` 0.6.4.
8
+
9
+ - Updated dependencies [[`138c394`](https://github.com/firtoz/fullstack-toolkit/commit/138c3944b491ebf2e76b7f2c00d651fd5d788bac)]:
10
+ - @firtoz/db-helpers@2.1.1
11
+
3
12
  ## 1.2.0
4
13
 
5
14
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firtoz/drizzle-utils",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Shared utilities and types for Drizzle-based packages",
5
5
  "main": "./src/index.ts",
6
6
  "module": "./src/index.ts",
@@ -53,19 +53,19 @@
53
53
  "access": "public"
54
54
  },
55
55
  "peerDependencies": {
56
- "@tanstack/db": ">=0.6.1",
56
+ "@tanstack/db": ">=0.6.3",
57
57
  "drizzle-orm": ">=0.45.2",
58
58
  "drizzle-valibot": ">=0.4.0",
59
59
  "valibot": ">=1.3.1"
60
60
  },
61
61
  "devDependencies": {
62
- "@tanstack/db": "^0.6.1",
62
+ "@tanstack/db": "^0.6.4",
63
63
  "drizzle-orm": "^0.45.2",
64
64
  "drizzle-valibot": "^0.4.2",
65
65
  "valibot": "^1.3.1"
66
66
  },
67
67
  "dependencies": {
68
- "@firtoz/db-helpers": "^2.1.0",
68
+ "@firtoz/db-helpers": "^2.1.1",
69
69
  "@firtoz/maybe-error": "^1.5.2"
70
70
  }
71
71
  }