@midwayjs/express 3.0.0-beta.13 → 3.0.0-beta.17
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 +2 -2
- package/dist/framework.d.ts +8 -5
- package/dist/framework.js +19 -14
- package/dist/interface.d.ts +17 -11
- package/dist/logger.d.ts +2 -2
- package/dist/middlewareService.d.ts +3 -3
- package/dist/middlewareService.js +9 -4
- package/dist/util.d.ts +2 -0
- package/dist/util.js +13 -0
- package/package.json +14 -14
- package/CHANGELOG.md +0 -1036
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# midway
|
|
1
|
+
# midway for express
|
|
2
2
|
|
|
3
|
-
[](http://packagequality.com/#?package=@midwayjs/express)
|
|
4
4
|
[](https://github.com/midwayjs/midway/pulls)
|
|
5
5
|
|
|
6
6
|
this is a sub package for midway.
|
package/dist/framework.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { BaseFramework, IMidwayBootstrapOptions, MiddlewareRespond, MidwayFrameworkType, RouterInfo } from '@midwayjs/core';
|
|
3
|
-
import { IMidwayExpressApplication, IMidwayExpressConfigurationOptions,
|
|
3
|
+
import { IMidwayExpressApplication, IMidwayExpressConfigurationOptions, Context } from './interface';
|
|
4
4
|
import type { IRouter, IRouterHandler, Response, NextFunction } from 'express';
|
|
5
5
|
import { Server } from 'net';
|
|
6
6
|
import { MidwayExpressContextLogger } from './logger';
|
|
7
|
-
export declare class MidwayExpressFramework extends BaseFramework<IMidwayExpressApplication,
|
|
7
|
+
export declare class MidwayExpressFramework extends BaseFramework<IMidwayExpressApplication, Context, IMidwayExpressConfigurationOptions, Response, NextFunction> {
|
|
8
8
|
app: IMidwayExpressApplication;
|
|
9
9
|
private server;
|
|
10
10
|
private expressMiddlewareService;
|
|
@@ -16,18 +16,21 @@ export declare class MidwayExpressFramework extends BaseFramework<IMidwayExpress
|
|
|
16
16
|
* wrap controller string to middleware function
|
|
17
17
|
*/
|
|
18
18
|
protected generateController(routeInfo: RouterInfo): IRouterHandler<any>;
|
|
19
|
-
loadMidwayController(): Promise<
|
|
19
|
+
loadMidwayController(): Promise<Array<{
|
|
20
|
+
prefix: string;
|
|
21
|
+
middleware: any;
|
|
22
|
+
}>>;
|
|
20
23
|
/**
|
|
21
24
|
* @param routerOptions
|
|
22
25
|
*/
|
|
23
26
|
protected createRouter(routerOptions: {
|
|
24
27
|
sensitive: any;
|
|
25
28
|
}): IRouter;
|
|
26
|
-
applyMiddleware<Response, NextFunction>(): Promise<MiddlewareRespond<
|
|
29
|
+
applyMiddleware<Response, NextFunction>(): Promise<MiddlewareRespond<Context, Response, NextFunction>>;
|
|
27
30
|
beforeStop(): Promise<void>;
|
|
28
31
|
getServer(): Server;
|
|
32
|
+
getPort(): string;
|
|
29
33
|
getFrameworkName(): string;
|
|
30
34
|
getDefaultContextLoggerClass(): typeof MidwayExpressContextLogger;
|
|
31
|
-
protected sendData(res: any, data: any): void;
|
|
32
35
|
}
|
|
33
36
|
//# sourceMappingURL=framework.d.ts.map
|
package/dist/framework.js
CHANGED
|
@@ -13,6 +13,7 @@ const express = require("express");
|
|
|
13
13
|
const logger_1 = require("./logger");
|
|
14
14
|
const middlewareService_1 = require("./middlewareService");
|
|
15
15
|
const util_1 = require("util");
|
|
16
|
+
const util_2 = require("./util");
|
|
16
17
|
const debug = (0, util_1.debuglog)('midway:debug');
|
|
17
18
|
let MidwayExpressFramework = class MidwayExpressFramework extends core_1.BaseFramework {
|
|
18
19
|
configure() {
|
|
@@ -42,13 +43,17 @@ let MidwayExpressFramework = class MidwayExpressFramework extends core_1.BaseFra
|
|
|
42
43
|
debug(`[express]: use middlewares = "${this.getMiddleware().getNames()}"`);
|
|
43
44
|
// restore use method
|
|
44
45
|
this.app.use = this.app.originUse;
|
|
46
|
+
debug('[express]: use user router middleware');
|
|
47
|
+
// load controller,must apply router filter here
|
|
48
|
+
const routerMiddlewares = await this.loadMidwayController();
|
|
45
49
|
// use global middleware
|
|
46
50
|
const globalMiddleware = await this.applyMiddleware();
|
|
47
51
|
debug('[express]: use and apply all framework and global middleware');
|
|
48
52
|
this.app.use(globalMiddleware);
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
53
|
+
// load router after global middleware
|
|
54
|
+
for (const info of routerMiddlewares) {
|
|
55
|
+
this.app.use(info.prefix, info.middleware);
|
|
56
|
+
}
|
|
52
57
|
debug('[express]: use 404 not found middleware');
|
|
53
58
|
// eslint-disable-next-line
|
|
54
59
|
this.app.use(function notFound(req, res, next) {
|
|
@@ -87,7 +92,7 @@ let MidwayExpressFramework = class MidwayExpressFramework extends core_1.BaseFra
|
|
|
87
92
|
next(error);
|
|
88
93
|
}
|
|
89
94
|
else {
|
|
90
|
-
|
|
95
|
+
(0, util_2.sendData)(res, result);
|
|
91
96
|
}
|
|
92
97
|
})
|
|
93
98
|
.catch(err => {
|
|
@@ -172,7 +177,7 @@ let MidwayExpressFramework = class MidwayExpressFramework extends core_1.BaseFra
|
|
|
172
177
|
if (error) {
|
|
173
178
|
throw error;
|
|
174
179
|
}
|
|
175
|
-
|
|
180
|
+
(0, util_2.sendData)(res, returnValue);
|
|
176
181
|
});
|
|
177
182
|
}
|
|
178
183
|
async loadMidwayController() {
|
|
@@ -182,6 +187,7 @@ let MidwayExpressFramework = class MidwayExpressFramework extends core_1.BaseFra
|
|
|
182
187
|
});
|
|
183
188
|
const routerTable = await collector.getRouterTable();
|
|
184
189
|
const routerList = await collector.getRoutePriorityList();
|
|
190
|
+
const routerMiddlewares = [];
|
|
185
191
|
for (const routerInfo of routerList) {
|
|
186
192
|
// bind controller first
|
|
187
193
|
this.getApplicationContext().bindClass(routerInfo.routerModule);
|
|
@@ -208,8 +214,12 @@ let MidwayExpressFramework = class MidwayExpressFramework extends core_1.BaseFra
|
|
|
208
214
|
// apply controller from request context
|
|
209
215
|
newRouter[routeInfo.requestMethod].call(newRouter, routeInfo.url, ...routeMiddlewareList, this.generateController(routeInfo));
|
|
210
216
|
}
|
|
211
|
-
|
|
217
|
+
routerMiddlewares.push({
|
|
218
|
+
prefix: routerInfo.prefix,
|
|
219
|
+
middleware: newRouter,
|
|
220
|
+
});
|
|
212
221
|
}
|
|
222
|
+
return routerMiddlewares;
|
|
213
223
|
}
|
|
214
224
|
/**
|
|
215
225
|
* @param routerOptions
|
|
@@ -230,20 +240,15 @@ let MidwayExpressFramework = class MidwayExpressFramework extends core_1.BaseFra
|
|
|
230
240
|
getServer() {
|
|
231
241
|
return this.server;
|
|
232
242
|
}
|
|
243
|
+
getPort() {
|
|
244
|
+
return process.env.MIDWAY_HTTP_PORT;
|
|
245
|
+
}
|
|
233
246
|
getFrameworkName() {
|
|
234
247
|
return 'midway:express';
|
|
235
248
|
}
|
|
236
249
|
getDefaultContextLoggerClass() {
|
|
237
250
|
return logger_1.MidwayExpressContextLogger;
|
|
238
251
|
}
|
|
239
|
-
sendData(res, data) {
|
|
240
|
-
if (typeof data === 'number') {
|
|
241
|
-
res.status(res.statusCode).send('' + data);
|
|
242
|
-
}
|
|
243
|
-
else {
|
|
244
|
-
res.status(res.statusCode).send(data);
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
252
|
};
|
|
248
253
|
MidwayExpressFramework = __decorate([
|
|
249
254
|
(0, decorator_1.Framework)()
|
package/dist/interface.d.ts
CHANGED
|
@@ -1,23 +1,31 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { CommonMiddlewareUnion, ContextMiddlewareManager, IConfigurationOptions, IMiddleware, IMidwayApplication, IMidwayContext } from '@midwayjs/core';
|
|
3
|
-
import { Application as ExpressApplication, NextFunction as ExpressNextFunction, Request, Response } from 'express';
|
|
3
|
+
import { Application as ExpressApplication, NextFunction as ExpressNextFunction, Request as ExpressRequest, Response as ExpressResponse } from 'express';
|
|
4
4
|
import { Options, OptionsJson, OptionsText, OptionsUrlencoded } from 'body-parser';
|
|
5
|
-
|
|
5
|
+
declare type Request = IMidwayContext<ExpressRequest>;
|
|
6
|
+
export declare type Response = ExpressResponse;
|
|
7
|
+
export declare type NextFunction = ExpressNextFunction;
|
|
8
|
+
export interface Context extends Request {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated use Context
|
|
12
|
+
*/
|
|
13
|
+
export declare type IMidwayExpressRequest = Context;
|
|
6
14
|
/**
|
|
7
|
-
* @deprecated use
|
|
15
|
+
* @deprecated use Context
|
|
8
16
|
*/
|
|
9
|
-
export declare type
|
|
10
|
-
export declare type IMidwayExpressMiddleware = IMiddleware<
|
|
11
|
-
export interface IMidwayExpressApplication extends IMidwayApplication<
|
|
17
|
+
export declare type IMidwayExpressContext = Context;
|
|
18
|
+
export declare type IMidwayExpressMiddleware = IMiddleware<Context, ExpressResponse, ExpressNextFunction>;
|
|
19
|
+
export interface IMidwayExpressApplication extends IMidwayApplication<Context, ExpressApplication> {
|
|
12
20
|
/**
|
|
13
21
|
* add global middleware to app
|
|
14
22
|
* @param Middleware
|
|
15
23
|
*/
|
|
16
|
-
useMiddleware<Response, NextFunction>(Middleware: CommonMiddlewareUnion<
|
|
24
|
+
useMiddleware<Response, NextFunction>(Middleware: CommonMiddlewareUnion<Context, Response, NextFunction>): void;
|
|
17
25
|
/**
|
|
18
26
|
* get global middleware
|
|
19
27
|
*/
|
|
20
|
-
getMiddleware<Response, NextFunction>(): ContextMiddlewareManager<
|
|
28
|
+
getMiddleware<Response, NextFunction>(): ContextMiddlewareManager<Context, Response, NextFunction>;
|
|
21
29
|
}
|
|
22
30
|
export interface IMidwayExpressConfigurationOptions extends IConfigurationOptions {
|
|
23
31
|
/**
|
|
@@ -54,9 +62,6 @@ export interface IMidwayExpressConfigurationOptions extends IConfigurationOption
|
|
|
54
62
|
globalPrefix?: string;
|
|
55
63
|
}
|
|
56
64
|
export declare type Application = IMidwayExpressApplication;
|
|
57
|
-
export declare type NextFunction = ExpressNextFunction;
|
|
58
|
-
export interface Context extends IMidwayExpressContext {
|
|
59
|
-
}
|
|
60
65
|
declare module '@midwayjs/core/dist/interface' {
|
|
61
66
|
interface MidwayConfig {
|
|
62
67
|
express?: IMidwayExpressConfigurationOptions;
|
|
@@ -77,4 +82,5 @@ declare module '@midwayjs/core/dist/interface' {
|
|
|
77
82
|
};
|
|
78
83
|
}
|
|
79
84
|
}
|
|
85
|
+
export {};
|
|
80
86
|
//# sourceMappingURL=interface.d.ts.map
|
package/dist/logger.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { MidwayContextLogger } from '@midwayjs/logger';
|
|
2
|
-
import {
|
|
3
|
-
export declare class MidwayExpressContextLogger extends MidwayContextLogger<
|
|
2
|
+
import { Context } from './interface';
|
|
3
|
+
export declare class MidwayExpressContextLogger extends MidwayContextLogger<Context> {
|
|
4
4
|
formatContextLabel(): string;
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=logger.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { IMidwayContainer, CommonMiddleware, FunctionMiddleware } from '@midwayjs/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Context, Application } from './interface';
|
|
3
3
|
import { NextFunction, Response } from 'express';
|
|
4
4
|
export declare function wrapAsyncHandler(fn: any): any;
|
|
5
5
|
export declare class MidwayExpressMiddlewareService {
|
|
6
6
|
readonly applicationContext: IMidwayContainer;
|
|
7
7
|
constructor(applicationContext: IMidwayContainer);
|
|
8
|
-
compose(middleware: Array<CommonMiddleware<
|
|
9
|
-
(req:
|
|
8
|
+
compose(middleware: Array<CommonMiddleware<Context, Response, NextFunction> | string>, app: Application, name?: string): Promise<{
|
|
9
|
+
(req: Context, res: Response, nextFunction: NextFunction): any;
|
|
10
10
|
_name: string;
|
|
11
11
|
}>;
|
|
12
12
|
}
|
|
@@ -12,8 +12,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.wrapMiddleware = exports.MidwayExpressMiddlewareService = exports.wrapAsyncHandler = void 0;
|
|
13
13
|
const decorator_1 = require("@midwayjs/decorator");
|
|
14
14
|
const core_1 = require("@midwayjs/core");
|
|
15
|
+
const util_1 = require("./util");
|
|
15
16
|
function wrapAsyncHandler(fn) {
|
|
16
|
-
if (
|
|
17
|
+
if (decorator_1.Types.isAsyncFunction(fn)) {
|
|
17
18
|
return (req, res, next) => {
|
|
18
19
|
return fn(req, res, next).catch(err => {
|
|
19
20
|
next(err);
|
|
@@ -35,14 +36,14 @@ let MidwayExpressMiddlewareService = class MidwayExpressMiddlewareService {
|
|
|
35
36
|
}
|
|
36
37
|
const newMiddlewareArr = [];
|
|
37
38
|
for (let fn of middleware) {
|
|
38
|
-
if (
|
|
39
|
+
if (decorator_1.Types.isClass(fn) || typeof fn === 'string') {
|
|
39
40
|
if (typeof fn === 'string' &&
|
|
40
41
|
!this.applicationContext.hasDefinition(fn)) {
|
|
41
42
|
throw new core_1.MidwayCommonError('Middleware definition not found in midway container');
|
|
42
43
|
}
|
|
43
44
|
const classMiddleware = await this.applicationContext.getAsync(fn);
|
|
44
45
|
if (classMiddleware) {
|
|
45
|
-
fn = classMiddleware.resolve(app);
|
|
46
|
+
fn = await classMiddleware.resolve(app);
|
|
46
47
|
// wrap async middleware
|
|
47
48
|
fn = wrapAsyncHandler(fn);
|
|
48
49
|
if (!classMiddleware.match && !classMiddleware.ignore) {
|
|
@@ -91,7 +92,11 @@ let MidwayExpressMiddlewareService = class MidwayExpressMiddlewareService {
|
|
|
91
92
|
return dispatch(pos + 1, err);
|
|
92
93
|
}
|
|
93
94
|
try {
|
|
94
|
-
|
|
95
|
+
Promise.resolve(handler(req, res, next)).then(result => {
|
|
96
|
+
if (result) {
|
|
97
|
+
(0, util_1.sendData)(res, result);
|
|
98
|
+
}
|
|
99
|
+
});
|
|
95
100
|
}
|
|
96
101
|
catch (err) {
|
|
97
102
|
// Avoid future errors that could diverge stack execution.
|
package/dist/util.d.ts
ADDED
package/dist/util.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.sendData = void 0;
|
|
4
|
+
function sendData(res, data) {
|
|
5
|
+
if (typeof data === 'number') {
|
|
6
|
+
res.status(res.statusCode).send('' + data);
|
|
7
|
+
}
|
|
8
|
+
else {
|
|
9
|
+
res.status(res.statusCode).send(data);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.sendData = sendData;
|
|
13
|
+
//# sourceMappingURL=util.js.map
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/express",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.17",
|
|
4
4
|
"description": "Midway Web Framework for Express",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "tsc",
|
|
9
|
-
"test": "node --require=ts-node/register ../../node_modules/.bin/jest",
|
|
10
|
-
"cov": "node --require=ts-node/register ../../node_modules/.bin/jest --coverage --forceExit",
|
|
9
|
+
"test": "node --require=ts-node/register ../../node_modules/.bin/jest --runInBand",
|
|
10
|
+
"cov": "node --require=ts-node/register ../../node_modules/.bin/jest --runInBand --coverage --forceExit",
|
|
11
11
|
"ci": "npm run test"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
],
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@midwayjs/decorator": "^3.0.0-beta.
|
|
27
|
-
"@midwayjs/logger": "
|
|
28
|
-
"@midwayjs/mock": "^3.0.0-beta.
|
|
29
|
-
"@types/body-parser": "
|
|
30
|
-
"@types/express": "
|
|
31
|
-
"fs-extra": "
|
|
26
|
+
"@midwayjs/decorator": "^3.0.0-beta.17",
|
|
27
|
+
"@midwayjs/logger": "2.14.0",
|
|
28
|
+
"@midwayjs/mock": "^3.0.0-beta.17",
|
|
29
|
+
"@types/body-parser": "1.19.2",
|
|
30
|
+
"@types/express": "4.17.13",
|
|
31
|
+
"fs-extra": "10.0.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@midwayjs/core": "^3.0.0-beta.
|
|
35
|
-
"@midwayjs/express-session": "^3.0.0-beta.
|
|
36
|
-
"body-parser": "
|
|
34
|
+
"@midwayjs/core": "^3.0.0-beta.17",
|
|
35
|
+
"@midwayjs/express-session": "^3.0.0-beta.17",
|
|
36
|
+
"body-parser": "1.19.1",
|
|
37
37
|
"cookie-parser": "^1.4.6",
|
|
38
|
-
"express": "
|
|
38
|
+
"express": "4.17.2"
|
|
39
39
|
},
|
|
40
40
|
"author": "Harry Chen <czy88840616@gmail.com>",
|
|
41
41
|
"repository": {
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=12"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "17a8b5bd3d0b0b21f24dd2f165b5df9097fc3ec4"
|
|
49
49
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,1036 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [3.0.0-beta.13](https://github.com/midwayjs/midway/compare/v3.0.0-beta.12...v3.0.0-beta.13) (2021-12-30)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* 404 error ([#1465](https://github.com/midwayjs/midway/issues/1465)) ([e7e8a9d](https://github.com/midwayjs/midway/commit/e7e8a9dedfa7198ac05b161b41024c2871f93965))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
# [3.0.0-beta.12](https://github.com/midwayjs/midway/compare/v3.0.0-beta.11...v3.0.0-beta.12) (2021-12-28)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Features
|
|
21
|
-
|
|
22
|
-
* custom error code & add @Files/@Fields ([#1438](https://github.com/midwayjs/midway/issues/1438)) ([b0032af](https://github.com/midwayjs/midway/commit/b0032afd2fa9ea0416fe69f4bd0c1a58bea5314e))
|
|
23
|
-
* support throw err status ([#1440](https://github.com/midwayjs/midway/issues/1440)) ([7b98110](https://github.com/midwayjs/midway/commit/7b98110d65c5287a8fcb3eb5356dea2d7a32cee9))
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
# [3.0.0-beta.11](https://github.com/midwayjs/midway/compare/v3.0.0-beta.10...v3.0.0-beta.11) (2021-12-21)
|
|
30
|
-
|
|
31
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
# [3.0.0-beta.10](https://github.com/midwayjs/midway/compare/v3.0.0-beta.9...v3.0.0-beta.10) (2021-12-20)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### Features
|
|
41
|
-
|
|
42
|
-
* default add session & bodyparser support for koa/express/faas ([#1420](https://github.com/midwayjs/midway/issues/1420)) ([cdaff31](https://github.com/midwayjs/midway/commit/cdaff317c3e862a95494a167995a28280af639bf))
|
|
43
|
-
* implement i18n for validate ([#1426](https://github.com/midwayjs/midway/issues/1426)) ([4c7ed2f](https://github.com/midwayjs/midway/commit/4c7ed2ff2e7ccf10f88f62abad230f92f5e76b97))
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
# [3.0.0-beta.9](https://github.com/midwayjs/midway/compare/v3.0.0-beta.8...v3.0.0-beta.9) (2021-12-09)
|
|
50
|
-
|
|
51
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
# [3.0.0-beta.8](https://github.com/midwayjs/midway/compare/v3.0.0-beta.7...v3.0.0-beta.8) (2021-12-08)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* express routing middleware takes effect at the controller level ([#1364](https://github.com/midwayjs/midway/issues/1364)) ([b9272e0](https://github.com/midwayjs/midway/commit/b9272e0971003443304b0c53815be31a0061b4bd))
|
|
63
|
-
* typeorm EntityView missing connectionName ([#1403](https://github.com/midwayjs/midway/issues/1403)) ([30b2b37](https://github.com/midwayjs/midway/commit/30b2b3711db485cb85d825d56aeabf53b1374cae))
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
# [3.0.0-beta.7](https://github.com/midwayjs/midway/compare/v3.0.0-beta.6...v3.0.0-beta.7) (2021-12-03)
|
|
70
|
-
|
|
71
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
# [3.0.0-beta.6](https://github.com/midwayjs/midway/compare/v3.0.0-beta.5...v3.0.0-beta.6) (2021-11-26)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
### Bug Fixes
|
|
81
|
-
|
|
82
|
-
* class transformer method missing ([#1387](https://github.com/midwayjs/midway/issues/1387)) ([074e839](https://github.com/midwayjs/midway/commit/074e8393598dc95e2742f735df75a2191c5fe25d))
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
# [3.0.0-beta.5](https://github.com/midwayjs/midway/compare/v3.0.0-beta.4...v3.0.0-beta.5) (2021-11-25)
|
|
89
|
-
|
|
90
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
# [3.0.0-beta.4](https://github.com/midwayjs/midway/compare/v3.0.0-beta.3...v3.0.0-beta.4) (2021-11-24)
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
### Features
|
|
100
|
-
|
|
101
|
-
* add i18n ([#1375](https://github.com/midwayjs/midway/issues/1375)) ([bffefe0](https://github.com/midwayjs/midway/commit/bffefe07afe45777d49b5a76b9ab17fc2b9d9a55))
|
|
102
|
-
* auto transform args to type ([#1372](https://github.com/midwayjs/midway/issues/1372)) ([bb3f7d2](https://github.com/midwayjs/midway/commit/bb3f7d2028a034e1926d9df554849332354c3762))
|
|
103
|
-
* support global prefix url ([#1371](https://github.com/midwayjs/midway/issues/1371)) ([cc5fe44](https://github.com/midwayjs/midway/commit/cc5fe44e1d221590562dc71e1f33ae96093e0da7))
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
# [3.0.0-beta.3](https://github.com/midwayjs/midway/compare/v3.0.0-beta.2...v3.0.0-beta.3) (2021-11-18)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
### Features
|
|
113
|
-
|
|
114
|
-
* add component and framework config definition ([#1367](https://github.com/midwayjs/midway/issues/1367)) ([b2fe615](https://github.com/midwayjs/midway/commit/b2fe6157f99659471ff1333eca0b86bb889f61a3))
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
# [3.0.0-beta.2](https://github.com/midwayjs/midway/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2021-11-16)
|
|
121
|
-
|
|
122
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
# [3.0.0-beta.1](https://github.com/midwayjs/midway/compare/v2.12.4...v3.0.0-beta.1) (2021-11-14)
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
### Features
|
|
132
|
-
|
|
133
|
-
* add http2 support ([#1242](https://github.com/midwayjs/midway/issues/1242)) ([6cda27e](https://github.com/midwayjs/midway/commit/6cda27e9e22689e46ace543326b43ae21b134911))
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
## [2.12.3](https://github.com/midwayjs/midway/compare/v2.12.2...v2.12.3) (2021-08-09)
|
|
140
|
-
|
|
141
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
## [2.12.1](https://github.com/midwayjs/midway/compare/v2.12.0...v2.12.1) (2021-08-01)
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
### Bug Fixes
|
|
151
|
-
|
|
152
|
-
* server hostname args ([#1196](https://github.com/midwayjs/midway/issues/1196)) ([b9d73f0](https://github.com/midwayjs/midway/commit/b9d73f036befd13c1db28f967fb769459237c52e))
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
# [2.12.0](https://github.com/midwayjs/midway/compare/v2.11.7...v2.12.0) (2021-07-30)
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
### Features
|
|
162
|
-
|
|
163
|
-
* add support hostname to http-listening ([#1186](https://github.com/midwayjs/midway/issues/1186)) ([6f8356f](https://github.com/midwayjs/midway/commit/6f8356f610c49f87ce8fb9e7d1e60fbd0527d97c))
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
## [2.11.7](https://github.com/midwayjs/midway/compare/v2.11.6...v2.11.7) (2021-07-24)
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
### Bug Fixes
|
|
173
|
-
|
|
174
|
-
* add generateMiddleware definition for express app ([#1170](https://github.com/midwayjs/midway/issues/1170)) ([246a244](https://github.com/midwayjs/midway/commit/246a244add49cc1f87b8707bc6403dae8a7b5dae))
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
## [2.11.6](https://github.com/midwayjs/midway/compare/v2.11.5...v2.11.6) (2021-07-16)
|
|
181
|
-
|
|
182
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
## [2.11.5](https://github.com/midwayjs/midway/compare/v2.11.4...v2.11.5) (2021-07-15)
|
|
189
|
-
|
|
190
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
## [2.11.4](https://github.com/midwayjs/midway/compare/v2.11.3...v2.11.4) (2021-07-06)
|
|
197
|
-
|
|
198
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
## [2.11.3](https://github.com/midwayjs/midway/compare/v2.11.2...v2.11.3) (2021-07-02)
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
### Bug Fixes
|
|
208
|
-
|
|
209
|
-
* uppercase for header decorator ([#1123](https://github.com/midwayjs/midway/issues/1123)) ([cfcfb1f](https://github.com/midwayjs/midway/commit/cfcfb1fb8860b110e2671e9bff57f6c537f11f90))
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
## [2.11.2](https://github.com/midwayjs/midway/compare/v2.11.1...v2.11.2) (2021-06-28)
|
|
216
|
-
|
|
217
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
## [2.11.1](https://github.com/midwayjs/midway/compare/v2.11.0...v2.11.1) (2021-06-19)
|
|
224
|
-
|
|
225
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
# [2.11.0](https://github.com/midwayjs/midway/compare/v2.10.19...v2.11.0) (2021-06-10)
|
|
232
|
-
|
|
233
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
## [2.10.18](https://github.com/midwayjs/midway/compare/v2.10.17...v2.10.18) (2021-05-26)
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
### Features
|
|
243
|
-
|
|
244
|
-
* add zlib logger file ([#1038](https://github.com/midwayjs/midway/issues/1038)) ([2ae9131](https://github.com/midwayjs/midway/commit/2ae9131b8c8745d2840c40a5d50aa2d3f73bafbf))
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
## [2.10.14](https://github.com/midwayjs/midway/compare/v2.10.13...v2.10.14) (2021-05-11)
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
### Bug Fixes
|
|
254
|
-
|
|
255
|
-
* serverless app more method ([#1034](https://github.com/midwayjs/midway/issues/1034)) ([9c44c3f](https://github.com/midwayjs/midway/commit/9c44c3f58930d0c12464d00eceee93cb9e7aaa62))
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
## [2.10.13](https://github.com/midwayjs/midway/compare/v2.10.12...v2.10.13) (2021-05-08)
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
### Bug Fixes
|
|
265
|
-
|
|
266
|
-
* remove zlib ([#1035](https://github.com/midwayjs/midway/issues/1035)) ([cc2cd40](https://github.com/midwayjs/midway/commit/cc2cd405a104b3388d93a09d981b59b472fd8ea1))
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
## [2.10.12](https://github.com/midwayjs/midway/compare/v2.10.11...v2.10.12) (2021-05-07)
|
|
273
|
-
|
|
274
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
## [2.10.11](https://github.com/midwayjs/midway/compare/v2.10.10...v2.10.11) (2021-04-29)
|
|
281
|
-
|
|
282
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
## [2.10.10](https://github.com/midwayjs/midway/compare/v2.10.9...v2.10.10) (2021-04-24)
|
|
289
|
-
|
|
290
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
## [2.10.9](https://github.com/midwayjs/midway/compare/v2.10.8...v2.10.9) (2021-04-21)
|
|
297
|
-
|
|
298
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
## [2.10.8](https://github.com/midwayjs/midway/compare/v2.10.7...v2.10.8) (2021-04-21)
|
|
305
|
-
|
|
306
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
## [2.10.7](https://github.com/midwayjs/midway/compare/v2.10.6...v2.10.7) (2021-04-17)
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
### Bug Fixes
|
|
316
|
-
|
|
317
|
-
* add event name args ([#986](https://github.com/midwayjs/midway/issues/986)) ([bfd8232](https://github.com/midwayjs/midway/commit/bfd82320aee8600d8fa30bd2821a0e68c80fd755))
|
|
318
|
-
* add midway case for egg-layer and add warn for DecoratorManager ([#994](https://github.com/midwayjs/midway/issues/994)) ([3d601aa](https://github.com/midwayjs/midway/commit/3d601aa19104081870eb32ba09170357a9da4d03))
|
|
319
|
-
* format ([#997](https://github.com/midwayjs/midway/issues/997)) ([456cc14](https://github.com/midwayjs/midway/commit/456cc14513bdb000d1aa3130e9719caf7a8a803f))
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
## [2.10.6](https://github.com/midwayjs/midway/compare/v2.10.5...v2.10.6) (2021-04-14)
|
|
326
|
-
|
|
327
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
## [2.10.5](https://github.com/midwayjs/midway/compare/v2.10.4...v2.10.5) (2021-04-13)
|
|
334
|
-
|
|
335
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
## [2.10.4](https://github.com/midwayjs/midway/compare/v2.10.3...v2.10.4) (2021-04-10)
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
### Bug Fixes
|
|
345
|
-
|
|
346
|
-
* clear container cache when test ([#978](https://github.com/midwayjs/midway/issues/978)) ([a202075](https://github.com/midwayjs/midway/commit/a202075b52d281e06f1ed7c6139e968fafc960f6))
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
## [2.10.3](https://github.com/midwayjs/midway/compare/v2.10.2...v2.10.3) (2021-04-07)
|
|
353
|
-
|
|
354
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
## [2.10.2](https://github.com/midwayjs/midway/compare/v2.10.1...v2.10.2) (2021-04-05)
|
|
361
|
-
|
|
362
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
# [2.10.0](https://github.com/midwayjs/midway/compare/v2.9.3...v2.10.0) (2021-04-02)
|
|
369
|
-
|
|
370
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
## [2.9.3](https://github.com/midwayjs/midway/compare/v2.9.2...v2.9.3) (2021-03-30)
|
|
377
|
-
|
|
378
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
## [2.9.2](https://github.com/midwayjs/midway/compare/v2.9.1...v2.9.2) (2021-03-27)
|
|
385
|
-
|
|
386
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
## [2.9.1](https://github.com/midwayjs/midway/compare/v2.9.0...v2.9.1) (2021-03-24)
|
|
393
|
-
|
|
394
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
# [2.9.0](https://github.com/midwayjs/midway/compare/v2.8.13...v2.9.0) (2021-03-22)
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
### Features
|
|
404
|
-
|
|
405
|
-
* add socket.io-redis support ([#874](https://github.com/midwayjs/midway/issues/874)) ([2818920](https://github.com/midwayjs/midway/commit/2818920b9d3391c81666c5b8587a899b9b237d9e))
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
## [2.8.13](https://github.com/midwayjs/midway/compare/v2.8.12...v2.8.13) (2021-03-17)
|
|
412
|
-
|
|
413
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
## [2.8.11](https://github.com/midwayjs/midway/compare/v2.8.10...v2.8.11) (2021-03-12)
|
|
420
|
-
|
|
421
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
## [2.8.9](https://github.com/midwayjs/midway/compare/v2.8.8...v2.8.9) (2021-03-08)
|
|
428
|
-
|
|
429
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
## [2.8.8](https://github.com/midwayjs/midway/compare/v2.8.7...v2.8.8) (2021-03-06)
|
|
436
|
-
|
|
437
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
## [2.8.7](https://github.com/midwayjs/midway/compare/v2.8.6...v2.8.7) (2021-03-04)
|
|
444
|
-
|
|
445
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
## [2.8.6](https://github.com/midwayjs/midway/compare/v2.8.5...v2.8.6) (2021-03-03)
|
|
452
|
-
|
|
453
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
## [2.8.5](https://github.com/midwayjs/midway/compare/v2.8.4...v2.8.5) (2021-03-03)
|
|
460
|
-
|
|
461
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
## [2.8.4](https://github.com/midwayjs/midway/compare/v2.8.3...v2.8.4) (2021-03-03)
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
### Bug Fixes
|
|
471
|
-
|
|
472
|
-
* koa-router support wildcard ([#881](https://github.com/midwayjs/midway/issues/881)) ([0321497](https://github.com/midwayjs/midway/commit/0321497421de648dc791ceb60316c78026dc3cf9))
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
### Features
|
|
476
|
-
|
|
477
|
-
* add conflictCheck ([#876](https://github.com/midwayjs/midway/issues/876)) ([673470a](https://github.com/midwayjs/midway/commit/673470a14e3f5a159bf7a2f1e56cbf27cc3b6b21))
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
## [2.8.3](https://github.com/midwayjs/midway/compare/v2.8.2...v2.8.3) (2021-03-01)
|
|
484
|
-
|
|
485
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
## [2.8.2](https://github.com/midwayjs/midway/compare/v2.8.0...v2.8.2) (2021-02-27)
|
|
492
|
-
|
|
493
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
# [2.8.0](https://github.com/midwayjs/midway/compare/v2.7.7...v2.8.0) (2021-02-24)
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
### Features
|
|
503
|
-
|
|
504
|
-
* add router collector and export router table ([#852](https://github.com/midwayjs/midway/issues/852)) ([3641ac9](https://github.com/midwayjs/midway/commit/3641ac9c78ed9888525ce0c87415b961d4602fa8))
|
|
505
|
-
* move context logger to @midwayjs/logger and add createFileL… ([#859](https://github.com/midwayjs/midway/issues/859)) ([49f568f](https://github.com/midwayjs/midway/commit/49f568f372b610494d59fa415f4f241c400c7db0))
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
## [2.7.7](https://github.com/midwayjs/midway/compare/v2.7.6...v2.7.7) (2021-02-20)
|
|
512
|
-
|
|
513
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
## [2.7.5](https://github.com/midwayjs/midway/compare/v2.7.4...v2.7.5) (2021-02-08)
|
|
520
|
-
|
|
521
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
## [2.7.2](https://github.com/midwayjs/midway/compare/v2.7.1...v2.7.2) (2021-01-28)
|
|
528
|
-
|
|
529
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
## [2.7.1](https://github.com/midwayjs/midway/compare/v2.7.0...v2.7.1) (2021-01-28)
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
### Bug Fixes
|
|
539
|
-
|
|
540
|
-
* disable coreLogger info console output in local env ([#829](https://github.com/midwayjs/midway/issues/829)) ([adaaaea](https://github.com/midwayjs/midway/commit/adaaaeaa9694c072de709c6643c0d7cffbdf3065))
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
# [2.7.0](https://github.com/midwayjs/midway/compare/v2.6.13...v2.7.0) (2021-01-27)
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
### Features
|
|
550
|
-
|
|
551
|
-
* add midway gRPC framework ([#786](https://github.com/midwayjs/midway/issues/786)) ([d90362c](https://github.com/midwayjs/midway/commit/d90362c6bf15c00621ffc2981f19842f216395f8))
|
|
552
|
-
* support entry file in bootstrap ([#819](https://github.com/midwayjs/midway/issues/819)) ([49a5ff6](https://github.com/midwayjs/midway/commit/49a5ff662134bdd42dc3a80738b44a05138f8f7c))
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
## [2.6.13](https://github.com/midwayjs/midway/compare/v2.6.12...v2.6.13) (2021-01-21)
|
|
559
|
-
|
|
560
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
## [2.6.12](https://github.com/midwayjs/midway/compare/v2.6.11...v2.6.12) (2021-01-15)
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
### Bug Fixes
|
|
570
|
-
|
|
571
|
-
* express router missing ([#804](https://github.com/midwayjs/midway/issues/804)) ([30cd26c](https://github.com/midwayjs/midway/commit/30cd26cc505ea91fb7d0796c59238962c5045b3d))
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
## [2.6.10](https://github.com/midwayjs/midway/compare/v2.6.9...v2.6.10) (2021-01-10)
|
|
578
|
-
|
|
579
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
## [2.6.9](https://github.com/midwayjs/midway/compare/v2.6.8...v2.6.9) (2021-01-08)
|
|
586
|
-
|
|
587
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
## [2.6.8](https://github.com/midwayjs/midway/compare/v2.6.7...v2.6.8) (2021-01-06)
|
|
594
|
-
|
|
595
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
## [2.6.7](https://github.com/midwayjs/midway/compare/v2.6.6...v2.6.7) (2021-01-05)
|
|
602
|
-
|
|
603
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
## [2.6.6](https://github.com/midwayjs/midway/compare/v2.6.5...v2.6.6) (2021-01-04)
|
|
610
|
-
|
|
611
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
## [2.6.5](https://github.com/midwayjs/midway/compare/v2.6.4...v2.6.5) (2021-01-04)
|
|
618
|
-
|
|
619
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
## [2.6.4](https://github.com/midwayjs/midway/compare/v2.6.3...v2.6.4) (2021-01-02)
|
|
626
|
-
|
|
627
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
## [2.6.3](https://github.com/midwayjs/midway/compare/v2.6.2...v2.6.3) (2020-12-30)
|
|
634
|
-
|
|
635
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
## [2.6.2](https://github.com/midwayjs/midway/compare/v2.6.1...v2.6.2) (2020-12-30)
|
|
642
|
-
|
|
643
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
## [2.6.1](https://github.com/midwayjs/midway/compare/v2.6.0...v2.6.1) (2020-12-29)
|
|
650
|
-
|
|
651
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
# [2.6.0](https://github.com/midwayjs/midway/compare/v2.5.5...v2.6.0) (2020-12-28)
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
### Features
|
|
661
|
-
|
|
662
|
-
* add midway logger ([#743](https://github.com/midwayjs/midway/issues/743)) ([13e8cc7](https://github.com/midwayjs/midway/commit/13e8cc753d994e6f9f073688e22527f75d39984a))
|
|
663
|
-
* support https config for web/koa/express ([#742](https://github.com/midwayjs/midway/issues/742)) ([a0c07b9](https://github.com/midwayjs/midway/commit/a0c07b9e3cc2eec7e88e49085f1e66242fa1ec50))
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
## [2.5.5](https://github.com/midwayjs/midway/compare/v2.5.4...v2.5.5) (2020-12-15)
|
|
670
|
-
|
|
671
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
## [2.5.2](https://github.com/midwayjs/midway/compare/v2.5.1...v2.5.2) (2020-12-04)
|
|
678
|
-
|
|
679
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
## [2.5.1](https://github.com/midwayjs/midway/compare/v2.5.0...v2.5.1) (2020-11-29)
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
### Bug Fixes
|
|
689
|
-
|
|
690
|
-
* return ctx.body and set header after send ([#738](https://github.com/midwayjs/midway/issues/738)) ([4c8e740](https://github.com/midwayjs/midway/commit/4c8e740865ece6a62176144a877863c1d5317d65))
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
# [2.5.0](https://github.com/midwayjs/midway/compare/v2.4.8...v2.5.0) (2020-11-28)
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
### Bug Fixes
|
|
700
|
-
|
|
701
|
-
* koa response 204 ([#733](https://github.com/midwayjs/midway/issues/733)) ([2463d77](https://github.com/midwayjs/midway/commit/2463d77cf2d9b03216acff901839816be45c5e73))
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
## [2.4.7](https://github.com/midwayjs/midway/compare/v2.4.6...v2.4.7) (2020-11-23)
|
|
708
|
-
|
|
709
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
## [2.4.5](https://github.com/midwayjs/midway/compare/v2.4.4...v2.4.5) (2020-11-19)
|
|
716
|
-
|
|
717
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
## [2.4.3](https://github.com/midwayjs/midway/compare/v2.4.2...v2.4.3) (2020-11-16)
|
|
724
|
-
|
|
725
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
## [2.4.2](https://github.com/midwayjs/midway/compare/v2.4.1...v2.4.2) (2020-11-13)
|
|
732
|
-
|
|
733
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
## [2.4.1](https://github.com/midwayjs/midway/compare/v2.4.0...v2.4.1) (2020-11-12)
|
|
740
|
-
|
|
741
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
# [2.4.0](https://github.com/midwayjs/midway/compare/v2.3.23...v2.4.0) (2020-11-11)
|
|
748
|
-
|
|
749
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
## [2.3.23](https://github.com/midwayjs/midway/compare/v2.3.22...v2.3.23) (2020-11-03)
|
|
756
|
-
|
|
757
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
## [2.3.22](https://github.com/midwayjs/midway/compare/v2.3.21...v2.3.22) (2020-10-31)
|
|
764
|
-
|
|
765
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
## [2.3.21](https://github.com/midwayjs/midway/compare/v2.3.20...v2.3.21) (2020-10-29)
|
|
772
|
-
|
|
773
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
## [2.3.20](https://github.com/midwayjs/midway/compare/v2.3.19...v2.3.20) (2020-10-29)
|
|
780
|
-
|
|
781
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
## [2.3.19](https://github.com/midwayjs/midway/compare/v2.3.18...v2.3.19) (2020-10-28)
|
|
788
|
-
|
|
789
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
## [2.3.18](https://github.com/midwayjs/midway/compare/v2.3.17...v2.3.18) (2020-10-27)
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
### Bug Fixes
|
|
799
|
-
|
|
800
|
-
* configuration inject plugin and more in production environment ([#680](https://github.com/midwayjs/midway/issues/680)) ([41bce5d](https://github.com/midwayjs/midway/commit/41bce5d8a60a6fde61ff62794612eecff2e260ed))
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
## [2.3.17](https://github.com/midwayjs/midway/compare/v2.3.16...v2.3.17) (2020-10-22)
|
|
807
|
-
|
|
808
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
## [2.3.16](https://github.com/midwayjs/midway/compare/v2.3.15...v2.3.16) (2020-10-16)
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
### Bug Fixes
|
|
818
|
-
|
|
819
|
-
* use new ctx bind req and res in express ([#674](https://github.com/midwayjs/midway/issues/674)) ([1d26396](https://github.com/midwayjs/midway/commit/1d2639698e8e292fe12506a6e530a6d032f46d7e))
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
## [2.3.15](https://github.com/midwayjs/midway/compare/v2.3.14...v2.3.15) (2020-10-15)
|
|
826
|
-
|
|
827
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
## [2.3.14](https://github.com/midwayjs/midway/compare/v2.3.13...v2.3.14) (2020-10-15)
|
|
834
|
-
|
|
835
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
## [2.3.13](https://github.com/midwayjs/midway/compare/v2.3.12...v2.3.13) (2020-10-13)
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
### Bug Fixes
|
|
845
|
-
|
|
846
|
-
* [@plugin](https://github.com/plugin) inject undefined in web middleware ([#667](https://github.com/midwayjs/midway/issues/667)) ([cacb2fa](https://github.com/midwayjs/midway/commit/cacb2faa61258172ef445db0a86e45c3f19014a6))
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
## [2.3.11](https://github.com/midwayjs/midway/compare/v2.3.10...v2.3.11) (2020-10-08)
|
|
853
|
-
|
|
854
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
## [2.3.10](https://github.com/midwayjs/midway/compare/v2.3.9...v2.3.10) (2020-10-08)
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
### Features
|
|
864
|
-
|
|
865
|
-
* replace configuration.imports to object directly and deprecated string ([#657](https://github.com/midwayjs/midway/issues/657)) ([f1b42a1](https://github.com/midwayjs/midway/commit/f1b42a1b338a69cdfaf63e2d951a65333e4f3007))
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
## [2.3.9](https://github.com/midwayjs/midway/compare/v2.3.8...v2.3.9) (2020-10-05)
|
|
872
|
-
|
|
873
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
## [2.3.8](https://github.com/midwayjs/midway/compare/v2.3.7...v2.3.8) (2020-10-05)
|
|
880
|
-
|
|
881
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
## [2.3.7](https://github.com/midwayjs/midway/compare/v2.3.6...v2.3.7) (2020-10-04)
|
|
888
|
-
|
|
889
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
## [2.3.6](https://github.com/midwayjs/midway/compare/v2.3.4...v2.3.6) (2020-10-02)
|
|
896
|
-
|
|
897
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
## [2.3.4](https://github.com/midwayjs/midway/compare/v2.3.3...v2.3.4) (2020-09-28)
|
|
904
|
-
|
|
905
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
## [2.3.2](https://github.com/midwayjs/midway/compare/v2.3.1...v2.3.2) (2020-09-28)
|
|
912
|
-
|
|
913
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
## [2.3.1](https://github.com/midwayjs/midway/compare/v2.3.0...v2.3.1) (2020-09-27)
|
|
920
|
-
|
|
921
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
# [2.3.0](https://github.com/midwayjs/midway/compare/v2.2.10...v2.3.0) (2020-09-27)
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
### Features
|
|
931
|
-
|
|
932
|
-
* add rabbitmq ([#647](https://github.com/midwayjs/midway/issues/647)) ([2c03eb4](https://github.com/midwayjs/midway/commit/2c03eb4f5e979d309048a11f17f7579a1d299ba1))
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
## [2.2.10](https://github.com/midwayjs/midway/compare/v2.2.9...v2.2.10) (2020-09-24)
|
|
939
|
-
|
|
940
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
## [2.2.9](https://github.com/midwayjs/midway/compare/v2.2.8...v2.2.9) (2020-09-24)
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
### Bug Fixes
|
|
950
|
-
|
|
951
|
-
* remove sourcemap and src in dist ([#645](https://github.com/midwayjs/midway/issues/645)) ([e561a88](https://github.com/midwayjs/midway/commit/e561a88f4a70af15d4be3d5fe0bd39487677d4ce))
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
## [2.2.8](https://github.com/midwayjs/midway/compare/v2.2.7...v2.2.8) (2020-09-23)
|
|
958
|
-
|
|
959
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
## [2.2.7](https://github.com/midwayjs/midway/compare/v2.2.6...v2.2.7) (2020-09-20)
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
### Bug Fixes
|
|
969
|
-
|
|
970
|
-
* WebMiddleare to IWebMiddleware ([e69cf28](https://github.com/midwayjs/midway/commit/e69cf286fa76ab3144404806c5cbbe8642cdcd61))
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
## [2.2.6](https://github.com/midwayjs/midway/compare/v2.2.5...v2.2.6) (2020-09-18)
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
### Features
|
|
980
|
-
|
|
981
|
-
* add aop ([#640](https://github.com/midwayjs/midway/issues/640)) ([c3e15b3](https://github.com/midwayjs/midway/commit/c3e15b328c184318e364bf40d32fa4df6be2a30a))
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
## [2.2.5](https://github.com/midwayjs/midway/compare/v2.2.4...v2.2.5) (2020-09-17)
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
### Features
|
|
991
|
-
|
|
992
|
-
* add generateMiddleware for express and faas ([bfcfc9a](https://github.com/midwayjs/midway/commit/bfcfc9a377f01026a459aaed35a3f0fdf0530f26))
|
|
993
|
-
* use midway cli replace egg-bin ([#639](https://github.com/midwayjs/midway/issues/639)) ([62bbf38](https://github.com/midwayjs/midway/commit/62bbf3852899476600a0b594cb7dc274b05e29ec))
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
## [2.2.4](https://github.com/midwayjs/midway/compare/v2.2.3...v2.2.4) (2020-09-15)
|
|
1000
|
-
|
|
1001
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
## [2.2.3](https://github.com/midwayjs/midway/compare/v2.2.2...v2.2.3) (2020-09-14)
|
|
1008
|
-
|
|
1009
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
## [2.2.2](https://github.com/midwayjs/midway/compare/v2.2.1...v2.2.2) (2020-09-14)
|
|
1016
|
-
|
|
1017
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
## [2.2.1](https://github.com/midwayjs/midway/compare/v2.2.0...v2.2.1) (2020-09-14)
|
|
1024
|
-
|
|
1025
|
-
**Note:** Version bump only for package @midwayjs/express
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
# [2.2.0](https://github.com/midwayjs/midway/compare/v2.1.4...v2.2.0) (2020-09-13)
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
### Features
|
|
1035
|
-
|
|
1036
|
-
* complete 2.x beta ([#630](https://github.com/midwayjs/midway/issues/630)) ([b23cd00](https://github.com/midwayjs/midway/commit/b23cd00fe9cefc9057a2284d38d5419773539206))
|