From 38ec0d6784ad8ac300e3e8c3764d973e712cba4a Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Mon, 26 Jan 2015 16:22:37 +0900 Subject: [PATCH] Updated changes log. --- CHANGES | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGES b/CHANGES index 5aa09c89..33ddf8fd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,16 @@ HikariCP Changes +Changes in 2.3.1 + + * Work around a bug in the MySQL Connector/J implementation of Connection.setNetworkTimeout() + that results in non-deterministic asynchronous application of the timeout, resulting in an + NPE from the MySQL driver when setNetworkTimeout() is followed immediately by close(). + + * Introduced a separate validationTimeout property, distict from connectionTimeout, to allow + greater control for some deployments that desire a long (or infinite) connectionTimeout + but expect the aliveness check to succeed for fail within a different (shorter) amount of + time. + Changes in 2.3.0 * Support pool suspend/resume to support certain failover scenarios.