Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))





Comment on lines +21 to +24
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25)


Expand Down
11 changes: 11 additions & 0 deletions core/agent-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.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))





Comment on lines +13 to +16
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25)


Expand Down
4 changes: 2 additions & 2 deletions core/agent-runtime/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
},
Expand Down
18 changes: 18 additions & 0 deletions core/agent-tracing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Comment on lines +9 to +18
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix markdown heading levels.

The subsection headings (### Bug Fixes and ### Features) should use h2 (##) instead of h3 (###) to follow proper markdown hierarchy. After an h1 heading (#), the next level should be h2, not h3.

📝 Proposed fix for heading levels
 
-### Bug Fixes
+## 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
+## 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))
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
### 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))
## 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))
🧰 Tools
🪛 markdownlint-cli2 (0.22.0)

[warning] 9-9: Heading levels should only increment by one level at a time
Expected: h2; Actual: h3

(MD001, heading-increment)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@core/agent-tracing/CHANGELOG.md` around lines 9 - 18, Update the markdown
headings in core/agent-tracing/CHANGELOG.md by changing the two subsection
headings "### Bug Fixes" and "### Features" to level-2 headings ("## Bug Fixes"
and "## Features") so they correctly follow the top-level H1; edit the lines
containing those exact heading texts and ensure no other heading syntax or
content is altered.






Comment on lines +20 to +23
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25)


Expand Down
10 changes: 5 additions & 5 deletions core/agent-tracing/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -55,9 +55,9 @@
"author": "killagu <killa123@126.com>",
"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": {
Expand All @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions core/ajv-decorator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [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
Expand Down
2 changes: 1 addition & 1 deletion core/ajv-decorator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eggjs/ajv-decorator",
"version": "3.73.0",
"version": "3.74.0",
"description": "tegg ajv decorator",
"keywords": [
"egg",
Expand Down
8 changes: 8 additions & 0 deletions core/aop-decorator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [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
Expand Down
10 changes: 5 additions & 5 deletions core/aop-decorator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eggjs/aop-decorator",
"version": "3.73.0",
"version": "3.74.0",
"description": "tegg aop decorator",
"keywords": [
"tegg",
Expand All @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions core/aop-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [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
Expand Down
20 changes: 10 additions & 10 deletions core/aop-runtime/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions core/background-task/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [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
Expand Down
12 changes: 6 additions & 6 deletions core/background-task/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -37,13 +37,13 @@
"author": "killagu <killa123@126.com>",
"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",
Expand Down
8 changes: 8 additions & 0 deletions core/common-util/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [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
Expand Down
4 changes: 2 additions & 2 deletions core/common-util/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
Expand Down
8 changes: 8 additions & 0 deletions core/controller-decorator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [3.73.0](https://github.com/eggjs/tegg/compare/v3.72.0...v3.73.0) (2026-03-25)


Expand Down
12 changes: 6 additions & 6 deletions core/controller-decorator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eggjs/controller-decorator",
"version": "3.73.0",
"version": "3.74.0",
"description": "tegg controller decorator",
"keywords": [
"egg",
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions core/core-decorator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [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
Expand Down
6 changes: 3 additions & 3 deletions core/core-decorator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eggjs/core-decorator",
"version": "3.73.0",
"version": "3.74.0",
"description": "tegg core decorator",
"keywords": [
"egg",
Expand Down Expand Up @@ -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": {
Expand Down
8 changes: 8 additions & 0 deletions core/dal-decorator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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





Comment on lines +10 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These extra blank lines can be removed for better readability.

# [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
Expand Down
Loading
Loading