Skip to content

Commit

Permalink
bump 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Apr 23, 2024
1 parent c9786f2 commit 474e969
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
# Change Log
## [3.3.3](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.3.3) (Feb 2024)
## [3.4.0](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.4.0) (Apr 2024)
[Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.3.3...3.4.0)

##### Notable Changes

* CONJ-981 Add support for connection redirection
* CONJ-1087 handle mariadb-11.1+ transaction_isolation
* CONJ-1100 Be able to filter system tables and views
* CONJ-1105 TLS certificate validation without needs to provide certificate client side
* CONJ-1171 timezone support missing feature
* CONJ-1173 Bulk implementation returning individual results for MariaDB 11.5
* CONJ-1154 avoid unnecessary set transaction isolation queries

##### Bugs Fixed

* CONJ-1103 Connector/J Version 3 Does Not Respect "nullCatalogMeansCurrent" Property
* CONJ-1161 Database connection failing on android
* CONJ-1107 MariaDB Connector 3 no longer supports query timeout with MySQL
* CONJ-1125 Inconsistency in Handling PreparedStatement.executeQuery() between MariaDB and MySQL Connectors
* CONJ-1156 getTables should be ordered as expected
* CONJ-1163 jdbcCompliantTruncation Does Not Appear To Be Working
* CONJ-1164 Variable initialization ahead of LOAD DATA INFILE not possible by validateLocalFileName pattern
* CONJ-1168 useBulkStmts compatibility value with pre 3.2 version
* CONJ-1169 improve Client prepared statement setMaxRows implementation
* CONJ-1170 OFFSET missing from getSQLKeywords
* CONJ-1158 DatabaseMetaData#getFunctions's result not property ordered
* CONJ-1159 DatabaseMetaData#getClientInfoProperties not ordered correctly
* CONJ-1166 Implement connection properties fallbackToSystemKeyStore and fallbackToSystemTrustStore
* CONJ-1174 ConnectorJ gives precision of 20 for signed bigint

## [3.3.3](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.3.3) (Feb 2024)
[Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.3.2...3.3.3)

##### Bugs Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ or maven :
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.3.3</version>
<version>3.4.0</version>
</dependency>
```

Expand All @@ -48,7 +48,7 @@ Development snapshot are available on sonatype nexus repository
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.4.0-SNAPSHOT</version>
<version>3.4.1-SNAPSHOT</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>mariadb-java-client</artifactId>
<packaging>jar</packaging>
<name>mariadb-java-client</name>
<version>3.4.0-SNAPSHOT</version>
<version>3.4.0</version>
<description>JDBC driver for MariaDB and MySQL</description>
<url>https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/</url>

Expand Down

0 comments on commit 474e969

Please sign in to comment.