@geekmidas/db 1.0.2 → 1.1.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 +28 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @geekmidas/db
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 🐛 [#11](https://github.com/geekmidas/toolbox/pull/11) [`40f4dc0`](https://github.com/geekmidas/toolbox/commit/40f4dc095911b2223a255029d8f776caf7781309) Thanks [@geekmidas](https://github.com/geekmidas)! - Patch release across all packages to realign published versions with the
8
+ registry. The previous release only published the four packages that had
9
+ version bumps; the remaining packages failed with "cannot publish over the
10
+ previously published versions" because their versions were unchanged.
11
+
12
+ ## 1.1.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [#9](https://github.com/geekmidas/toolbox/pull/9) [`e31a60a`](https://github.com/geekmidas/toolbox/commit/e31a60a971366180a0e7bec6e7da56d8f36aa21f) Thanks [@geekmidas](https://github.com/geekmidas)! - Support kysely 0.29.
17
+
18
+ kysely 0.29 moved `Migrator` and `FileMigrationProvider` from the root barrel
19
+ (`'kysely'`) to the `'kysely/migration'` subpath. `@geekmidas/testkit`'s
20
+ `PostgresKyselyMigrator` now imports `Migrator` from `'kysely/migration'` and
21
+ its kysely peer becomes `~0.29.4` — consumers must be on kysely 0.29+.
22
+
23
+ The library packages that only declare a kysely _peer_ (`db`, `audit`, `studio`,
24
+ `telescope`) don't touch the moved symbols, so their peer range is _widened_ to
25
+ `>=0.28.2 <0.30.0` — they now support both 0.28 and 0.29 (non-breaking).
26
+
27
+ `@geekmidas/cli`'s scaffolded `test/globalSetup.ts` template now imports
28
+ `FileMigrationProvider` from `'kysely/migration'` so generated projects work on
29
+ kysely 0.29.
30
+
3
31
  ## 1.0.2
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geekmidas/db",
3
- "version": "1.0.2",
3
+ "version": "1.1.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -70,7 +70,7 @@
70
70
  "access": "public"
71
71
  },
72
72
  "peerDependencies": {
73
- "kysely": "~0.28.2",
73
+ "kysely": ">=0.28.2 <0.30.0",
74
74
  "pg": "~8.16.3",
75
75
  "knex": "~3.1.0",
76
76
  "objection": "~3.1.5",