egg 3.1.0 → 3.3.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/README.md CHANGED
@@ -32,7 +32,7 @@ $ npm run dev
32
32
  $ open http://localhost:7001
33
33
  ```
34
34
 
35
- > Node.js >= 8.5.0 required.
35
+ > Node.js >= 14.20.0 required.
36
36
 
37
37
  ## Documentations
38
38
 
package/README.zh-CN.md CHANGED
@@ -18,7 +18,7 @@
18
18
  - 深度框架定制
19
19
  - 丰富的[插件](https://github.com/search?q=topic%3Aegg-plugin&type=Repositories)
20
20
 
21
- > 支持 Node.js 8.5.x 及以上版本。
21
+ > 支持 Node.js 14.20.0 及以上版本。
22
22
 
23
23
  ## 快速开始
24
24
 
package/lib/agent.js CHANGED
@@ -10,7 +10,7 @@ const EGG_PATH = Symbol.for('egg#eggPath');
10
10
 
11
11
  /**
12
12
  * Singleton instance in Agent Worker, extend {@link EggApplication}
13
- * @extends EggApplication
13
+ * @augments EggApplication
14
14
  */
15
15
  class Agent extends EggApplication {
16
16
  /**
@@ -47,7 +47,7 @@ function escapeHeaderValue(value) {
47
47
  // Refs: https://github.com/nodejs/node/blob/b38c81/lib/_http_outgoing.js#L706-L710
48
48
  /**
49
49
  * Singleton instance in App Worker, extend {@link EggApplication}
50
- * @extends EggApplication
50
+ * @augments EggApplication
51
51
  */
52
52
  class Application extends EggApplication {
53
53
 
@@ -158,6 +158,8 @@ class Application extends EggApplication {
158
158
  onServer(server) {
159
159
  // expose app.server
160
160
  this.server = server;
161
+ // set ignore code
162
+ const serverGracefulIgnoreCode = this.config.serverGracefulIgnoreCode || [];
161
163
 
162
164
  /* istanbul ignore next */
163
165
  graceful({
@@ -177,6 +179,7 @@ class Application extends EggApplication {
177
179
  }
178
180
  this.coreLogger.error(err);
179
181
  },
182
+ ignoreCode: serverGracefulIgnoreCode,
180
183
  });
181
184
 
182
185
  server.on('clientError', (err, socket) => this.onClientError(err, socket));
@@ -123,7 +123,7 @@ class Messenger extends EventEmitter {
123
123
  }
124
124
 
125
125
  /**
126
- * @method Messenger#on
126
+ * @function Messenger#on
127
127
  * @param {String} action - message key
128
128
  * @param {Object} data - message value
129
129
  */
@@ -132,7 +132,7 @@ class Messenger extends EventEmitter {
132
132
  }
133
133
 
134
134
  /**
135
- * @method Messenger#on
135
+ * @function Messenger#on
136
136
  * @param {String} action - message key
137
137
  * @param {Object} data - message value
138
138
  */
package/lib/egg.js CHANGED
@@ -31,7 +31,7 @@ const CLUSTER_CLIENTS = Symbol.for('egg#clusterClients');
31
31
  * Base on koa's Application
32
32
  * @see https://github.com/eggjs/egg-core
33
33
  * @see http://koajs.com/#application
34
- * @extends EggCore
34
+ * @augments EggCore
35
35
  */
36
36
  class EggApplication extends EggCore {
37
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egg",
3
- "version": "3.1.0",
3
+ "version": "3.3.0",
4
4
  "description": "A web framework's framework for Node.js",
5
5
  "keywords": [
6
6
  "web",
@@ -14,84 +14,82 @@
14
14
  ],
15
15
  "dependencies": {
16
16
  "@types/accepts": "^1.3.5",
17
- "@types/koa": "^2.0.48",
18
- "@types/koa-router": "^7.0.40",
19
- "accepts": "^1.3.5",
20
- "agentkeepalive": "^4.0.2",
17
+ "@types/koa": "^2.13.5",
18
+ "@types/koa-router": "^7.4.4",
19
+ "accepts": "^1.3.8",
20
+ "agentkeepalive": "^4.2.1",
21
21
  "cache-content-type": "^1.0.1",
22
22
  "circular-json-for-egg": "^1.0.0",
23
- "cluster-client": "^3.0.1",
24
- "debug": "^4.1.1",
23
+ "cluster-client": "^3.1.1",
24
+ "debug": "^4.3.4",
25
25
  "delegates": "^1.0.0",
26
- "egg-cluster": "^1.23.0",
27
- "egg-cookies": "^2.3.0",
28
- "egg-core": "^4.18.0",
29
- "egg-development": "^2.4.2",
30
- "egg-errors": "^2.3.0",
31
- "egg-i18n": "^2.0.0",
26
+ "egg-cluster": "^1.27.1",
27
+ "egg-cookies": "^2.6.1",
28
+ "egg-core": "^4.26.1",
29
+ "egg-development": "^2.7.0",
30
+ "egg-errors": "^2.3.1",
31
+ "egg-i18n": "^2.1.1",
32
32
  "egg-jsonp": "^2.0.0",
33
- "egg-logger": "^2.3.2",
34
- "egg-logrotator": "^3.0.5",
35
- "egg-multipart": "^2.4.0",
36
- "egg-onerror": "^2.1.0",
37
- "egg-schedule": "^3.6.0",
38
- "egg-security": "^2.4.3",
39
- "egg-session": "^3.1.0",
33
+ "egg-logger": "^2.9.0",
34
+ "egg-logrotator": "^3.1.0",
35
+ "egg-multipart": "^3.0.0",
36
+ "egg-onerror": "^2.1.1",
37
+ "egg-schedule": "^3.7.0",
38
+ "egg-security": "^2.11.0",
39
+ "egg-session": "^3.3.0",
40
40
  "egg-static": "^2.2.0",
41
- "egg-view": "^2.1.2",
42
- "egg-watcher": "^3.1.0",
43
- "extend2": "^1.0.0",
44
- "graceful": "^1.0.2",
41
+ "egg-view": "^2.1.3",
42
+ "egg-watcher": "^3.1.1",
43
+ "extend2": "^1.0.1",
44
+ "graceful": "^1.1.0",
45
45
  "humanize-ms": "^1.2.1",
46
46
  "is-type-of": "^1.2.1",
47
- "koa-bodyparser": "^4.2.1",
47
+ "koa-bodyparser": "^4.3.0",
48
48
  "koa-is-json": "^1.0.0",
49
49
  "koa-override": "^3.0.0",
50
- "ms": "^2.1.1",
50
+ "ms": "^2.1.3",
51
51
  "mz": "^2.7.0",
52
- "on-finished": "^2.3.0",
53
- "semver": "^7.3.2",
52
+ "on-finished": "^2.4.1",
53
+ "semver": "^7.3.7",
54
54
  "sendmessage": "^1.1.0",
55
55
  "urllib": "^2.33.0",
56
- "urllib-next": "^3.1.1",
57
- "utility": "^1.15.0",
58
- "ylru": "^1.2.1"
56
+ "urllib-next": "^3.1.3",
57
+ "utility": "^1.17.0",
58
+ "ylru": "^1.3.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@umijs/preset-react": "^2.1.2",
62
- "address": "^1.0.3",
63
- "antd": "^4.18.6",
61
+ "@umijs/preset-react": "^2.1.6",
62
+ "address": "^1.2.1",
63
+ "antd": "^4.23.2",
64
64
  "assert-extends": "^1.0.1",
65
65
  "assert-file": "^1.0.0",
66
- "autod": "^3.0.1",
66
+ "autod": "^3.1.2",
67
67
  "autod-egg": "^1.1.0",
68
- "coffee": "^5.2.1",
69
- "dumi": "^1.1.38",
70
- "dumi-theme-egg": "^1.2.0",
71
- "egg-alinode": "^1.0.3",
72
- "egg-bin": "^4.12.3",
73
- "egg-doctools": "^2.9.1",
74
- "egg-mock": "^3.21.0",
68
+ "coffee": "^5.4.0",
69
+ "dumi": "^1.1.47",
70
+ "dumi-theme-egg": "^1.2.2",
71
+ "egg-alinode": "^2.0.1",
72
+ "egg-bin": "^5",
73
+ "egg-mock": "^4.2.1",
75
74
  "egg-plugin-puml": "^2.4.0",
76
75
  "egg-tracer": "^1.1.0",
77
- "egg-view-nunjucks": "^2.2.0",
78
- "eslint": "^5.15.1",
79
- "eslint-config-egg": "^7.1.0",
76
+ "egg-view-nunjucks": "^2.3.0",
77
+ "eslint": "^8.23.1",
78
+ "eslint-config-egg": "^12.0.0",
80
79
  "findlinks": "^2.1.0",
81
- "formstream": "^1.1.0",
82
- "glob": "^7.1.3",
83
- "jsdoc": "^3.6.10",
84
- "koa": "^2.11.0",
85
- "koa-static": "^3.0.0",
80
+ "formstream": "^1.1.1",
81
+ "jsdoc": "^3.6.11",
82
+ "koa": "^2.13.4",
83
+ "koa-static": "^5.0.0",
86
84
  "mz": "^2.7.0",
87
85
  "mz-modules": "^2.1.0",
88
86
  "pedding": "^1.1.0",
89
- "prettier": "^2.5.1",
90
- "runscript": "^1.3.0",
87
+ "prettier": "^2.7.1",
88
+ "runscript": "^1.5.3",
91
89
  "spy": "^1.0.0",
92
- "supertest": "^3.4.2",
93
- "ts-node": "^8.0.3",
94
- "typescript": "^3.3.3333"
90
+ "supertest": "^6.2.4",
91
+ "ts-node": "^10.9.1",
92
+ "typescript": "^4.8.3"
95
93
  },
96
94
  "main": "index.js",
97
95
  "types": "index.d.ts",
@@ -110,9 +108,8 @@
110
108
  "test-local-changed": "egg-bin test --changed",
111
109
  "cov": "egg-bin cov --timeout 100000",
112
110
  "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
113
- "site:jsdoc": "node ./scripts/jsdoc.js",
114
111
  "site:dev": "APP_ROOT=./site dumi dev",
115
- "site:build": "APP_ROOT=./site dumi build && npm run site:jsdoc",
112
+ "site:build": "APP_ROOT=./site dumi build",
116
113
  "site:prettier": "prettier --config site/.prettierrc --ignore-path site/.prettierignore --write \"site/**/*.{js,jsx,tsx,ts,less,md,json}\"",
117
114
  "autod": "autod",
118
115
  "puml": "puml . --dest ./site",