@pikku/kysely 0.9.5-next.0 → 0.10.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 +6 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @pikku/kysely
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
This release includes significant improvements across the framework including tree-shaking support, middleware/permission factories, enhanced CLI functionality, improved TypeScript type safety, and comprehensive test strategies.
|
|
6
|
+
|
|
7
|
+
For complete details, see https://pikku.dev/changelogs/0_10_0.md
|
|
8
|
+
|
|
3
9
|
## 0.9.5-next.0
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/index.ts","../src/kysely-channel-store.ts","../src/kysely-eventhub-store.ts","../src/pikku-kysely.ts","../bin/pikku-kysely-pure.ts"],"version":"5.9.
|
|
1
|
+
{"root":["../src/index.ts","../src/kysely-channel-store.ts","../src/kysely-eventhub-store.ts","../src/pikku-kysely.ts","../bin/pikku-kysely-pure.ts"],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pikku/kysely",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"author": "yasser.fadl@gmail.com",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "dist/src/index.js",
|
|
@@ -16,17 +16,17 @@
|
|
|
16
16
|
"release": "npm run build && npm test"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@pikku/core": "^0.
|
|
19
|
+
"@pikku/core": "^0.10.0"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"kysely": "^0.28.
|
|
23
|
-
"kysely-postgres-js": "^
|
|
22
|
+
"kysely": "^0.28.8",
|
|
23
|
+
"kysely-postgres-js": "^3.0.0",
|
|
24
24
|
"postgres": "^3.4.7"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"kysely": "^0.28.
|
|
28
|
-
"kysely-codegen": "^0.
|
|
29
|
-
"kysely-postgres-js": "^
|
|
27
|
+
"kysely": "^0.28.8",
|
|
28
|
+
"kysely-codegen": "^0.19.0",
|
|
29
|
+
"kysely-postgres-js": "^3.0.0",
|
|
30
30
|
"postgres": "^3.4.7",
|
|
31
31
|
"typescript": "^5.9"
|
|
32
32
|
}
|