@geekmidas/studio 1.0.1 → 2.0.0
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 +25 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @geekmidas/studio
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#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.
|
|
8
|
+
|
|
9
|
+
kysely 0.29 moved `Migrator` and `FileMigrationProvider` from the root barrel
|
|
10
|
+
(`'kysely'`) to the `'kysely/migration'` subpath. `@geekmidas/testkit`'s
|
|
11
|
+
`PostgresKyselyMigrator` now imports `Migrator` from `'kysely/migration'` and
|
|
12
|
+
its kysely peer becomes `~0.29.4` — consumers must be on kysely 0.29+.
|
|
13
|
+
|
|
14
|
+
The library packages that only declare a kysely _peer_ (`db`, `audit`, `studio`,
|
|
15
|
+
`telescope`) don't touch the moved symbols, so their peer range is _widened_ to
|
|
16
|
+
`>=0.28.2 <0.30.0` — they now support both 0.28 and 0.29 (non-breaking).
|
|
17
|
+
|
|
18
|
+
`@geekmidas/cli`'s scaffolded `test/globalSetup.ts` template now imports
|
|
19
|
+
`FileMigrationProvider` from `'kysely/migration'` so generated projects work on
|
|
20
|
+
kysely 0.29.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`e31a60a`](https://github.com/geekmidas/toolbox/commit/e31a60a971366180a0e7bec6e7da56d8f36aa21f)]:
|
|
25
|
+
- @geekmidas/db@1.1.0
|
|
26
|
+
- @geekmidas/telescope@1.1.0
|
|
27
|
+
|
|
3
28
|
## 1.0.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekmidas/studio",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
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": "
|
|
52
|
-
"@geekmidas/db": "^1.0
|
|
53
|
-
"@geekmidas/telescope": "^1.0
|
|
51
|
+
"kysely": ">=0.28.2 <0.30.0",
|
|
52
|
+
"@geekmidas/db": "^1.1.0",
|
|
53
|
+
"@geekmidas/telescope": "^1.1.0"
|
|
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.
|
|
69
|
+
"kysely": "~0.29.4",
|
|
70
70
|
"pg": "~8.16.3",
|
|
71
|
-
"@geekmidas/db": "^1.0
|
|
72
|
-
"@geekmidas/telescope": "^1.0
|
|
71
|
+
"@geekmidas/db": "^1.1.0",
|
|
72
|
+
"@geekmidas/telescope": "^1.1.0"
|
|
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"
|