Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 3 additions & 1 deletion changes/en-us/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ Add changes here for all PR submitted to the 2.x branch.
- [[#7614](https://github.com/seata/seata/pull/7614)] update README.md
- [[#7443](https://github.com/seata/seata/pull/7443)] Replace @LocalTCC with @SagaTransactional in the saga annotation pattern
- [[#7645](https://github.com/seata/seata/pull/7645)] simplifying the relevant transport.* configuration types
- [[#7673](https://github.com/apache/incubator-seata/pull/7673)] bump @babel/runtime from ^7.26.10 to ^7.27.0


### security:

Expand Down Expand Up @@ -99,6 +101,6 @@ Thanks to these contributors for their code commits. Please report an unintended
- [WangzJi](https://github.com/WangzJi)
- [Asuka-star](https://github.com/Asuka-star)
- [YoWuwuuuw](https://github.com/YoWuwuuuw)

- [jihun4452](https://github.com/jihun4452)

Also, we receive many valuable issues, questions and advices from our community. Thanks for you all.
4 changes: 3 additions & 1 deletion changes/zh-cn/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@
- [[#7614](https://github.com/seata/seata/pull/7614)] 更新 README.md
- [[#7443](https://github.com/seata/seata/pull/7443)] 将saga注释模式中的@LocalTCC替换为@SagaTransactional
- [[#7645](https://github.com/seata/seata/pull/7645)] 简化相关的 transport.* 配置项类型
- [[#7673](https://github.com/apache/incubator-seata/pull/7673)] 升级 @babel/runtime ^7.26.10 到 ^7.27.0


### security:

Expand Down Expand Up @@ -100,6 +102,6 @@
- [WangzJi](https://github.com/WangzJi)
- [Asuka-star](https://github.com/Asuka-star)
- [YoWuwuuuw](https://github.com/YoWuwuuuw)

- [jihun4452](https://github.com/jihun4452)

同时,我们收到了社区反馈的很多有价值的issue和建议,非常感谢大家。
49 changes: 5 additions & 44 deletions console/src/main/resources/static/console-fe/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions console/src/main/resources/static/console-fe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@babel/plugin-proposal-decorators": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.26.10",
"@babel/runtime": "^7.27.0",
"@types/lodash": "^4.14.202",
"@types/node": "^13.1.4",
"@types/react": "^16.14.56",
Expand Down Expand Up @@ -106,6 +106,7 @@
"nanoid": "3.1.31",
"ip": "2.0.1",
"sha.js": "2.4.12",
"cipher-base": "1.0.6"
"cipher-base": "1.0.6",
"@babel/runtime": "^7.27.0"
Comment on lines +109 to +110
Copy link

Copilot AI Sep 29, 2025

Choose a reason for hiding this comment

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

The @babel/runtime entry is duplicated - it's already defined in the dependencies section at line 34. This duplication in what appears to be an overrides section could lead to confusion about which version takes precedence.

Suggested change
"cipher-base": "1.0.6",
"@babel/runtime": "^7.27.0"
"cipher-base": "1.0.6"

Copilot uses AI. Check for mistakes.

}
}
Loading