File tree Expand file tree Collapse file tree 4 files changed +24
-7
lines changed
src/test/java/examples/springbatch Expand file tree Collapse file tree 4 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This log will detail notable changes to MyBatis Dynamic SQL. Full details are available on the GitHub milestone pages.
4
4
5
- ## Release 1.1.1
5
+ ## Release 1.1.2 - Unreleased
6
+
7
+ GitHub milestone: [ https://github.com/mybatis/mybatis-dynamic-sql/issues?q=milestone%3A1.1.2+ ] ( https://github.com/mybatis/mybatis-dynamic-sql/issues?q=milestone%3A1.1.2+ )
8
+
9
+ ### Added
10
+
11
+ - Changed the public SQLBuilder API to accept Collection instead of List for in conditions and batch record inserts. This should have no impact on existing code, but allow for some future flexibility
12
+
13
+
14
+ ## Release 1.1.1 - April 7, 2019
6
15
7
16
GitHub milestone: [ https://github.com/mybatis/mybatis-dynamic-sql/issues?q=milestone%3A1.1.1+ ] ( https://github.com/mybatis/mybatis-dynamic-sql/issues?q=milestone%3A1.1.1+ )
8
17
@@ -19,7 +28,7 @@ GitHub milestone: [https://github.com/mybatis/mybatis-dynamic-sql/issues?q=miles
19
28
- Fixed self joins
20
29
21
30
22
- ## Release 1.1.0
31
+ ## Release 1.1.0 - April 24, 2018
23
32
24
33
GitHub milestone: [ https://github.com/mybatis/mybatis-dynamic-sql/issues?q=milestone%3A1.1.0+ ] ( https://github.com/mybatis/mybatis-dynamic-sql/issues?q=milestone%3A1.1.0+ )
25
34
Original file line number Diff line number Diff line change 40
40
<java .version>1.8</java .version>
41
41
<maven .compiler.source>${java.version} </maven .compiler.source>
42
42
<maven .compiler.target>${java.version} </maven .compiler.target>
43
- <junit .jupiter.version>5.4.1 </junit .jupiter.version>
44
- <junit .platform.version>1.4.1 </junit .platform.version>
43
+ <junit .jupiter.version>5.4.2 </junit .jupiter.version>
44
+ <junit .platform.version>1.4.2 </junit .platform.version>
45
45
<spring .batch.version>4.1.2.RELEASE</spring .batch.version>
46
46
<clirr .comparisonVersion>1.1.0</clirr .comparisonVersion>
47
47
<module .name>org.mybatis.dynamic.sql</module .name>
144
144
<dependency >
145
145
<groupId >org.springframework</groupId >
146
146
<artifactId >spring-jdbc</artifactId >
147
- <version >5.1.6 .RELEASE</version >
147
+ <version >5.1.7 .RELEASE</version >
148
148
<scope >test</scope >
149
149
</dependency >
150
150
<dependency >
171
171
<version >1.2.3</version >
172
172
<scope >test</scope >
173
173
</dependency >
174
+ <!-- Hamcrest is only here to make Infinitest happy. Not really used in the project. -->
175
+ <dependency >
176
+ <groupId >org.hamcrest</groupId >
177
+ <artifactId >hamcrest</artifactId >
178
+ <version >2.1</version >
179
+ <scope >test</scope >
180
+ </dependency >
174
181
</dependencies >
175
182
176
183
<scm >
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public SqlSessionFactory sqlSessionFactory(DataSource dataSource) throws Excepti
82
82
}
83
83
84
84
@ Bean
85
- public PlatformTransactionManager dtm (DataSource dataSource ) {
85
+ public PlatformTransactionManager transactionManager (DataSource dataSource ) {
86
86
return new DataSourceTransactionManager (dataSource );
87
87
}
88
88
Original file line number Diff line number Diff line change 45
45
import org .springframework .jdbc .datasource .DataSourceTransactionManager ;
46
46
import org .springframework .jdbc .datasource .embedded .EmbeddedDatabaseBuilder ;
47
47
import org .springframework .jdbc .datasource .embedded .EmbeddedDatabaseType ;
48
+ import org .springframework .transaction .PlatformTransactionManager ;
48
49
49
50
import examples .springbatch .common .Person ;
50
51
import examples .springbatch .mapper .PersonMapper ;
@@ -80,7 +81,7 @@ public SqlSessionFactory sqlSessionFactory(DataSource dataSource) throws Excepti
80
81
}
81
82
82
83
@ Bean
83
- public DataSourceTransactionManager dtm (DataSource dataSource ) {
84
+ public PlatformTransactionManager transactionManager (DataSource dataSource ) {
84
85
return new DataSourceTransactionManager (dataSource );
85
86
}
86
87
You can’t perform that action at this time.
0 commit comments