@pikku/kysely-bun-sqlite 0.12.7 → 0.12.8
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 +12 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @pikku/kysely-bun-sqlite
|
|
2
2
|
|
|
3
|
+
## 0.12.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6ff72d3: Raise the supported Bun version to 1.4.
|
|
8
|
+
|
|
9
|
+
`@pikku/bun-server` and `@pikku/kysely-bun-sqlite` now declare `engines.bun: >=1.4.0`
|
|
10
|
+
and build against `@types/bun@^1.4.0`. `create-pikku` scaffolds
|
|
11
|
+
`"packageManager": "bun@1.4.0"`, and the fabric `smoke`/`validate` commands default to
|
|
12
|
+
and recommend the same version. CI pins `oven-sh/setup-bun` to 1.4.0 instead of
|
|
13
|
+
tracking `latest`.
|
|
14
|
+
|
|
3
15
|
## 0.12.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pikku/kysely-bun-sqlite",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.8",
|
|
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",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"prepublishOnly": "bun run build"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
|
-
"bun": ">=1.
|
|
19
|
+
"bun": ">=1.4.0"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@pikku/kysely": "^0.13.18",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@pikku/core": "^0.12.86",
|
|
31
|
-
"@types/bun": "
|
|
31
|
+
"@types/bun": "^1.4.0",
|
|
32
32
|
"typescript": "^6.0.3"
|
|
33
33
|
}
|
|
34
34
|
}
|