From 51d74f1e041f2e2a5bbad51eb2d3a72c6045703f Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Sun, 28 Sep 2014 14:02:57 +0900 Subject: [PATCH] Updated change log. --- CHANGES | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 16d6a3d0..b9ea3c06 100644 --- a/CHANGES +++ b/CHANGES @@ -1,19 +1,31 @@ HikariCP Changes -Changes between 2.0.0 and 2.0.2 +Changes between 2.0.1 and 2.1.0 * Significant internal refactor supporting creation of new proxy instances - (throwaway) around Connections for each call to getConnection(). + (throwaway) around Connections for each call to getConnection(). This + can avoid issues where a thread continues to try to use a connection + after it is closed [returned to the pool]. * Allow HikariConfig(String propertyFileName) to load properties file from - classloader as a stream or directly from file-system. - - * Fix accounting issue with totalConnections when aborting connections + classloader as a stream, with fall-back to the file-system. + + * Allow loading of properties file specified by -Dhikaricp.configurationFile + system property when using the default HikariConfig() or HikariDataSource() + constructors. + + * Fixed accounting issue with totalConnections when aborting connections during shutdown, causing a warning message to be logged. - * Fix regression in Java 8 codeline that would prevent minimumIdle from + * Fixed regression in Java 8 codeline that would prevent minimumIdle from being set before maxPoolSize. + * Fixed regression with Tomcat carping about ThreadLocal variables held after + web application restart + + * Change to make HikariConfig.getTransactionIsolation()/setTransactionIsolation() + follow proper bean semantics. + Changes between 1.4.0 and 2.0.1 * Split project into Java 6/7 and Java 8 components.