@pikku/kysely-bun-sqlite 0.12.4 → 0.12.5

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 +18 -0
  2. package/package.json +7 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @pikku/kysely-bun-sqlite
2
2
 
3
+ ## 0.12.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 0686513: Declare `@pikku/core` as a peer dependency, matching `@pikku/kysely-sqlite`.
8
+
9
+ The package depends on `@pikku/kysely-sqlite`, which requires `@pikku/core` as a
10
+ peer, but never declared that requirement itself — so an install resolved
11
+ without complaint and the missing peer only surfaced at runtime. It is now
12
+ declared the same way its sibling declares it.
13
+
14
+ - Updated dependencies [7406bfe]
15
+ - Updated dependencies [6794681]
16
+ - Updated dependencies [a7fcd2e]
17
+ - @pikku/core@0.12.84
18
+ - @pikku/kysely@0.13.16
19
+ - @pikku/kysely-sqlite@0.12.12
20
+
3
21
  ## 0.12.4
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/kysely-bun-sqlite",
3
- "version": "0.12.4",
3
+ "version": "0.12.5",
4
4
  "description": "Kysely driver for Pikku backed by the built-in bun:sqlite module",
5
5
  "author": "yasser.fadl@gmail.com",
6
6
  "license": "MIT",
@@ -19,11 +19,15 @@
19
19
  "bun": ">=1.0.0"
20
20
  },
21
21
  "dependencies": {
22
- "@pikku/kysely": "^0.13.15",
23
- "@pikku/kysely-sqlite": "^0.12.11",
22
+ "@pikku/kysely": "^0.13.16",
23
+ "@pikku/kysely-sqlite": "^0.12.12",
24
24
  "kysely": "^0.29.0"
25
25
  },
26
+ "peerDependencies": {
27
+ "@pikku/core": "^0.12.84"
28
+ },
26
29
  "devDependencies": {
30
+ "@pikku/core": "^0.12.84",
27
31
  "@types/bun": "latest",
28
32
  "typescript": "^6.0.3"
29
33
  }