@@ -12,7 +12,7 @@ Refer to the table below to determine the appropriate version of r2dbc-mysql for
1212
1313| spring-boot-starter-data-r2dbc | spring-data-r2dbc | r2dbc-spi | r2dbc-mysql(recommended) |
1414| --------------------------------| -------------------| ---------------| ------------------------------|
15- | 3.0.* and above | 3.0.* and above | 1.0.0.RELEASE | io.asyncer:r2dbc-mysql:1.0.6 |
15+ | 3.0.* and above | 3.0.* and above | 1.0.0.RELEASE | io.asyncer:r2dbc-mysql:1.1.0 |
1616| 2.7.* | 1.5.* | 0.9.1.RELEASE | io.asyncer:r2dbc-mysql:0.9.7 |
1717| 2.6.* and below | 1.4.* and below | 0.8.6.RELEASE | dev.miku:r2dbc-mysql:0.8.2 |
1818
@@ -59,7 +59,7 @@ However, Docker-certified images do not have these versions lower than 5.5.0, so
5959<dependency >
6060 <groupId >io.asyncer</groupId >
6161 <artifactId >r2dbc-mysql</artifactId >
62- <version >1.0.6 </version >
62+ <version >1.1.0 </version >
6363</dependency >
6464```
6565
@@ -69,7 +69,7 @@ However, Docker-certified images do not have these versions lower than 5.5.0, so
6969
7070``` groovy
7171dependencies {
72- implementation 'io.asyncer:r2dbc-mysql:1.0.6 '
72+ implementation 'io.asyncer:r2dbc-mysql:1.1.0 '
7373}
7474```
7575
@@ -78,7 +78,7 @@ dependencies {
7878``` kotlin
7979dependencies {
8080 // Maybe should to use `compile` instead of `implementation` on the lower version of Gradle.
81- implementation(" io.asyncer:r2dbc-mysql:1.0.6 " )
81+ implementation(" io.asyncer:r2dbc-mysql:1.1.0 " )
8282}
8383```
8484
@@ -100,7 +100,7 @@ ConnectionFactory connectionFactory = ConnectionFactories.get(
100100 " sslKey=%2Fpath%2Fto%2Fmysql%2Fclient-key.pem&" +
101101 " sslCert=%2Fpath%2Fto%2Fmysql%2Fclient-cert.pem&" +
102102 " sslKeyPassword=key-pem-password-in-here"
103- )
103+ );
104104
105105// Creating a Mono using Project Reactor
106106Mono<Connection > connectionMono = Mono . from(connectionFactory. create());
@@ -112,7 +112,7 @@ Or use unix domain socket like following:
112112
113113``` java
114114// Minimum configuration for unix domain socket
115- ConnectionFactory connectionFactory = ConnectionFactories . get(" r2dbc:mysql://root@unix?unixSocket=%2Fpath%2Fto%2Fmysql.sock" )
115+ ConnectionFactory connectionFactory = ConnectionFactories . get(" r2dbc:mysql://root@unix?unixSocket=%2Fpath%2Fto%2Fmysql.sock" );
116116
117117Mono<Connection > connectionMono = Mono . from(connectionFactory. create());
118118```
@@ -140,7 +140,7 @@ ConnectionFactoryOptions options = ConnectionFactoryOptions.builder()
140140 .option(Option . valueOf(" sslContextBuilderCustomizer" ), " com.example.demo.MyCustomizer" ) // optional, default is no-op customizer
141141 .option(Option . valueOf(" zeroDate" ), " use_null" ) // optional, default "use_null"
142142 .option(Option . valueOf(" useServerPrepareStatement" ), true ) // optional, default false
143- .option(Option . valueOf(" allowLoadLocalInfileInPath" ), " /opt" ) // optional, default null, null means LOCAL INFILE not be allowed
143+ .option(Option . valueOf(" allowLoadLocalInfileInPath" ), " /opt" ) // optional, default null, null means LOCAL INFILE not be allowed (since 1.1.0)
144144 .option(Option . valueOf(" tcpKeepAlive" ), true ) // optional, default false
145145 .option(Option . valueOf(" tcpNoDelay" ), true ) // optional, default false
146146 .option(Option . valueOf(" autodetectExtensions" ), false ) // optional, default false
0 commit comments