@pikku/kysely-bun-sqlite 0.12.3 → 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
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
+
21
+ ## 0.12.4
22
+
23
+ ### Patch Changes
24
+
25
+ - fd9d834: Stop publishing internals that only their own package or file used. The declarations stay; only the entrypoint re-export is removed, so nothing that imported a name from where it is declared is affected.
26
+ - Updated dependencies [fd9d834]
27
+ - @pikku/kysely@0.13.15
28
+ - @pikku/kysely-sqlite@0.12.11
29
+
3
30
  ## 0.12.3
4
31
 
5
32
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  export { BunSqliteDatabase } from './bun-sqlite-adapter.js';
2
2
  export { createBunSqliteKysely, type CreateBunSqliteKyselyOptions, } from './create-bun-sqlite-kysely.js';
3
3
  export { registerSqliteFunctions } from './register-functions.js';
4
- export { SqliteFunctionsUnsupportedError, type SqliteFunction, type SqliteFunctionMap, } from '@pikku/kysely-sqlite';
5
- export { createCoercionPlugin, type CoercionMap, type ColumnKind, type CreateCoercionPluginOptions, } from './coercion-plugin.js';
4
+ export { SqliteFunctionsUnsupportedError, type SqliteFunctionMap, } from '@pikku/kysely-sqlite';
5
+ export { createCoercionPlugin, type ColumnKind, type CreateCoercionPluginOptions, } from './coercion-plugin.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/kysely-bun-sqlite",
3
- "version": "0.12.3",
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.8",
23
- "@pikku/kysely-sqlite": "^0.12.10",
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
  }
package/src/index.ts CHANGED
@@ -6,12 +6,10 @@ export {
6
6
  export { registerSqliteFunctions } from './register-functions.js'
7
7
  export {
8
8
  SqliteFunctionsUnsupportedError,
9
- type SqliteFunction,
10
9
  type SqliteFunctionMap,
11
10
  } from '@pikku/kysely-sqlite'
12
11
  export {
13
12
  createCoercionPlugin,
14
- type CoercionMap,
15
13
  type ColumnKind,
16
14
  type CreateCoercionPluginOptions,
17
15
  } from './coercion-plugin.js'