@ontrails/drizzle 1.0.0-beta.39 → 1.0.0-beta.41

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 +8 -0
  2. package/package.json +8 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @ontrails/drizzle
2
2
 
3
+ ## 1.0.0-beta.41
4
+
5
+ ## 1.0.0-beta.40
6
+
7
+ ### Patch Changes
8
+
9
+ - [`9bf592d`](https://github.com/outfitter-dev/trails/commit/9bf592ddba46aa12e3f4e6ffc0f772f7a41ed3df): Declare verified first-party adapter metadata for Drizzle, HTTP/Bun, and Store/Jsonfile so shared adapter checks can dogfood real owner targets.
10
+
3
11
  ## 1.0.0-beta.39
4
12
 
5
13
  ## 1.0.0-beta.38
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/drizzle",
3
- "version": "1.0.0-beta.39",
3
+ "version": "1.0.0-beta.41",
4
4
  "files": [
5
5
  "src/**/*.ts",
6
6
  "!src/**/__tests__/**",
@@ -22,11 +22,16 @@
22
22
  "clean": "rm -rf dist *.tsbuildinfo"
23
23
  },
24
24
  "dependencies": {
25
- "@ontrails/core": "^1.0.0-beta.39",
25
+ "@ontrails/core": "^1.0.0-beta.41",
26
26
  "drizzle-orm": "^0.45.2"
27
27
  },
28
28
  "peerDependencies": {
29
- "@ontrails/store": "^1.0.0-beta.39",
29
+ "@ontrails/store": "^1.0.0-beta.41",
30
30
  "zod": "^4.3.5"
31
+ },
32
+ "trails": {
33
+ "adapter": {
34
+ "target": "store"
35
+ }
31
36
  }
32
37
  }