@pitlane/data-table-d1 0.2.0 → 0.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 +13 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @pitlane/data-table-d1
2
2
 
3
+ ## 0.2.1
4
+
5
+ Target Remix `3.0.0-rc.2`.
6
+
7
+ - No driver code changed. `createD1Database`, `D1Database`, and
8
+ `D1DatabaseDriver` behave as they did in 0.2.0.
9
+ - rc.2 raises `@remix-run/data-table` to 0.5.1. This driver is described
10
+ structurally against the `DatabaseDriver` contract, which the bump leaves
11
+ alone.
12
+ - The `remix` peer stays at `^3.0.0-rc.1`, which already admits rc.2.
13
+ - Tested against `remix@3.0.0-rc.2`, including the workerd suite that drives a
14
+ real Miniflare D1 binding.
15
+
3
16
  ## 0.2.0
4
17
 
5
18
  Target Remix `3.0.0-rc.1`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pitlane/data-table-d1",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A Cloudflare D1 driver for Remix 3's data-table: SQLite SQL over D1's async prepared-statement binding.",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -42,7 +42,7 @@
42
42
  "devDependencies": {
43
43
  "@types/node": "^25.5.0",
44
44
  "miniflare": "^4.20260710.0",
45
- "remix": "3.0.0-rc.1",
45
+ "remix": "3.0.0-rc.2",
46
46
  "typescript": "^7.0.2",
47
47
  "vite-plus": "^0.2.6"
48
48
  },