diff --git a/CHANGELOG.md b/CHANGELOG.md index 2977948f..7d2ef560 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + + +### Bug Fixes + +* **agent-runtime:** set isResume based on thread message history ([#419](https://github.com/eggjs/tegg/issues/419)) ([8a7eacc](https://github.com/eggjs/tegg/commit/8a7eacca79a94815251a0d660f828ebef443d12a)) +* **agent-tracing:** add eggModule declaration for tegg module scanning ([#416](https://github.com/eggjs/tegg/issues/416)) ([d169cab](https://github.com/eggjs/tegg/commit/d169cabeb0580b96c320ac6c067d3d9828639a32)) +* **agent-tracing:** separate traceId and sessionId in createSession ([#417](https://github.com/eggjs/tegg/issues/417)) ([c760776](https://github.com/eggjs/tegg/commit/c7607761d1e85cbf91cb74878e90af898672db3a)) + + +### Features + +* **agent-tracing:** collect assistant messages into root run outputs ([#421](https://github.com/eggjs/tegg/issues/421)) ([8dcebaf](https://github.com/eggjs/tegg/commit/8dcebafa19061d4a91161272409a2ac729d78341)) +* **agent-tracing:** rename TraceSession to Trace and support inputs in createTrace ([#420](https://github.com/eggjs/tegg/issues/420)) ([5471bda](https://github.com/eggjs/tegg/commit/5471bda05bd21ed5c60d82182a2807d09f9be097)) + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/agent-runtime/CHANGELOG.md b/core/agent-runtime/CHANGELOG.md index 9ebaab11..88f04317 100644 --- a/core/agent-runtime/CHANGELOG.md +++ b/core/agent-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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + + +### Bug Fixes + +* **agent-runtime:** set isResume based on thread message history ([#419](https://github.com/eggjs/tegg/issues/419)) ([8a7eacc](https://github.com/eggjs/tegg/commit/8a7eacca79a94815251a0d660f828ebef443d12a)) + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/agent-runtime/package.json b/core/agent-runtime/package.json index f17d14a9..931839ac 100644 --- a/core/agent-runtime/package.json +++ b/core/agent-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/agent-runtime", - "version": "3.73.0", + "version": "3.74.0", "description": "Agent runtime with store abstraction for Egg.js tegg", "keywords": [ "agent", @@ -33,7 +33,7 @@ "test": "mocha" }, "dependencies": { - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/tegg-types": "^3.74.0", "egg-logger": "^3.0.1", "oss-client": "^2.5.1" }, diff --git a/core/agent-tracing/CHANGELOG.md b/core/agent-tracing/CHANGELOG.md index 4c0c5db2..90df7662 100644 --- a/core/agent-tracing/CHANGELOG.md +++ b/core/agent-tracing/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + + +### Bug Fixes + +* **agent-tracing:** add eggModule declaration for tegg module scanning ([#416](https://github.com/eggjs/tegg/issues/416)) ([d169cab](https://github.com/eggjs/tegg/commit/d169cabeb0580b96c320ac6c067d3d9828639a32)) +* **agent-tracing:** separate traceId and sessionId in createSession ([#417](https://github.com/eggjs/tegg/issues/417)) ([c760776](https://github.com/eggjs/tegg/commit/c7607761d1e85cbf91cb74878e90af898672db3a)) + + +### Features + +* **agent-tracing:** collect assistant messages into root run outputs ([#421](https://github.com/eggjs/tegg/issues/421)) ([8dcebaf](https://github.com/eggjs/tegg/commit/8dcebafa19061d4a91161272409a2ac729d78341)) +* **agent-tracing:** rename TraceSession to Trace and support inputs in createTrace ([#420](https://github.com/eggjs/tegg/issues/420)) ([5471bda](https://github.com/eggjs/tegg/commit/5471bda05bd21ed5c60d82182a2807d09f9be097)) + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/agent-tracing/package.json b/core/agent-tracing/package.json index 1e492ebb..4dfd1df3 100644 --- a/core/agent-tracing/package.json +++ b/core/agent-tracing/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/agent-tracing", - "version": "3.73.0", + "version": "3.74.0", "description": "Tracing support for AI agents (LangGraph, Claude Agent SDK)", "keywords": [ "agent", @@ -55,9 +55,9 @@ "author": "killagu ", "license": "MIT", "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-background-task": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-background-task": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "onelogger": "^1.0.1" }, "peerDependencies": { @@ -75,7 +75,7 @@ "devDependencies": { "@anthropic-ai/claude-agent-sdk": "^0.2.52", "@anthropic-ai/sdk": "^0.78.0", - "@eggjs/tegg-common-util": "^3.73.0", + "@eggjs/tegg-common-util": "^3.74.0", "@langchain/core": "^1.1.29", "@langchain/langgraph": "^0.2.74", "@types/mocha": "^10.0.1", diff --git a/core/ajv-decorator/CHANGELOG.md b/core/ajv-decorator/CHANGELOG.md index 0807ad03..46e06c3b 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/ajv-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/ajv-decorator diff --git a/core/ajv-decorator/package.json b/core/ajv-decorator/package.json index 25ba208f..d9a207ba 100644 --- a/core/ajv-decorator/package.json +++ b/core/ajv-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/ajv-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg ajv decorator", "keywords": [ "egg", diff --git a/core/aop-decorator/CHANGELOG.md b/core/aop-decorator/CHANGELOG.md index e4a50429..c046814a 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/aop-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/aop-decorator diff --git a/core/aop-decorator/package.json b/core/aop-decorator/package.json index 6022fe16..266b1445 100644 --- a/core/aop-decorator/package.json +++ b/core/aop-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/aop-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg aop decorator", "keywords": [ "tegg", @@ -16,10 +16,10 @@ "directory": "core/aop-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-types": "^3.74.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 8b36f71a..7ec6bc5f 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-aop-runtime + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 e3907ceb..f435e546 100644 --- a/core/aop-runtime/package.json +++ b/core/aop-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-aop-runtime", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg aop", "main": "dist/index.js", "eggModule": { @@ -43,18 +43,18 @@ "access": "public" }, "dependencies": { - "@eggjs/aop-decorator": "^3.73.0", - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/aop-decorator": "^3.74.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "koa-compose": "^4.1.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", + "@eggjs/module-test-util": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.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 d4f44f16..b6c86dec 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-background-task + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 a1605c33..9958b0d9 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.73.0", + "version": "3.74.0", "keywords": [ "egg", "typescript", @@ -37,13 +37,13 @@ "author": "killagu ", "license": "MIT", "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0" }, "devDependencies": { - "@eggjs/tegg-common-util": "^3.73.0", + "@eggjs/tegg-common-util": "^3.74.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 6af9a6c8..1fdc9734 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-common-util + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 b0a50973..7702812a 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.73.0", + "version": "3.74.0", "keywords": [ "egg", "typescript", @@ -36,7 +36,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/tegg-types": "^3.74.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 63b822e3..db2715f5 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/controller-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/controller-decorator/package.json b/core/controller-decorator/package.json index bee8b222..fec63cb6 100644 --- a/core/controller-decorator/package.json +++ b/core/controller-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/controller-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg controller decorator", "keywords": [ "egg", @@ -37,12 +37,12 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/aop-decorator": "^3.73.0", + "@eggjs/aop-decorator": "^3.74.0", "@eggjs/cookies": "^3.0.1", - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "@modelcontextprotocol/sdk": "^1.23.0", "is-type-of": "^1.2.1", "path-to-regexp": "^1.8.0", diff --git a/core/core-decorator/CHANGELOG.md b/core/core-decorator/CHANGELOG.md index 7746a80e..bd286487 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/core-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/core-decorator diff --git a/core/core-decorator/package.json b/core/core-decorator/package.json index 31581f77..69925b91 100644 --- a/core/core-decorator/package.json +++ b/core/core-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/core-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg core decorator", "keywords": [ "egg", @@ -36,8 +36,8 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "reflect-metadata": "^0.1.13" }, "publishConfig": { diff --git a/core/dal-decorator/CHANGELOG.md b/core/dal-decorator/CHANGELOG.md index 1128082d..4a6e57c9 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/dal-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/dal-decorator diff --git a/core/dal-decorator/package.json b/core/dal-decorator/package.json index 47c385c3..7f2adbb2 100644 --- a/core/dal-decorator/package.json +++ b/core/dal-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/dal-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg dal decorator", "keywords": [ "egg", @@ -37,9 +37,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-types": "^3.74.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 459a319a..6c2c0b5d 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/dal-runtime + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/dal-runtime diff --git a/core/dal-runtime/package.json b/core/dal-runtime/package.json index 58109ac1..af534a41 100644 --- a/core/dal-runtime/package.json +++ b/core/dal-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/dal-runtime", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg dal decorator", "keywords": [ "egg", @@ -40,8 +40,8 @@ }, "dependencies": { "@eggjs/rds": "^1.0.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-types": "^3.74.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 0c9e43a2..11a80978 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-dynamic-inject-runtime + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 616ba30d..2d76e995 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.73.0", + "version": "3.74.0", "description": "tegg dyniamic inject", "main": "dist/index.js", "eggModule": { @@ -42,17 +42,17 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-dynamic-inject": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-dynamic-inject": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", + "@eggjs/module-test-util": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.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 57610dc4..833b63d4 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-dynamic-inject + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 17b30589..48f926bf 100644 --- a/core/dynamic-inject/package.json +++ b/core/dynamic-inject/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-dynamic-inject", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg dyniamic inject", "main": "dist/index.js", "files": [ @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/core/eventbus-decorator/CHANGELOG.md b/core/eventbus-decorator/CHANGELOG.md index 6d528d31..f0342efb 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/eventbus-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/eventbus-decorator diff --git a/core/eventbus-decorator/package.json b/core/eventbus-decorator/package.json index aa223f77..be90dcc3 100644 --- a/core/eventbus-decorator/package.json +++ b/core/eventbus-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/eventbus-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg eventbus decorator", "keywords": [ "egg", @@ -34,9 +34,9 @@ "directory": "core/eventbus-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "typed-emitter": "^1.3.1" }, "engines": { diff --git a/core/eventbus-runtime/CHANGELOG.md b/core/eventbus-runtime/CHANGELOG.md index 995f4b61..05893db3 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-eventbus-runtime + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 c5c66f99..51ed4924 100644 --- a/core/eventbus-runtime/package.json +++ b/core/eventbus-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-eventbus-runtime", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg eventbus runtime", "keywords": [ "egg", @@ -37,11 +37,11 @@ "directory": "core/eventbus-runtime" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/eventbus-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/eventbus-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "await-event": "^2.1.0", "await-first": "^1.0.0" }, @@ -49,8 +49,8 @@ "node": ">=14.0.0" }, "devDependencies": { - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "coffee": "^5.4.0", diff --git a/core/langchain-decorator/CHANGELOG.md b/core/langchain-decorator/CHANGELOG.md index f754c5ec..71ecd39b 100644 --- a/core/langchain-decorator/CHANGELOG.md +++ b/core/langchain-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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-langchain-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-langchain-decorator diff --git a/core/langchain-decorator/package.json b/core/langchain-decorator/package.json index 2d1e824c..974970d0 100644 --- a/core/langchain-decorator/package.json +++ b/core/langchain-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-langchain-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg langchain decorator", "main": "dist/index.js", "files": [ @@ -36,10 +36,10 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "@langchain/community": "^1.0.5", "@langchain/core": "^1.1.1", "@langchain/langgraph": "^1.0.2", diff --git a/core/lifecycle/CHANGELOG.md b/core/lifecycle/CHANGELOG.md index 42be7fd0..e0df3126 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-lifecycle + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-lifecycle diff --git a/core/lifecycle/package.json b/core/lifecycle/package.json index 12dae08d..5016fdd3 100644 --- a/core/lifecycle/package.json +++ b/core/lifecycle/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-lifecycle", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg lifecycle definition", "keywords": [ "egg", @@ -39,8 +39,8 @@ "access": "public" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/core/loader/CHANGELOG.md b/core/loader/CHANGELOG.md index fbfc34a4..e2c70e3e 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-loader + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-loader diff --git a/core/loader/package.json b/core/loader/package.json index 9316f52d..7a919405 100644 --- a/core/loader/package.json +++ b/core/loader/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-loader", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg default loader implement", "keywords": [ "egg", @@ -36,9 +36,9 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "globby": "^11.1.0", "is-type-of": "^1.2.1" }, diff --git a/core/mcp-client/CHANGELOG.md b/core/mcp-client/CHANGELOG.md index 147df9cd..b4aaf77e 100644 --- a/core/mcp-client/CHANGELOG.md +++ b/core/mcp-client/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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/mcp-client + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/mcp-client diff --git a/core/mcp-client/package.json b/core/mcp-client/package.json index 9e48fbae..679c96c5 100644 --- a/core/mcp-client/package.json +++ b/core/mcp-client/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/mcp-client", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg mcp client", "main": "dist/index.js", "files": [ diff --git a/core/metadata/CHANGELOG.md b/core/metadata/CHANGELOG.md index 5a691722..3f34995a 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-metadata + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-metadata diff --git a/core/metadata/package.json b/core/metadata/package.json index e878c548..dd2b7bed 100644 --- a/core/metadata/package.json +++ b/core/metadata/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-metadata", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg metadata", "keywords": [ "egg", @@ -35,10 +35,10 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "egg-errors": "^2.2.3" }, "devDependencies": { diff --git a/core/orm-decorator/CHANGELOG.md b/core/orm-decorator/CHANGELOG.md index 2d21c757..0a943652 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-orm-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 dcdfffba..e99e0aad 100644 --- a/core/orm-decorator/package.json +++ b/core/orm-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-orm-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg orm decorator", "main": "dist/index.js", "files": [ @@ -36,10 +36,10 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "lodash": "^4.17.21", "pluralize": "^8.0.0" }, diff --git a/core/runtime/CHANGELOG.md b/core/runtime/CHANGELOG.md index 82769b57..8495ba0a 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-runtime + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/runtime/package.json b/core/runtime/package.json index 05689d1e..6ee69309 100644 --- a/core/runtime/package.json +++ b/core/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-runtime", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg runtime", "main": "dist/index.js", "files": [ @@ -36,11 +36,11 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/core/schedule-decorator/CHANGELOG.md b/core/schedule-decorator/CHANGELOG.md index 750fbde4..1cb04cc6 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-schedule-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 f26a74f1..cf0db250 100644 --- a/core/schedule-decorator/package.json +++ b/core/schedule-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-schedule-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg schedule decorator", "main": "dist/index.js", "files": [ @@ -35,10 +35,10 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "cron-parser": "^2.18.0" }, "devDependencies": { diff --git a/core/standalone-decorator/CHANGELOG.md b/core/standalone-decorator/CHANGELOG.md index 26956b6f..a1b1f2f9 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/standalone-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/standalone-decorator diff --git a/core/standalone-decorator/package.json b/core/standalone-decorator/package.json index 4b009456..2e678203 100644 --- a/core/standalone-decorator/package.json +++ b/core/standalone-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/standalone-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg standalone decorator", "keywords": [ "egg", @@ -36,7 +36,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.73.0", + "@eggjs/tegg-common-util": "^3.74.0", "reflect-metadata": "^0.1.13" }, "publishConfig": { diff --git a/core/tegg/CHANGELOG.md b/core/tegg/CHANGELOG.md index cd9358ea..4b205d31 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/tegg/package.json b/core/tegg/package.json index 0efec463..6120d163 100644 --- a/core/tegg/package.json +++ b/core/tegg/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg decorator packages", "keywords": [ "egg", @@ -35,25 +35,25 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/agent-runtime": "^3.73.0", - "@eggjs/ajv-decorator": "^3.73.0", - "@eggjs/aop-decorator": "^3.73.0", - "@eggjs/controller-decorator": "^3.73.0", - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/dal-decorator": "^3.73.0", - "@eggjs/eventbus-decorator": "^3.73.0", - "@eggjs/standalone-decorator": "^3.73.0", - "@eggjs/tegg-background-task": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-dynamic-inject": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-orm-decorator": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", - "@eggjs/tegg-schedule-decorator": "^3.73.0", - "@eggjs/tegg-transaction-decorator": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/agent-runtime": "^3.74.0", + "@eggjs/ajv-decorator": "^3.74.0", + "@eggjs/aop-decorator": "^3.74.0", + "@eggjs/controller-decorator": "^3.74.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/dal-decorator": "^3.74.0", + "@eggjs/eventbus-decorator": "^3.74.0", + "@eggjs/standalone-decorator": "^3.74.0", + "@eggjs/tegg-background-task": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-dynamic-inject": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-orm-decorator": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", + "@eggjs/tegg-schedule-decorator": "^3.74.0", + "@eggjs/tegg-transaction-decorator": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0" }, "peerDependencies": { "@eggjs/tegg-dal-plugin": "^3.60.1" diff --git a/core/test-util/CHANGELOG.md b/core/test-util/CHANGELOG.md index f6ae31ab..fecaefb7 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/module-test-util + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 3f1c3c06..917381be 100644 --- a/core/test-util/package.json +++ b/core/test-util/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/module-test-util", - "version": "3.73.0", + "version": "3.74.0", "private": true, "description": "module test util", "keywords": [ @@ -35,11 +35,11 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", "globby": "^11.1.0", "mm": "^3.2.1" }, diff --git a/core/transaction-decorator/CHANGELOG.md b/core/transaction-decorator/CHANGELOG.md index f95a2de5..2cc2bf48 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-transaction-decorator + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **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 b8d9c237..926d3db3 100644 --- a/core/transaction-decorator/package.json +++ b/core/transaction-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-transaction-decorator", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg transaction decorator", "keywords": [ "egg", @@ -17,10 +17,10 @@ "directory": "core/transaction-decorator" }, "dependencies": { - "@eggjs/core-decorator": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0" + "@eggjs/core-decorator": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-types": "^3.74.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 06b23dcc..f51d279b 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-types + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/types/package.json b/core/types/package.json index e7eb03ee..9dc6f133 100644 --- a/core/types/package.json +++ b/core/types/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-types", - "version": "3.73.0", + "version": "3.74.0", "description": "tegg types", "keywords": [ "egg", diff --git a/core/vitest/CHANGELOG.md b/core/vitest/CHANGELOG.md index ca391a94..c6692f3e 100644 --- a/core/vitest/CHANGELOG.md +++ b/core/vitest/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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-vitest + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/core/vitest/package.json b/core/vitest/package.json index 65388545..9bca35ae 100644 --- a/core/vitest/package.json +++ b/core/vitest/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-vitest", - "version": "3.73.0", + "version": "3.74.0", "description": "Vitest adapter for tegg context injection", "keywords": [ "egg", diff --git a/lerna.json b/lerna.json index 59106db7..ab707879 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "useWorkspaces": true, - "version": "3.73.0", + "version": "3.74.0", "npmClientArgs": [ "--package-lock=false" ], diff --git a/plugin/ajv/CHANGELOG.md b/plugin/ajv/CHANGELOG.md index c8124c42..8dac6164 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-ajv-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-ajv-plugin diff --git a/plugin/ajv/package.json b/plugin/ajv/package.json index 8f3a2dae..54d5d96b 100644 --- a/plugin/ajv/package.json +++ b/plugin/ajv/package.json @@ -10,7 +10,7 @@ "eggModule": { "name": "teggAjv" }, - "version": "3.73.0", + "version": "3.74.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.73.0", + "@eggjs/tegg": "^3.74.0", "@sinclair/typebox": "^0.32.20", "ajv": "^8.12.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-controller-plugin": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-controller-plugin": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.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 5088fb71..26cc23dd 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-aop-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-aop-plugin diff --git a/plugin/aop/package.json b/plugin/aop/package.json index 0be50b11..f615ea12 100644 --- a/plugin/aop/package.json +++ b/plugin/aop/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-aop-plugin", - "version": "3.73.0", + "version": "3.74.0", "eggPlugin": { "name": "aopModule", "dependencies": [ @@ -42,15 +42,15 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/aop-decorator": "^3.73.0", - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-aop-runtime": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0" + "@eggjs/aop-decorator": "^3.74.0", + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-aop-runtime": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.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 df04689d..09b553d2 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/egg-module-common + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/egg-module-common diff --git a/plugin/common/package.json b/plugin/common/package.json index 2265351f..a9903a7c 100644 --- a/plugin/common/package.json +++ b/plugin/common/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/egg-module-common", - "version": "3.73.0", + "version": "3.74.0", "description": "common module", "keywords": [ "egg", diff --git a/plugin/config/CHANGELOG.md b/plugin/config/CHANGELOG.md index 97e3a333..e406652c 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-config + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-config diff --git a/plugin/config/package.json b/plugin/config/package.json index 8a6c734d..783ed169 100644 --- a/plugin/config/package.json +++ b/plugin/config/package.json @@ -3,7 +3,7 @@ "eggPlugin": { "name": "teggConfig" }, - "version": "3.73.0", + "version": "3.74.0", "description": "module config plugin for egg", "keywords": [ "egg", @@ -43,7 +43,7 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/tegg-common-util": "^3.73.0" + "@eggjs/tegg-common-util": "^3.74.0" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/plugin/controller/CHANGELOG.md b/plugin/controller/CHANGELOG.md index 34a509e4..139f55d6 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-controller-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/plugin/controller/package.json b/plugin/controller/package.json index a3f3d012..2792a439 100644 --- a/plugin/controller/package.json +++ b/plugin/controller/package.json @@ -7,7 +7,7 @@ "tegg" ] }, - "version": "3.73.0", + "version": "3.74.0", "description": "controller decorator for egg", "keywords": [ "egg", @@ -48,14 +48,14 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/agent-runtime": "^3.73.0", - "@eggjs/egg-module-common": "^3.73.0", + "@eggjs/agent-runtime": "^3.74.0", + "@eggjs/egg-module-common": "^3.74.0", "@eggjs/router": "^2.0.1", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", "@modelcontextprotocol/sdk": "^1.23.0", "await-event": "^2.1.0", "content-type": "^1.0.5", @@ -68,9 +68,9 @@ "zod": "^4.0.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.73.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/module-test-util": "^3.74.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.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 a72902c3..878aaf43 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-dal-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-dal-plugin diff --git a/plugin/dal/package.json b/plugin/dal/package.json index b4f7365a..03d5121b 100644 --- a/plugin/dal/package.json +++ b/plugin/dal/package.json @@ -10,7 +10,7 @@ "eggModule": { "name": "teggDal" }, - "version": "3.73.0", + "version": "3.74.0", "description": "dal plugin for egg", "main": "index.js", "keywords": [ @@ -52,12 +52,12 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/dal-runtime": "^3.73.0" + "@eggjs/dal-runtime": "^3.74.0" }, "devDependencies": { - "@eggjs/tegg-aop-plugin": "^3.73.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-aop-plugin": "^3.74.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/dns-cache/CHANGELOG.md b/plugin/dns-cache/CHANGELOG.md index 79ad2ebe..b307694a 100644 --- a/plugin/dns-cache/CHANGELOG.md +++ b/plugin/dns-cache/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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-dns-cache + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-dns-cache diff --git a/plugin/dns-cache/package.json b/plugin/dns-cache/package.json index f4027584..59ac8a72 100644 --- a/plugin/dns-cache/package.json +++ b/plugin/dns-cache/package.json @@ -6,7 +6,7 @@ "tegg" ] }, - "version": "3.73.0", + "version": "3.74.0", "types": "typings/index.d.ts", "description": "tegg dns cache plugin", "keywords": [ @@ -62,12 +62,12 @@ "egg": ">=3.32.0" }, "dependencies": { - "@eggjs/tegg": "^3.73.0", + "@eggjs/tegg": "^3.74.0", "ylru": "^2.0.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.0", "@types/mocha": "^10.0.10", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/eventbus/CHANGELOG.md b/plugin/eventbus/CHANGELOG.md index 8a1b255a..8377038f 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-eventbus-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-eventbus-plugin diff --git a/plugin/eventbus/package.json b/plugin/eventbus/package.json index 8e042aba..10b844a2 100644 --- a/plugin/eventbus/package.json +++ b/plugin/eventbus/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/tegg-eventbus-plugin", - "version": "3.73.0", + "version": "3.74.0", "eggPlugin": { "name": "eventbusModule", "strict": false, @@ -48,16 +48,16 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-eventbus-runtime": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0" + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-eventbus-runtime": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0" }, "devDependencies": { - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "await-event": "^2.1.0", diff --git a/plugin/langchain/CHANGELOG.md b/plugin/langchain/CHANGELOG.md index ca0c194f..5bd2178e 100644 --- a/plugin/langchain/CHANGELOG.md +++ b/plugin/langchain/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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-langchain + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-langchain diff --git a/plugin/langchain/package.json b/plugin/langchain/package.json index 0a929cd1..b238ea0d 100644 --- a/plugin/langchain/package.json +++ b/plugin/langchain/package.json @@ -10,7 +10,7 @@ "name": "teggLangChain" }, "main": "index.js", - "version": "3.73.0", + "version": "3.74.0", "description": "langchain for egg", "keywords": [ "egg", @@ -55,16 +55,16 @@ "node": ">=18.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/mcp-client": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-langchain-decorator": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-mcp-client": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/mcp-client": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-langchain-decorator": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-mcp-client": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", "@langchain/community": "^1.0.0", "@langchain/core": "^1.1.1", "@langchain/langgraph": "^1.0.2", @@ -78,11 +78,11 @@ "zod": "^4.0.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.73.0", + "@eggjs/module-test-util": "^3.74.0", "@eggjs/router": "^2.0.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-controller-plugin": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-controller-plugin": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/mcp-client/CHANGELOG.md b/plugin/mcp-client/CHANGELOG.md index 80498b66..eeac0872 100644 --- a/plugin/mcp-client/CHANGELOG.md +++ b/plugin/mcp-client/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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-mcp-client + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) diff --git a/plugin/mcp-client/package.json b/plugin/mcp-client/package.json index 9448ae84..906047f5 100644 --- a/plugin/mcp-client/package.json +++ b/plugin/mcp-client/package.json @@ -10,7 +10,7 @@ "name": "teggMcpClient" }, "main": "index.js", - "version": "3.73.0", + "version": "3.74.0", "description": "mcp client for egg", "keywords": [ "egg", @@ -55,25 +55,25 @@ "node": ">=18.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/mcp-client": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/mcp-client": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", "@types/koa-router": "^7.0.40", "koa-compose": "^3.2.1", "sdk-base": "^4.2.0", "urllib": "^4.4.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.73.0", + "@eggjs/module-test-util": "^3.74.0", "@eggjs/router": "^2.0.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-controller-plugin": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-controller-plugin": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/mcp-proxy/CHANGELOG.md b/plugin/mcp-proxy/CHANGELOG.md index 70fd29cb..43d35916 100644 --- a/plugin/mcp-proxy/CHANGELOG.md +++ b/plugin/mcp-proxy/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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/mcp-proxy + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/mcp-proxy diff --git a/plugin/mcp-proxy/package.json b/plugin/mcp-proxy/package.json index ceb4b734..cb242a31 100644 --- a/plugin/mcp-proxy/package.json +++ b/plugin/mcp-proxy/package.json @@ -1,6 +1,6 @@ { "name": "@eggjs/mcp-proxy", - "version": "3.73.0", + "version": "3.74.0", "eggPlugin": { "name": "mcpProxy" }, @@ -51,8 +51,8 @@ }, "dependencies": { "@eggjs/core": "^6.5.0", - "@eggjs/tegg-controller-plugin": "^3.73.0", - "@eggjs/tegg-types": "^3.73.0", + "@eggjs/tegg-controller-plugin": "^3.74.0", + "@eggjs/tegg-types": "^3.74.0", "@modelcontextprotocol/sdk": "^1.23.0", "await-event": "^2.1.0", "cluster-client": "^3.7.0", @@ -63,12 +63,12 @@ "zod": "^4.0.0" }, "devDependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-aop-runtime": "^3.73.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-aop-runtime": "^3.74.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3", diff --git a/plugin/orm/CHANGELOG.md b/plugin/orm/CHANGELOG.md index 2eb6cd9b..e97c92eb 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-orm-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-orm-plugin diff --git a/plugin/orm/package.json b/plugin/orm/package.json index 42a5ff2c..78e47dc2 100644 --- a/plugin/orm/package.json +++ b/plugin/orm/package.json @@ -6,7 +6,7 @@ "tegg" ] }, - "version": "3.73.0", + "version": "3.74.0", "description": "orm decorator for egg", "keywords": [ "egg", @@ -48,24 +48,24 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-orm-decorator": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-orm-decorator": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", "@types/koa-router": "^7.0.40", "koa-compose": "^3.2.1", "leoric": "2.13.8", "sdk-base": "^4.2.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.73.0", + "@eggjs/module-test-util": "^3.74.0", "@eggjs/router": "^2.0.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.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 05970130..2498e97a 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-schedule-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-schedule-plugin diff --git a/plugin/schedule/package.json b/plugin/schedule/package.json index 9226b8e7..1ce8c34a 100644 --- a/plugin/schedule/package.json +++ b/plugin/schedule/package.json @@ -7,7 +7,7 @@ "schedule" ] }, - "version": "3.73.0", + "version": "3.74.0", "description": "schedule decorator for egg", "keywords": [ "egg", @@ -49,19 +49,19 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", - "@eggjs/tegg-schedule-decorator": "^3.73.0" + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", + "@eggjs/tegg-schedule-decorator": "^3.74.0" }, "devDependencies": { - "@eggjs/module-test-util": "^3.73.0", - "@eggjs/tegg-config": "^3.73.0", - "@eggjs/tegg-plugin": "^3.73.0", + "@eggjs/module-test-util": "^3.74.0", + "@eggjs/tegg-config": "^3.74.0", + "@eggjs/tegg-plugin": "^3.74.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 5a9ffda6..278d6628 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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-plugin + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-plugin diff --git a/plugin/tegg/package.json b/plugin/tegg/package.json index 794e494a..3f183a8d 100644 --- a/plugin/tegg/package.json +++ b/plugin/tegg/package.json @@ -6,7 +6,7 @@ "teggConfig" ] }, - "version": "3.73.0", + "version": "3.74.0", "description": "module plugin for egg", "keywords": [ "egg", @@ -45,21 +45,21 @@ "node": ">=14.0.0" }, "dependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-background-task": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-dynamic-inject-runtime": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0", + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-background-task": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-dynamic-inject-runtime": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0", "await-event": "^2.1.0", "await-first": "^1.0.0", "extend2": "^1.0.0", "sdk-base": "^4.2.0" }, "devDependencies": { - "@eggjs/tegg-config": "^3.73.0", + "@eggjs/tegg-config": "^3.74.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 1fd4aa0e..5875fa3c 100644 --- a/standalone/standalone/CHANGELOG.md +++ b/standalone/standalone/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.74.0](https://github.com/eggjs/tegg/compare/v3.73.0...v3.74.0) (2026-03-30) + +**Note:** Version bump only for package @eggjs/tegg-standalone + + + + + # [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25) **Note:** Version bump only for package @eggjs/tegg-standalone diff --git a/standalone/standalone/package.json b/standalone/standalone/package.json index adf9bb8b..7b55275f 100644 --- a/standalone/standalone/package.json +++ b/standalone/standalone/package.json @@ -1,7 +1,7 @@ { "name": "@eggjs/tegg-standalone", "description": "tegg standalone", - "version": "3.73.0", + "version": "3.74.0", "keywords": [ "egg", "typescript", @@ -38,23 +38,23 @@ "author": "killagu ", "license": "MIT", "dependencies": { - "@eggjs/egg-module-common": "^3.73.0", - "@eggjs/tegg": "^3.73.0", - "@eggjs/tegg-aop-runtime": "^3.73.0", - "@eggjs/tegg-background-task": "^3.73.0", - "@eggjs/tegg-common-util": "^3.73.0", - "@eggjs/tegg-dal-plugin": "^3.73.0", - "@eggjs/tegg-dynamic-inject-runtime": "^3.73.0", - "@eggjs/tegg-lifecycle": "^3.73.0", - "@eggjs/tegg-loader": "^3.73.0", - "@eggjs/tegg-metadata": "^3.73.0", - "@eggjs/tegg-runtime": "^3.73.0" + "@eggjs/egg-module-common": "^3.74.0", + "@eggjs/tegg": "^3.74.0", + "@eggjs/tegg-aop-runtime": "^3.74.0", + "@eggjs/tegg-background-task": "^3.74.0", + "@eggjs/tegg-common-util": "^3.74.0", + "@eggjs/tegg-dal-plugin": "^3.74.0", + "@eggjs/tegg-dynamic-inject-runtime": "^3.74.0", + "@eggjs/tegg-lifecycle": "^3.74.0", + "@eggjs/tegg-loader": "^3.74.0", + "@eggjs/tegg-metadata": "^3.74.0", + "@eggjs/tegg-runtime": "^3.74.0" }, "publishConfig": { "access": "public" }, "devDependencies": { - "@eggjs/tegg-ajv-plugin": "^3.73.0", + "@eggjs/tegg-ajv-plugin": "^3.74.0", "@types/mocha": "^10.0.1", "@types/node": "^20.2.4", "cross-env": "^7.0.3",