File tree 3 files changed +19
-3
lines changed
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [3.1.3](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.1.3) (Mar 2023)
4
+ [Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.1.2...3.1.3)
5
+
6
+ * CONJ-1054 Threadsafety issue when using CredentialPlugin in v3.x
7
+ * CONJ-1056 JDBC connector reads incorrect data from unix socket when the text is too large
8
+ * CONJ-1057 Wrong decoding of binary time with value "00:00:00"
9
+ * CONJ-1058 JDBC 4.3 org.mariadb.jdbc.Statement enquote* methods implementation @peterhalicky
10
+ * CONJ-1060 BIT default metadata doesn't take care of transformedBitIsBoolean option
11
+ * report 2.7.9 bug fixes CONJ-1062 and CONJ-1063
12
+
13
+ ## [2.7.9](https://github.com/mariadb-corporation/mariadb-connector-j/tree/2.7.9) (Mar 2023)
14
+ [Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/2.7.8...2.7.9)
15
+
16
+ * CONJ-1062 correcting TlsSocketPlugin to use Driver classloader
17
+ * CONJ-1063 DatabaseMetaData.getTypeInfo() returns wrong value for UNSIGNED_ATTRIBUTE
18
+
3
19
## [3.1.2](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.1.2) (Jan 2023)
4
20
[Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.1.1...3.1.2)
5
21
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ or maven :
26
26
<dependency>
27
27
<groupId>org.mariadb.jdbc</groupId>
28
28
<artifactId>mariadb-java-client</artifactId>
29
- <version>3.1.2 </version>
29
+ <version>3.1.3 </version>
30
30
</dependency>
31
31
```
32
32
@@ -45,7 +45,7 @@ Development snapshot are available on sonatype nexus repository
45
45
<dependency>
46
46
<groupId>org.mariadb.jdbc</groupId>
47
47
<artifactId>mariadb-java-client</artifactId>
48
- <version>3.1.3 -SNAPSHOT</version>
48
+ <version>3.1.4 -SNAPSHOT</version>
49
49
</dependency>
50
50
</dependencies>
51
51
```
Original file line number Diff line number Diff line change 7
7
<artifactId>mariadb-java-client</artifactId>
8
8
<packaging>jar</packaging>
9
9
<name>mariadb-java-client</name>
10
- <version>3.1.3-SNAPSHOT </version>
10
+ <version>3.1.3</version>
11
11
<description>JDBC driver for MariaDB and MySQL</description>
12
12
<url>https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/</url>
13
13
You can’t perform that action at this time.
0 commit comments