Skip to content

Commit

Permalink
[misc] add changelog description
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Apr 20, 2017
1 parent c9aab8c commit c01b00e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ or maven :
</dependency>
```

release candidate :
```script
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.0.0-RC</version>
</dependency>
```

Development snapshot are available on sonatype nexus repository
```script
<repositories>
Expand All @@ -42,7 +51,7 @@ Development snapshot are available on sonatype nexus repository
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
```
Expand Down
11 changes: 10 additions & 1 deletion documentation/changelog.creole
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,18 @@ Parsing row result optimisation to avoid creating byte array to the maximum for
=== Misc

* CONJ-443 - NullpointerException when making concurrent procedure calls
* CONJ-446 - ResultSet.getBigDecimal throwns NumberFormatException when value is an empty string
* CONJ-391 - Improve connection using SELECT in place of SHOW to avoid creating a mutex server side.
* CONJ-402 - tcpKeepAlive option now default to true.
* CONJ-448 - QueryException: Incorrect arguments to mysqld_stmt_execute on inserting an "emptyString"-Lob with JPA
* CONJ-451 - Respect type parameter of ResultSet.getObject with type
* CONJ-455 - MetaData : tinyInt1isBit doesn't work properly in TINYINT(1) column that is marked as UNSIGNED
* CONJ-450 - NPE on setClientInfo if value is an empty string
* CONJ-457 - trustStore : Retain leading slash when trust store beings with 'file:///'
* CONJ-160 - ConnectionPool test using hikariCP
* CONJ-307 - valid connector java 9 early access
* CONJ-402 - make tcpKeepAlive option default to true
* CONJ-411 - Implement Statement maxFieldSize
* CONJ-449 - Permit CallableStatement streaming
== 1.5.9
Expand Down

0 comments on commit c01b00e

Please sign in to comment.