@ditojs/server 2.10.6 → 2.11.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.
Files changed (2) hide show
  1. package/package.json +12 -12
  2. package/types/index.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ditojs/server",
3
- "version": "2.10.6",
3
+ "version": "2.11.0",
4
4
  "type": "module",
5
5
  "description": "Dito.js Server – Dito.js is a declarative and modern web framework, based on Objection.js, Koa.js and Vue.js",
6
6
  "repository": "https://github.com/ditojs/dito/tree/master/packages/server",
@@ -22,10 +22,10 @@
22
22
  "node >= 18"
23
23
  ],
24
24
  "dependencies": {
25
- "@ditojs/admin": "^2.10.5",
26
- "@ditojs/build": "^2.10.0",
27
- "@ditojs/router": "^2.10.5",
28
- "@ditojs/utils": "^2.10.5",
25
+ "@ditojs/admin": "^2.11.0",
26
+ "@ditojs/build": "^2.11.0",
27
+ "@ditojs/router": "^2.11.0",
28
+ "@ditojs/utils": "^2.11.0",
29
29
  "@koa/cors": "^4.0.0",
30
30
  "@koa/multer": "^3.0.2",
31
31
  "@originjs/vite-plugin-commonjs": "^1.0.3",
@@ -61,12 +61,12 @@
61
61
  "picocolors": "^1.0.0",
62
62
  "picomatch": "^2.3.1",
63
63
  "pino": "^8.14.1",
64
- "pino-pretty": "^10.0.0",
64
+ "pino-pretty": "^10.2.0",
65
65
  "pluralize": "^8.0.0",
66
66
  "repl": "^0.1.3",
67
- "type-fest": "^3.12.0",
67
+ "type-fest": "^4.0.0",
68
68
  "uuid": "^9.0.0",
69
- "vite": "^4.3.9",
69
+ "vite": "^4.4.7",
70
70
  "vue": "^3.3.4"
71
71
  },
72
72
  "peerDependencies": {
@@ -82,13 +82,13 @@
82
82
  "@types/koa-session": "^6.4.1",
83
83
  "@types/koa-static": "^4.0.2",
84
84
  "@types/koa__cors": "^4.0.0",
85
- "@types/node": "^20.3.3",
86
- "knex": "^2.4.2",
87
- "objection": "^3.0.4",
85
+ "@types/node": "^20.4.5",
86
+ "knex": "^2.5.1",
87
+ "objection": "^3.1.1",
88
88
  "typescript": "^5.1.6"
89
89
  },
90
90
  "types": "types",
91
- "gitHead": "6a68994a0ecfef1729d1c2e0b29c276eab1dd0ba",
91
+ "gitHead": "1589dbd472f04ec8a540e8b39bd7de8e2907872a",
92
92
  "scripts": {
93
93
  "types": "tsc --noEmit --esModuleInterop ./types/index.d.ts"
94
94
  },
package/types/index.d.ts CHANGED
@@ -1840,6 +1840,7 @@ export type KoaContext<$State = any> = Koa.ParameterizedContext<
1840
1840
  {
1841
1841
  transaction: objection.Transaction
1842
1842
  session: koaSession.ContextSession & { state: { user: any } }
1843
+ logger: PinoLogger
1843
1844
  }
1844
1845
  >
1845
1846