Prepare for release

pull/813/head
Brett Wooldridge 8 years ago
parent 1587198e6a
commit 11fc31f67e

@ -1,21 +1,26 @@
HikariCP Changes
Changes in 2.5.2
Changes in 2.6.0
* issue 781 more technically accurate wording of pool startup and shutdown log messages.
* issue 793 add new HikariConfig method, setScheduledExecutor(ScheduledExecutorService),
and deprecate method setScheduledExecutorService(ScheduledThreadPoolExecutor). It is
unfortunate that the deprecated method has the more accurate name, but its signature
cannot be changed without breaking binary compatibility.
* issue 770 adding a new property initializationFailTimeout and deprecate configuration
property initializationFailFast.
* issue 774 fixed issue where spike load was causing creation of too many connections.
* issue 774 significantly improve spike load handling.
* issues 518/769 add new metric for tracking how long physical connection acquisition is
taking. DropWizard histogram name "ConnectionCreation", and Prometheus summary name
"hikaricp_connection_creation_millis".
* issue 741 cancel HouseKeeper task on pool shutdown. If the ScheduledExecutor in use is
does not belong to HikariCP, this task would remain scheduled after shutdown, causing a
* issue 741 cancel HouseKeeper task on pool shutdown. If the ScheduledExecutor being used
did not belong to HikariCP, this task would remain scheduled after shutdown, causing a
memory leak.
* issue 770 adding a new property initializationFailTimeout and deprecate configuration
property initializationFailFast.
* issue 781 more technically accurate wording of pool startup and shutdown log messages.
Changes in 2.5.1

@ -3,7 +3,7 @@
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>2.5.2-SNAPSHOT</version>
<version>2.6.0-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>HikariCP</name>

Loading…
Cancel
Save