From ae4209364e2d0ed386b3a1fa1ba6551f327637fb Mon Sep 17 00:00:00 2001 From: killagu Date: Thu, 10 Oct 2024 12:18:36 +0800 Subject: [PATCH] v3.47.0 --- CHANGELOG.md | 12 ++++++++ core/ajv-decorator/CHANGELOG.md | 8 +++++ core/ajv-decorator/package.json | 2 +- core/aop-decorator/CHANGELOG.md | 11 +++++++ core/aop-decorator/package.json | 10 +++---- core/aop-runtime/CHANGELOG.md | 11 +++++++ core/aop-runtime/package.json | 20 ++++++------- core/background-task/CHANGELOG.md | 8 +++++ core/background-task/package.json | 12 ++++---- core/common-util/CHANGELOG.md | 8 +++++ core/common-util/package.json | 4 +-- core/controller-decorator/CHANGELOG.md | 8 +++++ core/controller-decorator/package.json | 12 ++++---- core/core-decorator/CHANGELOG.md | 11 +++++++ core/core-decorator/package.json | 6 ++-- core/dal-decorator/CHANGELOG.md | 8 +++++ core/dal-decorator/package.json | 8 ++--- core/dal-runtime/CHANGELOG.md | 8 +++++ core/dal-runtime/package.json | 6 ++-- core/dynamic-inject-runtime/CHANGELOG.md | 8 +++++ core/dynamic-inject-runtime/package.json | 20 ++++++------- core/dynamic-inject/CHANGELOG.md | 8 +++++ core/dynamic-inject/package.json | 6 ++-- core/eventbus-decorator/CHANGELOG.md | 8 +++++ core/eventbus-decorator/package.json | 8 ++--- core/eventbus-runtime/CHANGELOG.md | 8 +++++ core/eventbus-runtime/package.json | 16 +++++----- core/lifecycle/CHANGELOG.md | 8 +++++ core/lifecycle/package.json | 10 +++---- core/loader/CHANGELOG.md | 8 +++++ core/loader/package.json | 10 +++---- core/metadata/CHANGELOG.md | 12 ++++++++ core/metadata/package.json | 10 +++---- core/orm-decorator/CHANGELOG.md | 8 +++++ core/orm-decorator/package.json | 10 +++---- core/runtime/CHANGELOG.md | 8 +++++ core/runtime/package.json | 14 ++++----- core/schedule-decorator/CHANGELOG.md | 8 +++++ core/schedule-decorator/package.json | 10 +++---- core/standalone-decorator/CHANGELOG.md | 8 +++++ core/standalone-decorator/package.json | 4 +-- core/tegg/CHANGELOG.md | 8 +++++ core/tegg/package.json | 38 ++++++++++++------------ core/test-util/CHANGELOG.md | 11 +++++++ core/test-util/package.json | 12 ++++---- core/transaction-decorator/CHANGELOG.md | 8 +++++ core/transaction-decorator/package.json | 10 +++---- core/types/CHANGELOG.md | 8 +++++ core/types/package.json | 2 +- lerna.json | 2 +- plugin/ajv/CHANGELOG.md | 8 +++++ plugin/ajv/package.json | 10 +++---- 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/dal/CHANGELOG.md | 8 +++++ plugin/dal/package.json | 10 +++---- 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 | 8 +++++ plugin/tegg/package.json | 20 ++++++------- standalone/standalone/CHANGELOG.md | 11 +++++++ standalone/standalone/package.json | 26 ++++++++-------- 72 files changed, 529 insertions(+), 218 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e383b82d..de139853 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + + +### Features + +* export ProtoDescriptorHelper ([#245](https://github.com/eggjs/tegg/issues/245)) ([f01fb63](https://github.com/eggjs/tegg/commit/f01fb639b153a907fd9c951d4b1e40ba101b43d0)) +* impl GlobalGraph build hook ([#246](https://github.com/eggjs/tegg/issues/246)) ([48fce45](https://github.com/eggjs/tegg/commit/48fce4512e99259ec26a9b032bfcc9f4046ad235)) + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package tegg diff --git a/core/ajv-decorator/CHANGELOG.md b/core/ajv-decorator/CHANGELOG.md index 86ff6bc4..9ceb2ba0 100644 --- a/core/ajv-decorator/CHANGELOG.md +++ b/core/ajv-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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/ajv-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/ajv-decorator diff --git a/core/ajv-decorator/package.json b/core/ajv-decorator/package.json index 38a85f53..6aabe061 100644 --- a/core/ajv-decorator/package.json +++ b/core/ajv-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/ajv-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg ajv decorator", "keywords": [ "egg", diff --git a/core/aop-decorator/CHANGELOG.md b/core/aop-decorator/CHANGELOG.md index 9bf56379..3b67a149 100644 --- a/core/aop-decorator/CHANGELOG.md +++ b/core/aop-decorator/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + + +### Features + +* impl GlobalGraph build hook ([#246](https://github.com/eggjs/tegg/issues/246)) ([48fce45](https://github.com/eggjs/tegg/commit/48fce4512e99259ec26a9b032bfcc9f4046ad235)) + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/aop-decorator diff --git a/core/aop-decorator/package.json b/core/aop-decorator/package.json index a506b00c..075358b4 100644 --- a/core/aop-decorator/package.json +++ b/core/aop-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/aop-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg aop decorator", "keywords": [ "tegg", @@ -16,10 +16,10 @@ "directory": "core/aop-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-types": "^3.47.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 d8f4d085..416cabcd 100644 --- a/core/aop-runtime/CHANGELOG.md +++ b/core/aop-runtime/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + + +### Features + +* impl GlobalGraph build hook ([#246](https://github.com/eggjs/tegg/issues/246)) ([48fce45](https://github.com/eggjs/tegg/commit/48fce4512e99259ec26a9b032bfcc9f4046ad235)) + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 0e30859f..f391c8fa 100644 --- a/core/aop-runtime/package.json +++ b/core/aop-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-aop-runtime", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg aop", "main": "dist/index.js", "eggModule": { @@ -43,18 +43,18 @@ "access": "public" }, "dependencies": { - "@eggjs/aop-decorator": "^3.46.4", - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/aop-decorator": "^3.47.0", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "koa-compose": "^4.1.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", + "@eggjs/module-test-util": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.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 7bf6766f..2ee142ee 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-background-task + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 e17771f8..3e5937aa 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.46.4", + "version": "3.47.0", "keywords": [ "egg", "typescript", @@ -37,13 +37,13 @@ "author": "killagu ", "license": "MIT", "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0" }, "devDependencies": { - "@eggjs/tegg-common-util": "^3.46.4", + "@eggjs/tegg-common-util": "^3.47.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 9c803a91..f9161e51 100644 --- a/core/common-util/CHANGELOG.md +++ b/core/common-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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-common-util + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 2b1bc263..55515e08 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.46.4", + "version": "3.47.0", "keywords": [ "egg", "typescript", @@ -36,7 +36,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/tegg-types": "^3.47.0", "extend2": "^1.0.0", "globby": "^11.1.0", "js-yaml": "^3.14.0" diff --git a/core/controller-decorator/CHANGELOG.md b/core/controller-decorator/CHANGELOG.md index 20c43921..9dd29c9c 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/controller-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/controller-decorator diff --git a/core/controller-decorator/package.json b/core/controller-decorator/package.json index 8e83d61a..764de537 100644 --- a/core/controller-decorator/package.json +++ b/core/controller-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/controller-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg controller decorator", "keywords": [ "egg", @@ -37,12 +37,12 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/aop-decorator": "^3.46.4", + "@eggjs/aop-decorator": "^3.47.0", "@eggjs/cookies": "^3.0.1", - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "is-type-of": "^1.2.1", "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 5f076eef..6ff7099d 100644 --- a/core/core-decorator/CHANGELOG.md +++ b/core/core-decorator/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + + +### Features + +* export ProtoDescriptorHelper ([#245](https://github.com/eggjs/tegg/issues/245)) ([f01fb63](https://github.com/eggjs/tegg/commit/f01fb639b153a907fd9c951d4b1e40ba101b43d0)) + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/core-decorator diff --git a/core/core-decorator/package.json b/core/core-decorator/package.json index e83b1d1a..1381b3ba 100644 --- a/core/core-decorator/package.json +++ b/core/core-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/core-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg core decorator", "keywords": [ "egg", @@ -36,8 +36,8 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "reflect-metadata": "^0.1.13" }, "publishConfig": { diff --git a/core/dal-decorator/CHANGELOG.md b/core/dal-decorator/CHANGELOG.md index 8dc58e0b..2fd2aee9 100644 --- a/core/dal-decorator/CHANGELOG.md +++ b/core/dal-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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/dal-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/dal-decorator diff --git a/core/dal-decorator/package.json b/core/dal-decorator/package.json index ddc632ce..072466eb 100644 --- a/core/dal-decorator/package.json +++ b/core/dal-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/dal-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg dal decorator", "keywords": [ "egg", @@ -37,9 +37,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "lodash.snakecase": "^4.1.1", "pluralize": "^8.0.0" }, diff --git a/core/dal-runtime/CHANGELOG.md b/core/dal-runtime/CHANGELOG.md index 1a540b5e..64737180 100644 --- a/core/dal-runtime/CHANGELOG.md +++ b/core/dal-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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/dal-runtime + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/dal-runtime diff --git a/core/dal-runtime/package.json b/core/dal-runtime/package.json index 62fc69c3..b1265d49 100644 --- a/core/dal-runtime/package.json +++ b/core/dal-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/dal-runtime", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg dal decorator", "keywords": [ "egg", @@ -40,8 +40,8 @@ }, "dependencies": { "@eggjs/rds": "^1.0.0", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "js-beautify": "^1.15.1", "lodash": "^4.17.21", "nunjucks": "^3.2.4", diff --git a/core/dynamic-inject-runtime/CHANGELOG.md b/core/dynamic-inject-runtime/CHANGELOG.md index 066a7b93..da4cc4eb 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-dynamic-inject-runtime + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 b41dc190..20f3dc5b 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.46.4", + "version": "3.47.0", "description": "tegg dyniamic inject", "main": "dist/index.js", "eggModule": { @@ -42,17 +42,17 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-dynamic-inject": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-dynamic-inject": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", + "@eggjs/module-test-util": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.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 bf682bf5..9bcecf83 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-dynamic-inject + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 4730945d..6ee3e469 100644 --- a/core/dynamic-inject/package.json +++ b/core/dynamic-inject/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-dynamic-inject", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg dyniamic inject", "main": "dist/index.js", "files": [ @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/core/eventbus-decorator/CHANGELOG.md b/core/eventbus-decorator/CHANGELOG.md index 89fe2880..3caee9f8 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/eventbus-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/eventbus-decorator diff --git a/core/eventbus-decorator/package.json b/core/eventbus-decorator/package.json index a2086e12..f11dfb12 100644 --- a/core/eventbus-decorator/package.json +++ b/core/eventbus-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/eventbus-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg eventbus decorator", "keywords": [ "egg", @@ -34,9 +34,9 @@ "directory": "core/eventbus-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "typed-emitter": "^1.3.1" }, "engines": { diff --git a/core/eventbus-runtime/CHANGELOG.md b/core/eventbus-runtime/CHANGELOG.md index aa17e3fb..e71ebb05 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-eventbus-runtime + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 06b6051c..7a2a17f7 100644 --- a/core/eventbus-runtime/package.json +++ b/core/eventbus-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-eventbus-runtime", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg eventbus runtime", "keywords": [ "egg", @@ -37,11 +37,11 @@ "directory": "core/eventbus-runtime" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/eventbus-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/eventbus-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "await-event": "^2.1.0", "await-first": "^1.0.0" }, @@ -49,8 +49,8 @@ "node": ">=14.0.0" }, "devDependencies": { - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.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 eb30d13d..c5b9b2c3 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-lifecycle + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-lifecycle diff --git a/core/lifecycle/package.json b/core/lifecycle/package.json index 291a19f0..80591870 100644 --- a/core/lifecycle/package.json +++ b/core/lifecycle/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-lifecycle", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg lifecycle definition", "keywords": [ "egg", @@ -39,12 +39,12 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0" }, "devDependencies": { - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/core/loader/CHANGELOG.md b/core/loader/CHANGELOG.md index c91b8ff2..ee2a6f23 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-loader + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-loader diff --git a/core/loader/package.json b/core/loader/package.json index c19133e9..b247bcc3 100644 --- a/core/loader/package.json +++ b/core/loader/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-loader", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg default loader implement", "keywords": [ "egg", @@ -36,9 +36,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "globby": "^11.1.0", "is-type-of": "^1.2.1" }, @@ -46,7 +46,7 @@ "access": "public" }, "devDependencies": { - "@eggjs/tegg-metadata": "^3.46.4", + "@eggjs/tegg-metadata": "^3.47.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 97356c12..88dc1410 100644 --- a/core/metadata/CHANGELOG.md +++ b/core/metadata/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + + +### Features + +* export ProtoDescriptorHelper ([#245](https://github.com/eggjs/tegg/issues/245)) ([f01fb63](https://github.com/eggjs/tegg/commit/f01fb639b153a907fd9c951d4b1e40ba101b43d0)) +* impl GlobalGraph build hook ([#246](https://github.com/eggjs/tegg/issues/246)) ([48fce45](https://github.com/eggjs/tegg/commit/48fce4512e99259ec26a9b032bfcc9f4046ad235)) + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-metadata diff --git a/core/metadata/package.json b/core/metadata/package.json index b4c1d9ea..9eae780a 100644 --- a/core/metadata/package.json +++ b/core/metadata/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-metadata", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg metadata", "keywords": [ "egg", @@ -35,10 +35,10 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "egg-errors": "^2.2.3" }, "devDependencies": { diff --git a/core/orm-decorator/CHANGELOG.md b/core/orm-decorator/CHANGELOG.md index 3028def6..c8d24e5f 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-orm-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 ae6e0684..b7a914a3 100644 --- a/core/orm-decorator/package.json +++ b/core/orm-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-orm-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg orm decorator", "main": "dist/index.js", "files": [ @@ -36,10 +36,10 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "lodash": "^4.17.21", "pluralize": "^8.0.0" }, diff --git a/core/runtime/CHANGELOG.md b/core/runtime/CHANGELOG.md index 72a82c46..98a06906 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-runtime + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-runtime diff --git a/core/runtime/package.json b/core/runtime/package.json index feb37d8e..a43dc325 100644 --- a/core/runtime/package.json +++ b/core/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-runtime", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg runtime", "main": "dist/index.js", "files": [ @@ -36,14 +36,14 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0" }, "devDependencies": { - "@eggjs/tegg-loader": "^3.46.4", + "@eggjs/tegg-loader": "^3.47.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 a73a87eb..0c5a78e0 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-schedule-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 c9243e6b..3feed8c2 100644 --- a/core/schedule-decorator/package.json +++ b/core/schedule-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-schedule-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg schedule decorator", "main": "dist/index.js", "files": [ @@ -35,10 +35,10 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0", "cron-parser": "^2.18.0" }, "devDependencies": { diff --git a/core/standalone-decorator/CHANGELOG.md b/core/standalone-decorator/CHANGELOG.md index eed02f27..724058d8 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/standalone-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/standalone-decorator diff --git a/core/standalone-decorator/package.json b/core/standalone-decorator/package.json index f1b4d02a..14529c9e 100644 --- a/core/standalone-decorator/package.json +++ b/core/standalone-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/standalone-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg standalone decorator", "keywords": [ "egg", @@ -36,7 +36,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.46.4", + "@eggjs/tegg-common-util": "^3.47.0", "reflect-metadata": "^0.1.13" }, "publishConfig": { diff --git a/core/tegg/CHANGELOG.md b/core/tegg/CHANGELOG.md index 65399423..ca575334 100644 --- a/core/tegg/CHANGELOG.md +++ b/core/tegg/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg diff --git a/core/tegg/package.json b/core/tegg/package.json index cc259f98..a18df3b8 100644 --- a/core/tegg/package.json +++ b/core/tegg/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg decorator packages", "keywords": [ "egg", @@ -35,24 +35,24 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/ajv-decorator": "^3.46.4", - "@eggjs/aop-decorator": "^3.46.4", - "@eggjs/controller-decorator": "^3.46.4", - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/dal-decorator": "^3.46.4", - "@eggjs/eventbus-decorator": "^3.46.4", - "@eggjs/standalone-decorator": "^3.46.4", - "@eggjs/tegg-background-task": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-dynamic-inject": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-orm-decorator": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", - "@eggjs/tegg-schedule-decorator": "^3.46.4", - "@eggjs/tegg-transaction-decorator": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/ajv-decorator": "^3.47.0", + "@eggjs/aop-decorator": "^3.47.0", + "@eggjs/controller-decorator": "^3.47.0", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/dal-decorator": "^3.47.0", + "@eggjs/eventbus-decorator": "^3.47.0", + "@eggjs/standalone-decorator": "^3.47.0", + "@eggjs/tegg-background-task": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-dynamic-inject": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-orm-decorator": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", + "@eggjs/tegg-schedule-decorator": "^3.47.0", + "@eggjs/tegg-transaction-decorator": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0" }, "publishConfig": { "access": "public" diff --git a/core/test-util/CHANGELOG.md b/core/test-util/CHANGELOG.md index b686aa04..5c901458 100644 --- a/core/test-util/CHANGELOG.md +++ b/core/test-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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + + +### Features + +* impl GlobalGraph build hook ([#246](https://github.com/eggjs/tegg/issues/246)) ([48fce45](https://github.com/eggjs/tegg/commit/48fce4512e99259ec26a9b032bfcc9f4046ad235)) + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 7315d8bd..80f00205 100644 --- a/core/test-util/package.json +++ b/core/test-util/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/module-test-util", - "version": "3.46.4", + "version": "3.47.0", "private": true, "description": "module test util", "keywords": [ @@ -35,11 +35,11 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", "globby": "^11.1.0", "mm": "^3.2.1" }, diff --git a/core/transaction-decorator/CHANGELOG.md b/core/transaction-decorator/CHANGELOG.md index c21186d1..1a88acd7 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-transaction-decorator + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **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 df622ca2..ba450322 100644 --- a/core/transaction-decorator/package.json +++ b/core/transaction-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-transaction-decorator", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg transaction decorator", "keywords": [ "egg", @@ -17,10 +17,10 @@ "directory": "core/transaction-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-types": "^3.46.4" + "@eggjs/core-decorator": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-types": "^3.47.0" }, "scripts": { "test": "cross-env NODE_ENV=test NODE_OPTIONS='--no-deprecation' mocha", diff --git a/core/types/CHANGELOG.md b/core/types/CHANGELOG.md index 91a3d365..4e827720 100644 --- a/core/types/CHANGELOG.md +++ b/core/types/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-types + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-types diff --git a/core/types/package.json b/core/types/package.json index 2ed7aee8..e435460e 100644 --- a/core/types/package.json +++ b/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-types", - "version": "3.46.4", + "version": "3.47.0", "description": "tegg types", "keywords": [ "egg", diff --git a/lerna.json b/lerna.json index 674084f0..75f2ec66 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useWorkspaces": true, - "version": "3.46.4", + "version": "3.47.0", "npmClientArgs": [ "--package-lock=false" ], diff --git a/plugin/ajv/CHANGELOG.md b/plugin/ajv/CHANGELOG.md index bfbb497e..7c5901de 100644 --- a/plugin/ajv/CHANGELOG.md +++ b/plugin/ajv/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-ajv-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-ajv-plugin diff --git a/plugin/ajv/package.json b/plugin/ajv/package.json index 73759d37..3ab6a170 100644 --- a/plugin/ajv/package.json +++ b/plugin/ajv/package.json @@ -10,7 +10,7 @@ "eggModule": { "name": "teggAjv" }, - "version": "3.46.4", + "version": "3.47.0", "description": "ajv plugin for egg and tegg", "keywords": [ "egg", @@ -48,14 +48,14 @@ "dependencies": { "@eggjs/ajv-formats": "^3.0.1", "@eggjs/ajv-keywords": "^5.1.0", - "@eggjs/tegg": "^3.46.4", + "@eggjs/tegg": "^3.47.0", "@sinclair/typebox": "^0.32.20", "ajv": "^8.12.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.46.4", - "@eggjs/tegg-controller-plugin": "^3.46.4", - "@eggjs/tegg-plugin": "^3.46.4", + "@eggjs/tegg-config": "^3.47.0", + "@eggjs/tegg-controller-plugin": "^3.47.0", + "@eggjs/tegg-plugin": "^3.47.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/aop/CHANGELOG.md b/plugin/aop/CHANGELOG.md index 8afa7f36..5debb2f1 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-aop-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-aop-plugin diff --git a/plugin/aop/package.json b/plugin/aop/package.json index 532012f8..60dde5ea 100644 --- a/plugin/aop/package.json +++ b/plugin/aop/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-aop-plugin", - "version": "3.46.4", + "version": "3.47.0", "eggPlugin": { "name": "aopModule", "dependencies": [ @@ -42,15 +42,15 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/aop-decorator": "^3.46.4", - "@eggjs/egg-module-common": "^3.46.4", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-aop-runtime": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4" + "@eggjs/aop-decorator": "^3.47.0", + "@eggjs/egg-module-common": "^3.47.0", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-aop-runtime": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.46.4", - "@eggjs/tegg-plugin": "^3.46.4", + "@eggjs/tegg-config": "^3.47.0", + "@eggjs/tegg-plugin": "^3.47.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 b838406d..36e4dec9 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/egg-module-common + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/egg-module-common diff --git a/plugin/common/package.json b/plugin/common/package.json index 6f53653d..af88e75d 100644 --- a/plugin/common/package.json +++ b/plugin/common/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/egg-module-common", - "version": "3.46.4", + "version": "3.47.0", "description": "common module", "keywords": [ "egg", diff --git a/plugin/config/CHANGELOG.md b/plugin/config/CHANGELOG.md index e80de59f..1afad996 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-config + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-config diff --git a/plugin/config/package.json b/plugin/config/package.json index 41c4d22e..5d9461eb 100644 --- a/plugin/config/package.json +++ b/plugin/config/package.json @@ -3,7 +3,7 @@ "eggPlugin": { "name": "teggConfig" }, - "version": "3.46.4", + "version": "3.47.0", "description": "module config plugin for egg", "keywords": [ "egg", @@ -43,7 +43,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.46.4" + "@eggjs/tegg-common-util": "^3.47.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/plugin/controller/CHANGELOG.md b/plugin/controller/CHANGELOG.md index 767a56e1..789bb496 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-controller-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-controller-plugin diff --git a/plugin/controller/package.json b/plugin/controller/package.json index 04f7a7ad..8f91a74a 100644 --- a/plugin/controller/package.json +++ b/plugin/controller/package.json @@ -7,7 +7,7 @@ "tegg" ] }, - "version": "3.46.4", + "version": "3.47.0", "description": "controller decorator for egg", "keywords": [ "egg", @@ -46,13 +46,13 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.46.4", + "@eggjs/egg-module-common": "^3.47.0", "@eggjs/router": "^2.0.1", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.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.46.4", - "@eggjs/tegg-config": "^3.46.4", - "@eggjs/tegg-plugin": "^3.46.4", + "@eggjs/module-test-util": "^3.47.0", + "@eggjs/tegg-config": "^3.47.0", + "@eggjs/tegg-plugin": "^3.47.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/dal/CHANGELOG.md b/plugin/dal/CHANGELOG.md index ae1ee67f..f4d69adf 100644 --- a/plugin/dal/CHANGELOG.md +++ b/plugin/dal/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-dal-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-dal-plugin diff --git a/plugin/dal/package.json b/plugin/dal/package.json index 2313fc20..f3e72c11 100644 --- a/plugin/dal/package.json +++ b/plugin/dal/package.json @@ -10,7 +10,7 @@ "eggModule": { "name": "teggDal" }, - "version": "3.46.4", + "version": "3.47.0", "description": "dal plugin for egg", "keywords": [ "egg", @@ -50,12 +50,12 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/dal-runtime": "^3.46.4" + "@eggjs/dal-runtime": "^3.47.0" }, "devDependencies": { - "@eggjs/tegg-aop-plugin": "^3.46.4", - "@eggjs/tegg-config": "^3.46.4", - "@eggjs/tegg-plugin": "^3.46.4", + "@eggjs/tegg-aop-plugin": "^3.47.0", + "@eggjs/tegg-config": "^3.47.0", + "@eggjs/tegg-plugin": "^3.47.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 78472683..d8d4e94f 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-eventbus-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-eventbus-plugin diff --git a/plugin/eventbus/package.json b/plugin/eventbus/package.json index 3b028f1f..7ef86f6d 100644 --- a/plugin/eventbus/package.json +++ b/plugin/eventbus/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-eventbus-plugin", - "version": "3.46.4", + "version": "3.47.0", "eggPlugin": { "name": "eventbusModule", "strict": false, @@ -48,16 +48,16 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.46.4", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-eventbus-runtime": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4" + "@eggjs/egg-module-common": "^3.47.0", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-eventbus-runtime": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0" }, "devDependencies": { - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-config": "^3.46.4", - "@eggjs/tegg-plugin": "^3.46.4", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-config": "^3.47.0", + "@eggjs/tegg-plugin": "^3.47.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 9fa0ee52..f8d3ab29 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-orm-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-orm-plugin diff --git a/plugin/orm/package.json b/plugin/orm/package.json index 7ed24e22..942b420a 100644 --- a/plugin/orm/package.json +++ b/plugin/orm/package.json @@ -6,7 +6,7 @@ "tegg" ] }, - "version": "3.46.4", + "version": "3.47.0", "description": "orm decorator for egg", "keywords": [ "egg", @@ -48,24 +48,24 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.46.4", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-orm-decorator": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", + "@eggjs/egg-module-common": "^3.47.0", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-orm-decorator": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", "@types/koa-router": "^7.0.40", "koa-compose": "^3.2.1", "leoric": "^2.12.2", "sdk-base": "^4.2.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.46.4", + "@eggjs/module-test-util": "^3.47.0", "@eggjs/router": "^2.0.0", - "@eggjs/tegg-config": "^3.46.4", - "@eggjs/tegg-plugin": "^3.46.4", + "@eggjs/tegg-config": "^3.47.0", + "@eggjs/tegg-plugin": "^3.47.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 90b6967c..1438dc99 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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-schedule-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-schedule-plugin diff --git a/plugin/schedule/package.json b/plugin/schedule/package.json index 4331bd22..2bce54cf 100644 --- a/plugin/schedule/package.json +++ b/plugin/schedule/package.json @@ -7,7 +7,7 @@ "schedule" ] }, - "version": "3.46.4", + "version": "3.47.0", "description": "schedule decorator for egg", "keywords": [ "egg", @@ -49,19 +49,19 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.46.4", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", - "@eggjs/tegg-schedule-decorator": "^3.46.4" + "@eggjs/egg-module-common": "^3.47.0", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", + "@eggjs/tegg-schedule-decorator": "^3.47.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.46.4", - "@eggjs/tegg-config": "^3.46.4", - "@eggjs/tegg-plugin": "^3.46.4", + "@eggjs/module-test-util": "^3.47.0", + "@eggjs/tegg-config": "^3.47.0", + "@eggjs/tegg-plugin": "^3.47.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 d2998827..f89e2fe3 100644 --- a/plugin/tegg/CHANGELOG.md +++ b/plugin/tegg/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + +**Note:** Version bump only for package @eggjs/tegg-plugin + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-plugin diff --git a/plugin/tegg/package.json b/plugin/tegg/package.json index 3e6abd04..0f8563a3 100644 --- a/plugin/tegg/package.json +++ b/plugin/tegg/package.json @@ -6,7 +6,7 @@ "teggConfig" ] }, - "version": "3.46.4", + "version": "3.47.0", "description": "module plugin for egg", "keywords": [ "egg", @@ -45,19 +45,19 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.46.4", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-background-task": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-dynamic-inject-runtime": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4", + "@eggjs/egg-module-common": "^3.47.0", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-background-task": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-dynamic-inject-runtime": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0", "extend2": "^1.0.0", "sdk-base": "^4.2.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.46.4", + "@eggjs/tegg-config": "^3.47.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 ded04db6..2d683e76 100644 --- a/standalone/standalone/CHANGELOG.md +++ b/standalone/standalone/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.47.0](https://github.com/eggjs/tegg/compare/v3.46.4...v3.47.0) (2024-10-10) + + +### Features + +* impl GlobalGraph build hook ([#246](https://github.com/eggjs/tegg/issues/246)) ([48fce45](https://github.com/eggjs/tegg/commit/48fce4512e99259ec26a9b032bfcc9f4046ad235)) + + + + + ## [3.46.4](https://github.com/eggjs/tegg/compare/v3.46.3...v3.46.4) (2024-10-09) **Note:** Version bump only for package @eggjs/tegg-standalone diff --git a/standalone/standalone/package.json b/standalone/standalone/package.json index c8cdff51..47caa4c0 100644 --- a/standalone/standalone/package.json +++ b/standalone/standalone/package.json @@ -1,7 +1,7 @@ { "name": "@eggjs/tegg-standalone", "description": "tegg standalone", - "version": "3.46.4", + "version": "3.47.0", "keywords": [ "egg", "typescript", @@ -38,23 +38,23 @@ "author": "killagu ", "license": "MIT", "dependencies": { - "@eggjs/egg-module-common": "^3.46.4", - "@eggjs/tegg": "^3.46.4", - "@eggjs/tegg-aop-runtime": "^3.46.4", - "@eggjs/tegg-background-task": "^3.46.4", - "@eggjs/tegg-common-util": "^3.46.4", - "@eggjs/tegg-dal-plugin": "^3.46.4", - "@eggjs/tegg-dynamic-inject-runtime": "^3.46.4", - "@eggjs/tegg-lifecycle": "^3.46.4", - "@eggjs/tegg-loader": "^3.46.4", - "@eggjs/tegg-metadata": "^3.46.4", - "@eggjs/tegg-runtime": "^3.46.4" + "@eggjs/egg-module-common": "^3.47.0", + "@eggjs/tegg": "^3.47.0", + "@eggjs/tegg-aop-runtime": "^3.47.0", + "@eggjs/tegg-background-task": "^3.47.0", + "@eggjs/tegg-common-util": "^3.47.0", + "@eggjs/tegg-dal-plugin": "^3.47.0", + "@eggjs/tegg-dynamic-inject-runtime": "^3.47.0", + "@eggjs/tegg-lifecycle": "^3.47.0", + "@eggjs/tegg-loader": "^3.47.0", + "@eggjs/tegg-metadata": "^3.47.0", + "@eggjs/tegg-runtime": "^3.47.0" }, "publishConfig": { "access": "public" }, "devDependencies": { - "@eggjs/tegg-ajv-plugin": "^3.46.4", + "@eggjs/tegg-ajv-plugin": "^3.47.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3",