Skip to content

Commit 6982acc

Browse files
authored
Update README (#224)
Motivation: Released 1.1.0 Modifications: Released 1.1.0 Result: up-to-date
1 parent 187265a commit 6982acc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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
7171
dependencies {
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
7979
dependencies {
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
106106
Mono<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

117117
Mono<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

Comments
 (0)