@geekmidas/studio 1.0.1 → 2.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @geekmidas/studio
2
2
 
3
+ ## 2.0.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
+ - Updated dependencies [[`40f4dc0`](https://github.com/geekmidas/toolbox/commit/40f4dc095911b2223a255029d8f776caf7781309)]:
12
+ - @geekmidas/db@1.1.1
13
+ - @geekmidas/telescope@1.1.1
14
+
15
+ ## 2.0.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#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.
20
+
21
+ kysely 0.29 moved `Migrator` and `FileMigrationProvider` from the root barrel
22
+ (`'kysely'`) to the `'kysely/migration'` subpath. `@geekmidas/testkit`'s
23
+ `PostgresKyselyMigrator` now imports `Migrator` from `'kysely/migration'` and
24
+ its kysely peer becomes `~0.29.4` — consumers must be on kysely 0.29+.
25
+
26
+ The library packages that only declare a kysely _peer_ (`db`, `audit`, `studio`,
27
+ `telescope`) don't touch the moved symbols, so their peer range is _widened_ to
28
+ `>=0.28.2 <0.30.0` — they now support both 0.28 and 0.29 (non-breaking).
29
+
30
+ `@geekmidas/cli`'s scaffolded `test/globalSetup.ts` template now imports
31
+ `FileMigrationProvider` from `'kysely/migration'` so generated projects work on
32
+ kysely 0.29.
33
+
34
+ ### Patch Changes
35
+
36
+ - Updated dependencies [[`e31a60a`](https://github.com/geekmidas/toolbox/commit/e31a60a971366180a0e7bec6e7da56d8f36aa21f)]:
37
+ - @geekmidas/db@1.1.0
38
+ - @geekmidas/telescope@1.1.0
39
+
3
40
  ## 1.0.1
4
41
 
5
42
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geekmidas/studio",
3
- "version": "1.0.1",
3
+ "version": "2.0.1",
4
4
  "description": "Unified development tools dashboard with database browser and request monitoring",
5
5
  "type": "module",
6
6
  "exports": {
@@ -48,9 +48,9 @@
48
48
  },
49
49
  "peerDependencies": {
50
50
  "hono": "^4.0.0",
51
- "kysely": "^0.28.0",
52
- "@geekmidas/db": "^1.0.2",
53
- "@geekmidas/telescope": "^1.0.1"
51
+ "kysely": ">=0.28.2 <0.30.0",
52
+ "@geekmidas/db": "^1.1.1",
53
+ "@geekmidas/telescope": "^1.1.1"
54
54
  },
55
55
  "peerDependenciesMeta": {
56
56
  "@geekmidas/db": {
@@ -66,10 +66,10 @@
66
66
  "devDependencies": {
67
67
  "@types/pg": "~8.16.0",
68
68
  "hono": "^4.7.0",
69
- "kysely": "~0.28.2",
69
+ "kysely": "~0.29.4",
70
70
  "pg": "~8.16.3",
71
- "@geekmidas/db": "^1.0.2",
72
- "@geekmidas/telescope": "^1.0.1"
71
+ "@geekmidas/db": "^1.1.1",
72
+ "@geekmidas/telescope": "^1.1.1"
73
73
  },
74
74
  "scripts": {
75
75
  "build:ui": "pnpm --filter @geekmidas/studio-ui build && tsx ../ui/scripts/embed-ui.ts dist/ui src/ui-assets.ts"
package/ui/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @geekmidas/studio-ui
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`40f4dc0`](https://github.com/geekmidas/toolbox/commit/40f4dc095911b2223a255029d8f776caf7781309)]:
8
+ - @geekmidas/ui@1.0.2
9
+
3
10
  ## 1.0.1
4
11
 
5
12
  ### Patch Changes
package/ui/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@geekmidas/studio-ui",
3
3
  "private": true,
4
- "version": "1.0.1",
4
+ "version": "1.0.2",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",