Skip to content

Commit 789a832

Browse files
committed
Merge branch 'master' into 3.x
2 parents e3ff4f3 + 26d492c commit 789a832

File tree

7 files changed

+21
-14
lines changed

7 files changed

+21
-14
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ MyBatis-Spring adapter is an easy-to-use Spring bridge for MyBatis sql mapping f
1414
Supported Versions
1515
------------------
1616

17-
- master (2.1.x) - Support Spring 6(keep backward compatibility for Spring 5)
17+
- 3.x - Support for Spring 6 and Spring Batch 5 (**not release yet**)
18+
- master (2.1.x) - Enhance and maintenance for Spring 5 and Spring Batch 4 (**not release yet**)
1819
- 2.0.x - Support for Java 8, Spring 5, and Junit 5 plus other java 8 requirements
1920
- 1.3.x - Continued support for Java 6 and 7
2021

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,15 @@
105105
<osgi.import>org.springframework.batch.*;resolution:=optional,*</osgi.import>
106106
<osgi.dynamicImport>*</osgi.dynamicImport>
107107

108-
<mybatis.version>3.5.10</mybatis.version>
108+
<mybatis.version>3.5.11</mybatis.version>
109109
<spring.version>6.0.0-SNAPSHOT</spring.version>
110110
<spring-batch.version>5.0.0-SNAPSHOT</spring-batch.version>
111111
<module.name>org.mybatis.spring</module.name>
112112

113-
<junit.version>5.9.0</junit.version>
114-
<project.build.outputTimestamp>1645112687</project.build.outputTimestamp>
113+
<junit.version>5.9.1</junit.version>
115114

115+
<!-- Reproducible Builds -->
116+
<project.build.outputTimestamp>1757561022</project.build.outputTimestamp>
116117
</properties>
117118

118119
<dependencies>
@@ -218,7 +219,7 @@
218219
<dependency>
219220
<groupId>org.slf4j</groupId>
220221
<artifactId>slf4j-simple</artifactId>
221-
<version>2.0.0</version>
222+
<version>2.0.2</version>
222223
<scope>test</scope>
223224
</dependency>
224225

src/site/es/markdown/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ MyBatis-Spring requires following versions:
2222

2323
| MyBatis-Spring | MyBatis | Spring Framework | Spring Batch | Java |
2424
|----------------| --- |------------------|--------------| --- |
25-
| **2.1** | 3.5+ | 5.0+ | 4.0+ | Java 8+ |
25+
| **3.0** | 3.5+ | 6.0+ | 5.0+ | Java 17+ |
26+
| **2.1** | 3.5+ | 5.x | 4.x | Java 8+ |
2627
| **2.0** | 3.5+ | 5.x | 4.x | Java 8+ |
2728
| **1.3** | 3.4+ | 3.2.2+ | 2.1+ | Java 6+ |
2829

src/site/ja/markdown/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ MyBatis-Spring は以下のバージョンを必要とします。
1717

1818
| MyBatis-Spring | MyBatis | Spring Framework | Spring Batch | Java |
1919
|----------------| --- |------------------|--------------| --- |
20-
| **2.1** | 3.5+ | 5.0+ | 4.0+ | Java 8+ |
20+
| **3.0** | 3.5+ | 6.0+ | 5.0+ | Java 17+ |
21+
| **2.1** | 3.5+ | 5.x | 4.x | Java 8+ |
2122
| **2.0** | 3.5+ | 5.x | 4.x | Java 8+ |
2223
| **1.3** | 3.4+ | 3.2.2+ | 2.1+ | Java 6+ |
2324

src/site/ko/markdown/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ MyBatis-Spring requires following versions:
2020

2121
| MyBatis-Spring | MyBatis | Spring Framework | Spring Batch | Java |
2222
|----------------| --- |------------------|--------------| --- |
23-
| **2.1** | 3.5+ | 5.0+ | 4.0+ | Java 8+ |
23+
| **3.0** | 3.5+ | 6.0+ | 5.0+ | Java 17+ |
24+
| **2.1** | 3.5+ | 5.x | 4.x | Java 8+ |
2425
| **2.0** | 3.5+ | 5.x | 4.x | Java 8+ |
2526
| **1.3** | 3.4+ | 3.2.2+ | 2.1+ | Java 6+ |
2627

src/site/markdown/index.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ This document does not attempt to provide background information or basic setup
1919

2020
MyBatis-Spring requires following versions:
2121

22-
| MyBatis-Spring | MyBatis | Spring Framework | Spring Batch | Java |
23-
|----------------| --- |------------------|--------------| --- |
24-
| **2.1** | 3.5+ | 5.0+ | 4.0+ | Java 8+ |
25-
| **2.0** | 3.5+ | 5.x | 4.x | Java 8+ |
26-
| **1.3** | 3.4+ | 3.2.2+ | 2.1+ | Java 6+ |
22+
| MyBatis-Spring | MyBatis | Spring Framework | Spring Batch | Java |
23+
|----------------| --- |------------------|--------------|----------|
24+
| **3.0** | 3.5+ | 6.0+ | 5.0+ | Java 17+ |
25+
| **2.1** | 3.5+ | 5.x | 4.x | Java 8+ |
26+
| **2.0** | 3.5+ | 5.x | 4.x | Java 8+ |
27+
| **1.3** | 3.4+ | 3.2.2+ | 2.1+ | Java 6+ |
2728

2829
## Acknowledgements
2930

src/site/zh/markdown/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ MyBatis-Spring 需要以下版本:
1919

2020
| MyBatis-Spring | MyBatis | Spring Framework | Spring Batch | Java |
2121
|----------------| --- |------------------|--------------| --- |
22-
| **2.1** | 3.5+ | 5.0+ | 4.0+ | Java 8+ |
22+
| **3.0** | 3.5+ | 6.0+ | 5.0+ | Java 17+ |
23+
| **2.1** | 3.5+ | 5.x | 4.x | Java 8+ |
2324
| **2.0** | 3.5+ | 5.x | 4.x | Java 8+ |
2425
| **1.3** | 3.4+ | 3.2.2+ | 2.1+ | Java 6+ |
2526

0 commit comments

Comments
 (0)