Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
569241e
fix: correct JUnit 5 lifecycle method visibility
contrueCT Sep 13, 2025
13b93a3
Fix JUnit 5 lifecycle method visibility in changelog
contrueCT Sep 13, 2025
85f24e2
Fix JUnit 5 lifecycle method visibility in changelog
contrueCT Sep 13, 2025
0e3d952
Merge remote-tracking branch 'origin/patch-1' into 2.x
contrueCT Sep 13, 2025
aa5114a
Merge remote-tracking branch 'origin/patch-2' into 2.x
contrueCT Sep 13, 2025
a7d4b12
Update pull request reference in 2.x.md
contrueCT Sep 13, 2025
6554f46
Update pull request reference in 2.x.md
contrueCT Sep 13, 2025
b4dfb3a
fix: correct JUnit test method access modifiers and annotations
contrueCT Sep 14, 2025
c518bb3
Merge remote-tracking branch 'origin/2.x' into 2.x
contrueCT Sep 14, 2025
6f7990c
fix JUnit test method access modifiers and annotations in changelog
contrueCT Sep 15, 2025
ad95dfc
refactor: migrate EtcdRegistryServiceImplTest from JUnit 4 to JUnit 5
contrueCT Sep 15, 2025
53dfaa2
Merge branch '2.x' into 2.x
xingfudeshi Sep 18, 2025
033c627
fix: format code by spotless
contrueCT Sep 18, 2025
dab561a
Merge remote-tracking branch 'origin/2.x' into 2.x
contrueCT Sep 18, 2025
3cf788e
Merge branch '2.x' into 2.x
contrueCT Sep 18, 2025
9d2baee
Merge branch '2.x' into 2.x
contrueCT Sep 23, 2025
54f9a30
Merge branch '2.x' into 2.x
xingfudeshi Sep 24, 2025
6e403e3
fix: correct updateSql assignment in DATE_TYPE and BINARY_TYPE test c…
contrueCT Sep 24, 2025
4117cd8
Merge remote-tracking branch 'origin/2.x' into 2.x
contrueCT Sep 24, 2025
6c2af4e
Merge branch '2.x' into 2.x
slievrly Sep 29, 2025
7adbefb
Merge branch '2.x' into 2.x
contrueCT Oct 16, 2025
1716ed2
Merge branch '2.x' into 2.x
slievrly Oct 17, 2025
ac9973c
Merge branch '2.x' into 2.x
YongGoose Oct 17, 2025
9d2a0b3
fix:fix the Spotless issues
contrueCT Oct 18, 2025
44011fd
fix:fix the Spotless issues
contrueCT Oct 18, 2025
2c9e734
Merge branch '2.x' into 2.x
contrueCT Oct 18, 2025
3d4a837
Merge branch '2.x' into 2.x
YongGoose Oct 23, 2025
4c7bf9d
Merge branch '2.x' into 2.x
contrueCT Oct 26, 2025
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
2 changes: 2 additions & 0 deletions changes/en-us/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Add changes here for all PR submitted to the 2.x branch.

### test:

- [[#7635](https://github.com/apache/incubator-seata/pull/7635)] fix: correct JUnit 5 lifecycle method visibility
- [[#7541](https://github.com/seata/seata/pull/7541)] fix jakarta UT failed in jdk17+
- [[#7540](https://github.com/seata/seata/pull/7540)] fix port of mock server
- [[#7580](https://github.com/seata/seata/pull/7580)] fix the exception caused by the disorder of test case execution order
Expand Down Expand Up @@ -93,6 +94,7 @@ Thanks to these contributors for their code commits. Please report an unintended
- [sunheyi6](https://github.com/sunheyi6)
- [WangzJi](https://github.com/WangzJi)
- [Asuka-star](https://github.com/Asuka-star)
- [contrueCT](https://github.com/contrueCT)


Also, we receive many valuable issues, questions and advices from our community. Thanks for you all.
2 changes: 2 additions & 0 deletions changes/zh-cn/2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@

### test:

- [[#7635](https://github.com/apache/incubator-seata/pull/7635)] 修正 JUnit 5 生命周期方法的可见性
- [[#7541](https://github.com/seata/seata/pull/7541)] 修复 jakarta 依赖在 jdk17+ 单测失败问题
- [[#7540](https://github.com/seata/seata/pull/7540)] 修复mock server端口冲突问题
- [[#7578](https://github.com/seata/seata/pull/7578)] zstd解压由jni改为ZstdInputStream
Expand Down Expand Up @@ -93,6 +94,7 @@
- [sunheyi6](https://github.com/sunheyi6)
- [WangzJi](https://github.com/WangzJi)
- [Asuka-star](https://github.com/Asuka-star)
- [contrueCT](https://github.com/contrueCT)


同时,我们收到了社区反馈的很多有价值的issue和建议,非常感谢大家。
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static void stop() {
}

@BeforeEach
private void prepareTable() {
public void prepareTable() {
execSQL("DROP TABLE IF EXISTS table_name");
execSQL("CREATE TABLE table_name ( `id` int(8), `name` varchar(64), PRIMARY KEY (`id`))");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class ParameterParserTest extends BaseSpringBootTest {
* init
*/
@BeforeEach
private void init() {
public void init() {
String[] args = new String[] {"-h", "127.0.0.1", "-p", "8088", "-m", "file", "-e", "test"};
parameterParser = new ParameterParser(args);
}
Expand Down
Loading