From fa454c1cce3ba531d50c5c41c0683a423badf0a0 Mon Sep 17 00:00:00 2001 From: killagu Date: Thu, 24 Aug 2023 17:09:56 +0800 Subject: [PATCH] v3.16.0 --- CHANGELOG.md | 12 +++++++++ core/aop-decorator/CHANGELOG.md | 8 ++++++ core/aop-decorator/package.json | 8 +++--- core/aop-runtime/CHANGELOG.md | 8 ++++++ core/aop-runtime/package.json | 18 ++++++------- core/background-task/CHANGELOG.md | 8 ++++++ core/background-task/package.json | 10 ++++---- core/common-util/CHANGELOG.md | 11 ++++++++ core/common-util/package.json | 2 +- core/controller-decorator/CHANGELOG.md | 8 ++++++ core/controller-decorator/package.json | 8 +++--- core/core-decorator/CHANGELOG.md | 8 ++++++ core/core-decorator/package.json | 4 +-- core/dynamic-inject-runtime/CHANGELOG.md | 8 ++++++ core/dynamic-inject-runtime/package.json | 18 ++++++------- core/dynamic-inject/CHANGELOG.md | 8 ++++++ core/dynamic-inject/package.json | 4 +-- core/eventbus-decorator/CHANGELOG.md | 8 ++++++ core/eventbus-decorator/package.json | 6 ++--- core/eventbus-runtime/CHANGELOG.md | 8 ++++++ core/eventbus-runtime/package.json | 14 +++++------ core/lifecycle/CHANGELOG.md | 8 ++++++ core/lifecycle/package.json | 6 ++--- core/loader/CHANGELOG.md | 8 ++++++ core/loader/package.json | 8 +++--- core/metadata/CHANGELOG.md | 8 ++++++ core/metadata/package.json | 8 +++--- core/orm-decorator/CHANGELOG.md | 8 ++++++ core/orm-decorator/package.json | 8 +++--- core/runtime/CHANGELOG.md | 8 ++++++ core/runtime/package.json | 12 ++++----- core/schedule-decorator/CHANGELOG.md | 8 ++++++ core/schedule-decorator/package.json | 8 +++--- core/standalone-decorator/CHANGELOG.md | 8 ++++++ core/standalone-decorator/package.json | 4 +-- core/tegg/CHANGELOG.md | 11 ++++++++ core/tegg/package.json | 32 ++++++++++++------------ core/test-util/CHANGELOG.md | 8 ++++++ core/test-util/package.json | 12 ++++----- core/transaction-decorator/CHANGELOG.md | 8 ++++++ core/transaction-decorator/package.json | 8 +++--- lerna.json | 2 +- plugin/aop/CHANGELOG.md | 8 ++++++ plugin/aop/package.json | 16 ++++++------ plugin/common/CHANGELOG.md | 8 ++++++ plugin/common/package.json | 2 +- plugin/config/CHANGELOG.md | 8 ++++++ plugin/config/package.json | 4 +-- plugin/controller/CHANGELOG.md | 8 ++++++ plugin/controller/package.json | 20 +++++++-------- plugin/eventbus/CHANGELOG.md | 8 ++++++ plugin/eventbus/package.json | 18 ++++++------- plugin/orm/CHANGELOG.md | 8 ++++++ plugin/orm/package.json | 24 +++++++++--------- plugin/schedule/CHANGELOG.md | 8 ++++++ plugin/schedule/package.json | 24 +++++++++--------- plugin/tegg/CHANGELOG.md | 11 ++++++++ plugin/tegg/package.json | 20 +++++++-------- standalone/standalone/CHANGELOG.md | 12 +++++++++ standalone/standalone/package.json | 20 +++++++-------- 60 files changed, 431 insertions(+), 174 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cae89966..6b43a250 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + + +### Features + +* export EggModuleLoader in standalone ([#146](https://github.com/eggjs/tegg/issues/146)) ([9d1da9a](https://github.com/eggjs/tegg/commit/9d1da9a87dbd486930adc50cd43020c2fb478230)) +* implement RuntimeConfig ([#144](https://github.com/eggjs/tegg/issues/144)) ([0862655](https://github.com/eggjs/tegg/commit/0862655846f6765349d406ee697c036cec2a37bd)) + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) diff --git a/core/aop-decorator/CHANGELOG.md b/core/aop-decorator/CHANGELOG.md index 1b244cae..b1ea3bcc 100644 --- a/core/aop-decorator/CHANGELOG.md +++ b/core/aop-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/aop-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/aop-decorator diff --git a/core/aop-decorator/package.json b/core/aop-decorator/package.json index 888a69c1..43cb0927 100644 --- a/core/aop-decorator/package.json +++ b/core/aop-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/aop-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg aop decorator", "keywords": [ "tegg", @@ -16,9 +16,9 @@ "directory": "core/aop-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0" + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0" }, "scripts": { "test": "cross-env NODE_ENV=test NODE_OPTIONS='--no-deprecation' mocha", diff --git a/core/aop-runtime/CHANGELOG.md b/core/aop-runtime/CHANGELOG.md index d2c1c8c8..01ef5982 100644 --- a/core/aop-runtime/CHANGELOG.md +++ b/core/aop-runtime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-aop-runtime + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-aop-runtime diff --git a/core/aop-runtime/package.json b/core/aop-runtime/package.json index b43c0d21..58461d52 100644 --- a/core/aop-runtime/package.json +++ b/core/aop-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-aop-runtime", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg aop", "main": "dist/index.js", "eggModule": { @@ -43,17 +43,17 @@ "access": "public" }, "dependencies": { - "@eggjs/aop-decorator": "^3.15.0", - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", + "@eggjs/aop-decorator": "^3.16.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", "koa-compose": "^4.1.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", + "@eggjs/module-test-util": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/core/background-task/CHANGELOG.md b/core/background-task/CHANGELOG.md index 351fc4cf..9431a2c8 100644 --- a/core/background-task/CHANGELOG.md +++ b/core/background-task/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-background-task + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-background-task diff --git a/core/background-task/package.json b/core/background-task/package.json index 1dc3706c..13ade78a 100644 --- a/core/background-task/package.json +++ b/core/background-task/package.json @@ -1,7 +1,7 @@ { "name": "@eggjs/tegg-background-task", "description": "background util for tegg", - "version": "3.15.0", + "version": "3.16.0", "keywords": [ "egg", "typescript", @@ -37,12 +37,12 @@ "author": "killagu ", "license": "MIT", "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0" + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0" }, "devDependencies": { - "@eggjs/tegg-common-util": "^3.15.0", + "@eggjs/tegg-common-util": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/core/common-util/CHANGELOG.md b/core/common-util/CHANGELOG.md index 7f6e0fa4..358dc25d 100644 --- a/core/common-util/CHANGELOG.md +++ b/core/common-util/CHANGELOG.md @@ -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.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + + +### Features + +* implement RuntimeConfig ([#144](https://github.com/eggjs/tegg/issues/144)) ([0862655](https://github.com/eggjs/tegg/commit/0862655846f6765349d406ee697c036cec2a37bd)) + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-common-util diff --git a/core/common-util/package.json b/core/common-util/package.json index f890c0ad..a13c5749 100644 --- a/core/common-util/package.json +++ b/core/common-util/package.json @@ -1,7 +1,7 @@ { "name": "@eggjs/tegg-common-util", "description": "common util for tegg", - "version": "3.15.0", + "version": "3.16.0", "keywords": [ "egg", "typescript", diff --git a/core/controller-decorator/CHANGELOG.md b/core/controller-decorator/CHANGELOG.md index 65312ba4..80a289a6 100644 --- a/core/controller-decorator/CHANGELOG.md +++ b/core/controller-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/controller-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/controller-decorator diff --git a/core/controller-decorator/package.json b/core/controller-decorator/package.json index 8c98f67b..980de524 100644 --- a/core/controller-decorator/package.json +++ b/core/controller-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/controller-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg controller decorator", "keywords": [ "egg", @@ -37,9 +37,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", "path-to-regexp": "^1.8.0", "reflect-metadata": "^0.1.13" }, diff --git a/core/core-decorator/CHANGELOG.md b/core/core-decorator/CHANGELOG.md index ad083c93..c85e94cc 100644 --- a/core/core-decorator/CHANGELOG.md +++ b/core/core-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/core-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/core-decorator diff --git a/core/core-decorator/package.json b/core/core-decorator/package.json index 38925e53..6e66a929 100644 --- a/core/core-decorator/package.json +++ b/core/core-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/core-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg core decorator", "keywords": [ "egg", @@ -36,7 +36,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.15.0", + "@eggjs/tegg-common-util": "^3.16.0", "reflect-metadata": "^0.1.13" }, "publishConfig": { diff --git a/core/dynamic-inject-runtime/CHANGELOG.md b/core/dynamic-inject-runtime/CHANGELOG.md index 6e53abac..a53bb64f 100644 --- a/core/dynamic-inject-runtime/CHANGELOG.md +++ b/core/dynamic-inject-runtime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-dynamic-inject-runtime + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-dynamic-inject-runtime diff --git a/core/dynamic-inject-runtime/package.json b/core/dynamic-inject-runtime/package.json index d7b63d5b..275de7e9 100644 --- a/core/dynamic-inject-runtime/package.json +++ b/core/dynamic-inject-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-dynamic-inject-runtime", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg dyniamic inject", "main": "dist/index.js", "eggModule": { @@ -42,16 +42,16 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-dynamic-inject": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0" + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-dynamic-inject": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", + "@eggjs/module-test-util": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/core/dynamic-inject/CHANGELOG.md b/core/dynamic-inject/CHANGELOG.md index 38d9c51d..d755683d 100644 --- a/core/dynamic-inject/CHANGELOG.md +++ b/core/dynamic-inject/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-dynamic-inject + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-dynamic-inject diff --git a/core/dynamic-inject/package.json b/core/dynamic-inject/package.json index c5374954..499950cc 100644 --- a/core/dynamic-inject/package.json +++ b/core/dynamic-inject/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-dynamic-inject", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg dyniamic inject", "main": "dist/index.js", "files": [ @@ -39,7 +39,7 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0" + "@eggjs/core-decorator": "^3.16.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/core/eventbus-decorator/CHANGELOG.md b/core/eventbus-decorator/CHANGELOG.md index 65aa4a1a..eb4bd221 100644 --- a/core/eventbus-decorator/CHANGELOG.md +++ b/core/eventbus-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/eventbus-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/eventbus-decorator diff --git a/core/eventbus-decorator/package.json b/core/eventbus-decorator/package.json index 95adcf68..1d3e76da 100644 --- a/core/eventbus-decorator/package.json +++ b/core/eventbus-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/eventbus-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg eventbus decorator", "keywords": [ "egg", @@ -34,8 +34,8 @@ "directory": "core/eventbus-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", "typed-emitter": "^1.3.1" }, "engines": { diff --git a/core/eventbus-runtime/CHANGELOG.md b/core/eventbus-runtime/CHANGELOG.md index b90b60cd..c638f8f5 100644 --- a/core/eventbus-runtime/CHANGELOG.md +++ b/core/eventbus-runtime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-eventbus-runtime + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-eventbus-runtime diff --git a/core/eventbus-runtime/package.json b/core/eventbus-runtime/package.json index f90f2322..5e0d54de 100644 --- a/core/eventbus-runtime/package.json +++ b/core/eventbus-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-eventbus-runtime", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg eventbus runtime", "keywords": [ "egg", @@ -37,10 +37,10 @@ "directory": "core/eventbus-runtime" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/eventbus-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/eventbus-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", "await-event": "^2.1.0", "await-first": "^1.0.0" }, @@ -48,8 +48,8 @@ "node": ">=14.0.0" }, "devDependencies": { - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "coffee": "^5.4.0", diff --git a/core/lifecycle/CHANGELOG.md b/core/lifecycle/CHANGELOG.md index 10cc5d59..85641321 100644 --- a/core/lifecycle/CHANGELOG.md +++ b/core/lifecycle/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-lifecycle + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-lifecycle diff --git a/core/lifecycle/package.json b/core/lifecycle/package.json index d438a0ef..44a70ed8 100644 --- a/core/lifecycle/package.json +++ b/core/lifecycle/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-lifecycle", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg lifecycle definition", "keywords": [ "egg", @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0" + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/core/loader/CHANGELOG.md b/core/loader/CHANGELOG.md index cff81a30..dc8a1470 100644 --- a/core/loader/CHANGELOG.md +++ b/core/loader/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-loader + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-loader diff --git a/core/loader/package.json b/core/loader/package.json index 20c93e13..c6ac4d85 100644 --- a/core/loader/package.json +++ b/core/loader/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-loader", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg default loader implement", "keywords": [ "egg", @@ -36,8 +36,8 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", "globby": "^11.1.0", "is-type-of": "^1.2.1" }, @@ -45,7 +45,7 @@ "access": "public" }, "devDependencies": { - "@eggjs/tegg-metadata": "^3.15.0", + "@eggjs/tegg-metadata": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/core/metadata/CHANGELOG.md b/core/metadata/CHANGELOG.md index 4bd890f0..f3caa8b5 100644 --- a/core/metadata/CHANGELOG.md +++ b/core/metadata/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-metadata + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-metadata diff --git a/core/metadata/package.json b/core/metadata/package.json index 7023cc95..1e5a4d26 100644 --- a/core/metadata/package.json +++ b/core/metadata/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-metadata", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg metadata", "keywords": [ "egg", @@ -35,9 +35,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", "egg-errors": "^2.2.3" }, "devDependencies": { diff --git a/core/orm-decorator/CHANGELOG.md b/core/orm-decorator/CHANGELOG.md index 187fc76e..9b17ab50 100644 --- a/core/orm-decorator/CHANGELOG.md +++ b/core/orm-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-orm-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-orm-decorator diff --git a/core/orm-decorator/package.json b/core/orm-decorator/package.json index c6f259d6..2564592b 100644 --- a/core/orm-decorator/package.json +++ b/core/orm-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-orm-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg orm decorator", "main": "dist/index.js", "files": [ @@ -36,9 +36,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", "lodash": "^4.17.21", "pluralize": "^8.0.0" }, diff --git a/core/runtime/CHANGELOG.md b/core/runtime/CHANGELOG.md index 5d74e1ed..f9816f7a 100644 --- a/core/runtime/CHANGELOG.md +++ b/core/runtime/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-runtime + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-runtime diff --git a/core/runtime/package.json b/core/runtime/package.json index 3fa218f9..46ab84e5 100644 --- a/core/runtime/package.json +++ b/core/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-runtime", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg runtime", "main": "dist/index.js", "files": [ @@ -36,13 +36,13 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0" + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0" }, "devDependencies": { - "@eggjs/tegg-loader": "^3.15.0", + "@eggjs/tegg-loader": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/core/schedule-decorator/CHANGELOG.md b/core/schedule-decorator/CHANGELOG.md index 36e457cf..2f51f8b6 100644 --- a/core/schedule-decorator/CHANGELOG.md +++ b/core/schedule-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-schedule-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-schedule-decorator diff --git a/core/schedule-decorator/package.json b/core/schedule-decorator/package.json index f79f3ce0..8382c44f 100644 --- a/core/schedule-decorator/package.json +++ b/core/schedule-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-schedule-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg schedule decorator", "main": "dist/index.js", "files": [ @@ -35,9 +35,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", "cron-parser": "^2.18.0" }, "devDependencies": { diff --git a/core/standalone-decorator/CHANGELOG.md b/core/standalone-decorator/CHANGELOG.md index 21e466a8..c91a978d 100644 --- a/core/standalone-decorator/CHANGELOG.md +++ b/core/standalone-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/standalone-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/standalone-decorator diff --git a/core/standalone-decorator/package.json b/core/standalone-decorator/package.json index 95a064cf..835a1f6d 100644 --- a/core/standalone-decorator/package.json +++ b/core/standalone-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/standalone-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg standalone decorator", "keywords": [ "egg", @@ -36,7 +36,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.15.0", + "@eggjs/tegg-common-util": "^3.16.0", "reflect-metadata": "^0.1.13" }, "publishConfig": { diff --git a/core/tegg/CHANGELOG.md b/core/tegg/CHANGELOG.md index fae5cd15..f1b46cb8 100644 --- a/core/tegg/CHANGELOG.md +++ b/core/tegg/CHANGELOG.md @@ -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.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + + +### Features + +* implement RuntimeConfig ([#144](https://github.com/eggjs/tegg/issues/144)) ([0862655](https://github.com/eggjs/tegg/commit/0862655846f6765349d406ee697c036cec2a37bd)) + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg diff --git a/core/tegg/package.json b/core/tegg/package.json index 8ed38059..797d38ae 100644 --- a/core/tegg/package.json +++ b/core/tegg/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg decorator packages", "keywords": [ "egg", @@ -35,21 +35,21 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/aop-decorator": "^3.15.0", - "@eggjs/controller-decorator": "^3.15.0", - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/eventbus-decorator": "^3.15.0", - "@eggjs/standalone-decorator": "^3.15.0", - "@eggjs/tegg-background-task": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-dynamic-inject": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-orm-decorator": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", - "@eggjs/tegg-schedule-decorator": "^3.15.0", - "@eggjs/tegg-transaction-decorator": "^3.15.0" + "@eggjs/aop-decorator": "^3.16.0", + "@eggjs/controller-decorator": "^3.16.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/eventbus-decorator": "^3.16.0", + "@eggjs/standalone-decorator": "^3.16.0", + "@eggjs/tegg-background-task": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-dynamic-inject": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-orm-decorator": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", + "@eggjs/tegg-schedule-decorator": "^3.16.0", + "@eggjs/tegg-transaction-decorator": "^3.16.0" }, "publishConfig": { "access": "public" diff --git a/core/test-util/CHANGELOG.md b/core/test-util/CHANGELOG.md index 48eed0ab..c167979e 100644 --- a/core/test-util/CHANGELOG.md +++ b/core/test-util/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/module-test-util + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/module-test-util diff --git a/core/test-util/package.json b/core/test-util/package.json index fb4b1bd4..5cafeeee 100644 --- a/core/test-util/package.json +++ b/core/test-util/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/module-test-util", - "version": "3.15.0", + "version": "3.16.0", "private": true, "description": "module test util", "keywords": [ @@ -35,11 +35,11 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", "globby": "^11.1.0", "mm": "^3.2.1" }, diff --git a/core/transaction-decorator/CHANGELOG.md b/core/transaction-decorator/CHANGELOG.md index 8a8e9561..93094b23 100644 --- a/core/transaction-decorator/CHANGELOG.md +++ b/core/transaction-decorator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-transaction-decorator + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-transaction-decorator diff --git a/core/transaction-decorator/package.json b/core/transaction-decorator/package.json index af6528e9..0f00ffb7 100644 --- a/core/transaction-decorator/package.json +++ b/core/transaction-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-transaction-decorator", - "version": "3.15.0", + "version": "3.16.0", "description": "tegg transaction decorator", "keywords": [ "egg", @@ -17,9 +17,9 @@ "directory": "core/transaction-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0" + "@eggjs/core-decorator": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0" }, "scripts": { "test": "cross-env NODE_ENV=test NODE_OPTIONS='--no-deprecation' mocha", diff --git a/lerna.json b/lerna.json index 04d76a3e..fa7c664f 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useWorkspaces": true, - "version": "3.15.0", + "version": "3.16.0", "npmClientArgs": [ "--package-lock=false" ], diff --git a/plugin/aop/CHANGELOG.md b/plugin/aop/CHANGELOG.md index 3781f7ab..7c4cae1e 100644 --- a/plugin/aop/CHANGELOG.md +++ b/plugin/aop/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-aop-plugin + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) diff --git a/plugin/aop/package.json b/plugin/aop/package.json index c939dc91..6469d233 100644 --- a/plugin/aop/package.json +++ b/plugin/aop/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-aop-plugin", - "version": "3.15.0", + "version": "3.16.0", "eggPlugin": { "name": "aopModule", "dependencies": [ @@ -42,15 +42,15 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/aop-decorator": "^3.15.0", - "@eggjs/egg-module-common": "^3.15.0", - "@eggjs/tegg": "^3.15.0", - "@eggjs/tegg-aop-runtime": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0" + "@eggjs/aop-decorator": "^3.16.0", + "@eggjs/egg-module-common": "^3.16.0", + "@eggjs/tegg": "^3.16.0", + "@eggjs/tegg-aop-runtime": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.15.0", - "@eggjs/tegg-plugin": "^3.15.0", + "@eggjs/tegg-config": "^3.16.0", + "@eggjs/tegg-plugin": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/common/CHANGELOG.md b/plugin/common/CHANGELOG.md index 350e068e..318f9acb 100644 --- a/plugin/common/CHANGELOG.md +++ b/plugin/common/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/egg-module-common + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/egg-module-common diff --git a/plugin/common/package.json b/plugin/common/package.json index 6370379d..7bbdc868 100644 --- a/plugin/common/package.json +++ b/plugin/common/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/egg-module-common", - "version": "3.15.0", + "version": "3.16.0", "description": "common module", "keywords": [ "egg", diff --git a/plugin/config/CHANGELOG.md b/plugin/config/CHANGELOG.md index 90543ed1..06085f30 100644 --- a/plugin/config/CHANGELOG.md +++ b/plugin/config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-config + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-config diff --git a/plugin/config/package.json b/plugin/config/package.json index db92f706..b1a946d7 100644 --- a/plugin/config/package.json +++ b/plugin/config/package.json @@ -3,7 +3,7 @@ "eggPlugin": { "name": "teggConfig" }, - "version": "3.15.0", + "version": "3.16.0", "description": "module config plugin for egg", "keywords": [ "egg", @@ -41,7 +41,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.15.0" + "@eggjs/tegg-common-util": "^3.16.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/plugin/controller/CHANGELOG.md b/plugin/controller/CHANGELOG.md index 75efb3d4..7856c93a 100644 --- a/plugin/controller/CHANGELOG.md +++ b/plugin/controller/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-controller-plugin + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-controller-plugin diff --git a/plugin/controller/package.json b/plugin/controller/package.json index 49c84905..f4c7d2f7 100644 --- a/plugin/controller/package.json +++ b/plugin/controller/package.json @@ -7,7 +7,7 @@ "tegg" ] }, - "version": "3.15.0", + "version": "3.16.0", "description": "controller decorator for egg", "keywords": [ "egg", @@ -46,13 +46,13 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.15.0", + "@eggjs/egg-module-common": "^3.16.0", "@eggjs/router": "^2.0.1", - "@eggjs/tegg": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", + "@eggjs/tegg": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", "egg-errors": "^2.3.0", "globby": "^10.0.2", "koa-compose": "^3.2.1", @@ -60,9 +60,9 @@ "sdk-base": "^4.2.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.15.0", - "@eggjs/tegg-config": "^3.15.0", - "@eggjs/tegg-plugin": "^3.15.0", + "@eggjs/module-test-util": "^3.16.0", + "@eggjs/tegg-config": "^3.16.0", + "@eggjs/tegg-plugin": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/eventbus/CHANGELOG.md b/plugin/eventbus/CHANGELOG.md index c365ce31..1accba7c 100644 --- a/plugin/eventbus/CHANGELOG.md +++ b/plugin/eventbus/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-eventbus-plugin + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-eventbus-plugin diff --git a/plugin/eventbus/package.json b/plugin/eventbus/package.json index b51efc9a..a737cd82 100644 --- a/plugin/eventbus/package.json +++ b/plugin/eventbus/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-eventbus-plugin", - "version": "3.15.0", + "version": "3.16.0", "eggPlugin": { "name": "eventbusModule", "strict": false, @@ -48,16 +48,16 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.15.0", - "@eggjs/tegg": "^3.15.0", - "@eggjs/tegg-eventbus-runtime": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0" + "@eggjs/egg-module-common": "^3.16.0", + "@eggjs/tegg": "^3.16.0", + "@eggjs/tegg-eventbus-runtime": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0" }, "devDependencies": { - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-config": "^3.15.0", - "@eggjs/tegg-plugin": "^3.15.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-config": "^3.16.0", + "@eggjs/tegg-plugin": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "await-event": "^2.1.0", diff --git a/plugin/orm/CHANGELOG.md b/plugin/orm/CHANGELOG.md index 59707232..29f04bd9 100644 --- a/plugin/orm/CHANGELOG.md +++ b/plugin/orm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-orm-plugin + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-orm-plugin diff --git a/plugin/orm/package.json b/plugin/orm/package.json index d765c706..e22a437e 100644 --- a/plugin/orm/package.json +++ b/plugin/orm/package.json @@ -6,7 +6,7 @@ "tegg" ] }, - "version": "3.15.0", + "version": "3.16.0", "description": "orm decorator for egg", "keywords": [ "egg", @@ -48,24 +48,24 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.15.0", - "@eggjs/tegg": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-orm-decorator": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", + "@eggjs/egg-module-common": "^3.16.0", + "@eggjs/tegg": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-orm-decorator": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", "@types/koa-router": "^7.0.40", "koa-compose": "^3.2.1", "leoric": "^2.6.1", "sdk-base": "^4.2.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.15.0", + "@eggjs/module-test-util": "^3.16.0", "@eggjs/router": "^2.0.0", - "@eggjs/tegg-config": "^3.15.0", - "@eggjs/tegg-plugin": "^3.15.0", + "@eggjs/tegg-config": "^3.16.0", + "@eggjs/tegg-plugin": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/schedule/CHANGELOG.md b/plugin/schedule/CHANGELOG.md index b3f347c0..fa6f5788 100644 --- a/plugin/schedule/CHANGELOG.md +++ b/plugin/schedule/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + +**Note:** Version bump only for package @eggjs/tegg-schedule-plugin + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-schedule-plugin diff --git a/plugin/schedule/package.json b/plugin/schedule/package.json index a2b0f23f..3accc203 100644 --- a/plugin/schedule/package.json +++ b/plugin/schedule/package.json @@ -7,7 +7,7 @@ "schedule" ] }, - "version": "3.15.0", + "version": "3.16.0", "description": "schedule decorator for egg", "keywords": [ "egg", @@ -49,19 +49,19 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.15.0", - "@eggjs/tegg": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", - "@eggjs/tegg-schedule-decorator": "^3.15.0" + "@eggjs/egg-module-common": "^3.16.0", + "@eggjs/tegg": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", + "@eggjs/tegg-schedule-decorator": "^3.16.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.15.0", - "@eggjs/tegg-config": "^3.15.0", - "@eggjs/tegg-plugin": "^3.15.0", + "@eggjs/module-test-util": "^3.16.0", + "@eggjs/tegg-config": "^3.16.0", + "@eggjs/tegg-plugin": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/tegg/CHANGELOG.md b/plugin/tegg/CHANGELOG.md index 6bc8cb44..4bab558e 100644 --- a/plugin/tegg/CHANGELOG.md +++ b/plugin/tegg/CHANGELOG.md @@ -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.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + + +### Features + +* implement RuntimeConfig ([#144](https://github.com/eggjs/tegg/issues/144)) ([0862655](https://github.com/eggjs/tegg/commit/0862655846f6765349d406ee697c036cec2a37bd)) + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-plugin diff --git a/plugin/tegg/package.json b/plugin/tegg/package.json index 9eb3f992..cecafb11 100644 --- a/plugin/tegg/package.json +++ b/plugin/tegg/package.json @@ -6,7 +6,7 @@ "teggConfig" ] }, - "version": "3.15.0", + "version": "3.16.0", "description": "module plugin for egg", "keywords": [ "egg", @@ -45,18 +45,18 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.15.0", - "@eggjs/tegg": "^3.15.0", - "@eggjs/tegg-background-task": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-dynamic-inject-runtime": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0", + "@eggjs/egg-module-common": "^3.16.0", + "@eggjs/tegg": "^3.16.0", + "@eggjs/tegg-background-task": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-dynamic-inject-runtime": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0", "sdk-base": "^4.2.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.15.0", + "@eggjs/tegg-config": "^3.16.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/standalone/standalone/CHANGELOG.md b/standalone/standalone/CHANGELOG.md index 116b7384..cef012e6 100644 --- a/standalone/standalone/CHANGELOG.md +++ b/standalone/standalone/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.16.0](https://github.com/eggjs/tegg/compare/v3.15.0...v3.16.0) (2023-08-24) + + +### Features + +* export EggModuleLoader in standalone ([#146](https://github.com/eggjs/tegg/issues/146)) ([9d1da9a](https://github.com/eggjs/tegg/commit/9d1da9a87dbd486930adc50cd43020c2fb478230)) +* implement RuntimeConfig ([#144](https://github.com/eggjs/tegg/issues/144)) ([0862655](https://github.com/eggjs/tegg/commit/0862655846f6765349d406ee697c036cec2a37bd)) + + + + + ## [3.14.3](https://github.com/eggjs/tegg/compare/v3.14.2...v3.14.3) (2023-08-14) **Note:** Version bump only for package @eggjs/tegg-standalone diff --git a/standalone/standalone/package.json b/standalone/standalone/package.json index e9ac1e2d..09688304 100644 --- a/standalone/standalone/package.json +++ b/standalone/standalone/package.json @@ -1,7 +1,7 @@ { "name": "@eggjs/tegg-standalone", "description": "tegg standalone", - "version": "3.15.0", + "version": "3.16.0", "keywords": [ "egg", "typescript", @@ -38,15 +38,15 @@ "author": "killagu ", "license": "MIT", "dependencies": { - "@eggjs/egg-module-common": "^3.15.0", - "@eggjs/tegg": "^3.15.0", - "@eggjs/tegg-background-task": "^3.15.0", - "@eggjs/tegg-common-util": "^3.15.0", - "@eggjs/tegg-dynamic-inject-runtime": "^3.15.0", - "@eggjs/tegg-lifecycle": "^3.15.0", - "@eggjs/tegg-loader": "^3.15.0", - "@eggjs/tegg-metadata": "^3.15.0", - "@eggjs/tegg-runtime": "^3.15.0" + "@eggjs/egg-module-common": "^3.16.0", + "@eggjs/tegg": "^3.16.0", + "@eggjs/tegg-background-task": "^3.16.0", + "@eggjs/tegg-common-util": "^3.16.0", + "@eggjs/tegg-dynamic-inject-runtime": "^3.16.0", + "@eggjs/tegg-lifecycle": "^3.16.0", + "@eggjs/tegg-loader": "^3.16.0", + "@eggjs/tegg-metadata": "^3.16.0", + "@eggjs/tegg-runtime": "^3.16.0" }, "publishConfig": { "access": "public"