Skip to content

Commit

Permalink
v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Oct 10, 2022
1 parent 3b3c05b commit 96d44b2
Show file tree
Hide file tree
Showing 153 changed files with 1,563 additions and 334 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Bug Fixes

* add default generic type to MikroConfigOptions ([#2342](https://github.com/midwayjs/midway/issues/2342)) ([d5fbab6](https://github.com/midwayjs/midway/commit/d5fbab666dabbae6fad0e0946b733ea73ac1a9d5))
* **deps:** update dependency amqp-connection-manager to v4.1.7 ([#2354](https://github.com/midwayjs/midway/issues/2354)) ([79d4d5b](https://github.com/midwayjs/midway/commit/79d4d5bede926be2c00e21250f8edffca747d932))
* **deps:** update dependency body-parser to v1.20.1 ([#2355](https://github.com/midwayjs/midway/issues/2355)) ([4cf6bda](https://github.com/midwayjs/midway/commit/4cf6bdaa8b10b4ae40598305e1df9ad29dd701ed))
* **deps:** update dependency sequelize to v6.24.0 ([#2356](https://github.com/midwayjs/midway/issues/2356)) ([ecc43d0](https://github.com/midwayjs/midway/commit/ecc43d0b96ad7fcc6766831b6db0cb8ca204580c))


### Features

* add casbin module ([#2358](https://github.com/midwayjs/midway/issues/2358)) ([a7d2786](https://github.com/midwayjs/midway/commit/a7d27863b756dcf81abc4d7dedaf35c517c2c1e3))
* add filter params for add controller ([#2359](https://github.com/midwayjs/midway/issues/2359)) ([1805011](https://github.com/midwayjs/midway/commit/1805011d3b2d86f04d6a887f4a86afb093a2a75f))
* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))
* add new bull component ([#2275](https://github.com/midwayjs/midway/issues/2275)) ([0a37b49](https://github.com/midwayjs/midway/commit/0a37b491720c5d5f0b98e9e42835ba263dd8b975))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
}
},
"npmClient": "npm",
"version": "3.5.3"
"version": "3.6.0"
}
11 changes: 11 additions & 0 deletions packages-legacy/egg-layer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)

**Note:** Version bump only for package @midwayjs/egg-layer
Expand Down
18 changes: 9 additions & 9 deletions packages-legacy/egg-layer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midwayjs/egg-layer",
"private": true,
"version": "3.5.3",
"version": "3.6.0",
"main": "index.js",
"scripts": {
"test": "node --require=ts-node/register ../../node_modules/.bin/jest --runInBand",
Expand All @@ -11,14 +11,14 @@
"request": "2.88.2"
},
"devDependencies": {
"@midwayjs/core": "^3.5.3",
"@midwayjs/runtime-engine": "^3.4.4",
"@midwayjs/runtime-mock": "^3.4.4",
"@midwayjs/serverless-fc-starter": "^3.5.3",
"@midwayjs/serverless-fc-trigger": "^3.5.3",
"@midwayjs/serverless-scf-starter": "^3.5.3",
"@midwayjs/serverless-scf-trigger": "^3.5.3",
"@midwayjs/web": "^3.5.3",
"@midwayjs/core": "^3.6.0",
"@midwayjs/runtime-engine": "^3.6.0",
"@midwayjs/runtime-mock": "^3.6.0",
"@midwayjs/serverless-fc-starter": "^3.6.0",
"@midwayjs/serverless-fc-trigger": "^3.6.0",
"@midwayjs/serverless-scf-starter": "^3.6.0",
"@midwayjs/serverless-scf-trigger": "^3.6.0",
"@midwayjs/web": "^3.6.0",
"egg": "^2.28.0",
"supertest": "6.2.4"
},
Expand Down
16 changes: 16 additions & 0 deletions packages-legacy/express-layer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Bug Fixes

* **deps:** update dependency body-parser to v1.20.1 ([#2355](https://github.com/midwayjs/midway/issues/2355)) ([4cf6bda](https://github.com/midwayjs/midway/commit/4cf6bdaa8b10b4ae40598305e1df9ad29dd701ed))


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)

**Note:** Version bump only for package @midwayjs/express-layer
Expand Down
14 changes: 7 additions & 7 deletions packages-legacy/express-layer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midwayjs/express-layer",
"private": true,
"version": "3.5.3",
"version": "3.6.0",
"main": "index.js",
"scripts": {
"test": "node --require=ts-node/register ../../node_modules/.bin/jest --runInBand",
Expand All @@ -11,12 +11,12 @@
"request": "2.88.2"
},
"devDependencies": {
"@midwayjs/runtime-engine": "^3.4.4",
"@midwayjs/runtime-mock": "^3.4.4",
"@midwayjs/serverless-fc-starter": "^3.5.3",
"@midwayjs/serverless-fc-trigger": "^3.5.3",
"@midwayjs/serverless-scf-starter": "^3.5.3",
"@midwayjs/serverless-scf-trigger": "^3.5.3",
"@midwayjs/runtime-engine": "^3.6.0",
"@midwayjs/runtime-mock": "^3.6.0",
"@midwayjs/serverless-fc-starter": "^3.6.0",
"@midwayjs/serverless-fc-trigger": "^3.6.0",
"@midwayjs/serverless-scf-starter": "^3.6.0",
"@midwayjs/serverless-scf-trigger": "^3.6.0",
"body-parser": "1.20.1",
"express": "4.18.1",
"supertest": "6.2.4"
Expand Down
11 changes: 11 additions & 0 deletions packages-legacy/koa-layer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)

**Note:** Version bump only for package @midwayjs/koa-layer
Expand Down
14 changes: 7 additions & 7 deletions packages-legacy/koa-layer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midwayjs/koa-layer",
"private": true,
"version": "3.5.3",
"version": "3.6.0",
"main": "index.js",
"scripts": {
"test": "node --require=ts-node/register ../../node_modules/.bin/jest --runInBand",
Expand All @@ -11,12 +11,12 @@
"request": "2.88.2"
},
"devDependencies": {
"@midwayjs/runtime-engine": "^3.4.4",
"@midwayjs/runtime-mock": "^3.4.4",
"@midwayjs/serverless-fc-starter": "^3.5.3",
"@midwayjs/serverless-fc-trigger": "^3.5.3",
"@midwayjs/serverless-scf-starter": "^3.5.3",
"@midwayjs/serverless-scf-trigger": "^3.5.3",
"@midwayjs/runtime-engine": "^3.6.0",
"@midwayjs/runtime-mock": "^3.6.0",
"@midwayjs/serverless-fc-starter": "^3.6.0",
"@midwayjs/serverless-fc-trigger": "^3.6.0",
"@midwayjs/serverless-scf-starter": "^3.6.0",
"@midwayjs/serverless-scf-trigger": "^3.6.0",
"koa": "2.13.4",
"koa-bodyparser": "4.3.0",
"koa-router": "11.0.1",
Expand Down
11 changes: 11 additions & 0 deletions packages-legacy/orm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)

**Note:** Version bump only for package @midwayjs/orm
Expand Down
6 changes: 3 additions & 3 deletions packages-legacy/orm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midwayjs/orm",
"private": true,
"version": "3.5.3",
"version": "3.6.0",
"main": "dist/index",
"typings": "index.d.ts",
"files": [
Expand All @@ -10,8 +10,8 @@
"index.d.ts"
],
"devDependencies": {
"@midwayjs/core": "^3.5.3",
"@midwayjs/mock": "^3.5.3",
"@midwayjs/core": "^3.6.0",
"@midwayjs/mock": "^3.6.0",
"sqlite3": "5.1.2",
"typeorm": "0.3.10"
},
Expand Down
11 changes: 11 additions & 0 deletions packages-legacy/runtime-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.4.4](https://github.com/midwayjs/midway/compare/v3.4.3...v3.4.4) (2022-07-25)


Expand Down
2 changes: 1 addition & 1 deletion packages-legacy/runtime-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midwayjs/runtime-engine",
"private": true,
"version": "3.4.4",
"version": "3.6.0",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
Expand Down
11 changes: 11 additions & 0 deletions packages-legacy/runtime-mock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.4.4](https://github.com/midwayjs/midway/compare/v3.4.3...v3.4.4) (2022-07-25)


Expand Down
4 changes: 2 additions & 2 deletions packages-legacy/runtime-mock/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@midwayjs/runtime-mock",
"private": true,
"version": "3.4.4",
"version": "3.6.0",
"main": "dist/index",
"typings": "dist/index.d.ts",
"dependencies": {
"@midwayjs/runtime-engine": "^3.4.4"
"@midwayjs/runtime-engine": "^3.6.0"
},
"engines": {
"node": ">=12"
Expand Down
16 changes: 16 additions & 0 deletions packages-legacy/serverless-app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Bug Fixes

* **deps:** update dependency body-parser to v1.20.1 ([#2355](https://github.com/midwayjs/midway/issues/2355)) ([4cf6bda](https://github.com/midwayjs/midway/commit/4cf6bdaa8b10b4ae40598305e1df9ad29dd701ed))


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)

**Note:** Version bump only for package @midwayjs/serverless-app
Expand Down
22 changes: 11 additions & 11 deletions packages-legacy/serverless-app/package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"name": "@midwayjs/serverless-app",
"private": true,
"version": "3.5.3",
"version": "3.6.0",
"main": "dist/index",
"typings": "index.d.ts",
"dependencies": {
"@midwayjs/bootstrap": "^3.5.3",
"@midwayjs/faas": "^3.5.3",
"@midwayjs/faas-typings": "^3.5.0",
"@midwayjs/bootstrap": "^3.6.0",
"@midwayjs/faas": "^3.6.0",
"@midwayjs/faas-typings": "^3.6.0",
"@midwayjs/gateway-common-http": "^1.2.41",
"@midwayjs/serverless-spec-builder": "^1.2.41",
"body-parser": "1.20.1",
"express": "4.18.1"
},
"devDependencies": {
"@midwayjs/core": "^3.5.3",
"@midwayjs/decorator": "^3.4.11",
"@midwayjs/core": "^3.6.0",
"@midwayjs/decorator": "^3.6.0",
"@midwayjs/faas-middleware-upload": "0.0.7",
"@midwayjs/mock": "^3.5.3",
"@midwayjs/serverless-fc-starter": "^3.5.3",
"@midwayjs/serverless-fc-trigger": "^3.5.3",
"@midwayjs/serverless-scf-starter": "^3.5.3",
"@midwayjs/serverless-scf-trigger": "^3.5.3",
"@midwayjs/mock": "^3.6.0",
"@midwayjs/serverless-fc-starter": "^3.6.0",
"@midwayjs/serverless-fc-trigger": "^3.6.0",
"@midwayjs/serverless-scf-starter": "^3.6.0",
"@midwayjs/serverless-scf-trigger": "^3.6.0",
"fs-extra": "10.0.1"
},
"engines": {
Expand Down
11 changes: 11 additions & 0 deletions packages-legacy/serverless-aws-starter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)

**Note:** Version bump only for package @midwayjs/serverless-aws-starter
Expand Down
6 changes: 3 additions & 3 deletions packages-legacy/serverless-aws-starter/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@midwayjs/serverless-aws-starter",
"private": true,
"version": "3.5.3",
"version": "3.6.0",
"main": "dist/index",
"typings": "dist/index.d.ts",
"dependencies": {
"@midwayjs/runtime-engine": "^3.4.4",
"@midwayjs/serverless-http-parser": "^3.5.3"
"@midwayjs/runtime-engine": "^3.6.0",
"@midwayjs/serverless-http-parser": "^3.6.0"
},
"devDependencies": {
"raw-body": "2.5.1"
Expand Down
11 changes: 11 additions & 0 deletions packages-legacy/serverless-fc-starter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/midwayjs/midway/compare/v3.5.3...v3.6.0) (2022-10-10)


### Features

* add guard ([#2345](https://github.com/midwayjs/midway/issues/2345)) ([1b952a1](https://github.com/midwayjs/midway/commit/1b952a1b09adbb88ff3cff9a2974eb1e37ce53a5))





## [3.5.3](https://github.com/midwayjs/midway/compare/v3.5.2...v3.5.3) (2022-09-25)

**Note:** Version bump only for package @midwayjs/serverless-fc-starter
Expand Down
Loading

0 comments on commit 96d44b2

Please sign in to comment.