Skip to content

Commit

Permalink
BUMP 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Nov 24, 2023
1 parent da715da commit 397478f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## [3.3.1](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.3.1) (Nov 2023)

[Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.3.0...3.3.1)

##### Bugs Fixed

* CONJ-1120 java 8 compatibility error in 3.3.0
* CONJ-1123 missing OSGi javax.crypto dependency
* CONJ-1124 ensure not having OOM when setting huge fetch size
* CONJ-1109 Regression in clearBatch() for parameterized statements
* CONJ-1126 setting fetchSize directly on a ResultSet object does not reflect the expected change
* CONJ-1127 Statement.getResultSetType () failed to change the result set type
* CONJ-1128 Setting Negative Fetch Size on ResultSet Without Throwing Error

## [3.2.0](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.2.0) (Aug 2023)

## [3.3.0](https://github.com/mariadb-corporation/mariadb-connector-j/tree/3.3.0) (Nov 2023)

[Full Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/compare/3.2.0...3.3.0)
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,27 @@ or maven :
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
</dependency>
```

Development snapshot are available on sonatype nexus repository

```script
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.4.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.4.0-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.3.1-SNAPSHOT</version>
<version>3.3.1</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 397478f

Please sign in to comment.