# By Brett Wooldridge (8) and Jared Stehler (2)
# Via Brett Wooldridge (3) and Jared Stehler (2)
* 'dev' of github.com-brettwooldridge:brettwooldridge/HikariCP:
merged
log pool name in warn messages
Update README.md
Update README.md
[maven-release-plugin] prepare for next development iteration
[maven-release-plugin] prepare release HikariCP-1.3.5
Typo
Update README.md
Update README.md
Update README.md
* 'dev' of https://github.com/brettwooldridge/HikariCP:
Do not set query timeout when user specifies connectionTimeout of 0.
Do not set query timeout when user specifies connectionTimeout of 0.
Small tweak to try to fix Javassist/Java8 incompatibility.
Fix Java8 JavaDoc errors.
* dev:
Updated change log
Restore max lifetime check to getConnection() rather than only in the housekeeper thread. An extremely active pool may never find an idle connection in the housekeeper alone.
Restore max lifetime check to getConnection() rather than only in the housekeeper thread. An extremely active pool may never find an idle connection in the housekeeper alone.
Fixed#51 fix logging string substitution parameter.
Switch back to setting our own context class loader during code generation.
Change visibility.
* dev: (77 commits)
Unwrap DataSource test.
Discourage users from turning on metrics until they do something useful.
Add idle fill test.
Reduce the number of filler threads ... 8 threads is too many on a hyper threaded 4-core CPU.
Start implementing [optional] metrics for HikariCP.
Additional connection tests.
Add provided dependency on coda hale metrics.
Merged #48 fix connectionTest validation
Change defaults.
Default minIdle the same as maxPoolSize.
Split out stateless utility functions to reduce the weight of the HikariPool class (increases readability).
Rename idleConnectionBag to connectionBag.
Change connectionTimeout minimum to 250ms.
Fix timing edge case in test.
Check validation error
Improve warnings for invalid configuration
Use the DriverManager to create connections.
Update changes.log.
Update changes.log.
Remove deprecated calls from tests, fix test conditions for new background fill behavior.
...