@ditojs/server 2.55.0 → 2.57.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/package.json +9 -9
- package/src/app/Application.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ditojs/server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.57.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",
|
|
@@ -26,11 +26,12 @@
|
|
|
26
26
|
"node >= 18"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ditojs/admin": "^2.
|
|
30
|
-
"@ditojs/build": "^2.
|
|
31
|
-
"@ditojs/router": "^2.
|
|
32
|
-
"@ditojs/utils": "^2.
|
|
29
|
+
"@ditojs/admin": "^2.57.0",
|
|
30
|
+
"@ditojs/build": "^2.57.0",
|
|
31
|
+
"@ditojs/router": "^2.57.0",
|
|
32
|
+
"@ditojs/utils": "^2.57.0",
|
|
33
33
|
"@koa/cors": "^5.0.0",
|
|
34
|
+
"@koa/etag": "^5.0.1",
|
|
34
35
|
"@koa/multer": "^4.0.0",
|
|
35
36
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
36
37
|
"ajv": "^8.17.1",
|
|
@@ -46,7 +47,6 @@
|
|
|
46
47
|
"koa-compose": "^4.1.0",
|
|
47
48
|
"koa-compress": "^5.1.1",
|
|
48
49
|
"koa-conditional-get": "^3.0.0",
|
|
49
|
-
"koa-etag": "^5.0.0",
|
|
50
50
|
"koa-helmet": "^8.0.1",
|
|
51
51
|
"koa-mount": "^4.2.0",
|
|
52
52
|
"koa-passport": "^6.0.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"passthrough-counter": "^1.0.0",
|
|
64
64
|
"picocolors": "^1.1.1",
|
|
65
65
|
"picomatch": "^4.0.3",
|
|
66
|
-
"pino": "^9.
|
|
66
|
+
"pino": "^9.9.0",
|
|
67
67
|
"pino-pretty": "^13.1.1",
|
|
68
68
|
"pluralize": "^8.0.0",
|
|
69
69
|
"repl": "^0.1.3",
|
|
@@ -85,10 +85,10 @@
|
|
|
85
85
|
"@types/koa-session": "^6.4.5",
|
|
86
86
|
"@types/koa-static": "^4.0.4",
|
|
87
87
|
"@types/koa__cors": "^5.0.0",
|
|
88
|
-
"@types/node": "^24.
|
|
88
|
+
"@types/node": "^24.3.0",
|
|
89
89
|
"knex": "^3.1.0",
|
|
90
90
|
"objection": "^3.1.5",
|
|
91
91
|
"typescript": "^5.9.2"
|
|
92
92
|
},
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "4011bf092fe52f8d8bcb37c87a149c46ba5c9b73"
|
|
94
94
|
}
|
package/src/app/Application.js
CHANGED
|
@@ -8,12 +8,12 @@ import pico from 'picocolors'
|
|
|
8
8
|
import pino from 'pino'
|
|
9
9
|
import bodyParser from 'koa-bodyparser'
|
|
10
10
|
import cors from '@koa/cors'
|
|
11
|
+
import etag from '@koa/etag'
|
|
11
12
|
import compose from 'koa-compose'
|
|
12
13
|
import compress from 'koa-compress'
|
|
13
14
|
import conditional from 'koa-conditional-get'
|
|
14
15
|
import mount from 'koa-mount'
|
|
15
16
|
import passport from 'koa-passport'
|
|
16
|
-
import etag from 'koa-etag'
|
|
17
17
|
import helmet from 'koa-helmet'
|
|
18
18
|
import responseTime from 'koa-response-time'
|
|
19
19
|
import { Model, knexSnakeCaseMappers, ref } from 'objection'
|