- updated
HikariCP
to5.1.0
- bumped Clojure dependency to
1.11.3
- fixed SQLite adapter datasource class name
- fixed MariaDB adapter datasource class name
- updated
HikariCP
to5.0.1
- bumped Clojure dependency to
1.11.1
- updated
HikariCP
to4.0.3
- set Clojure 1.9.0 as a provided dependency
- support
mysql8
adapter (sets datasource class name tocom.mysql.cj.jdbc.MysqlDataSource
) - updated
HikariCP
to3.4.5
- updated
HikariCP
to3.4.3
- updated
HikariCP
to3.4.2
- updated
HikariCP
to3.4.1
- add keyword for setting MetricsTrackerFactory
- allow to set
transaction-isolation
property
- updated
HikariCP
to3.3.1
- updated
HikariCP
to3.3.0
- add missing
::jdbc-url-options
specs
- added support for Mysql Connector's tinyInt1isBit property.
- updated
HikariCP
to3.2.0
- updated
HikariCP
to3.1.0
- updated
HikariCP
to3.0.0
- replace Schema with clojure.spec. NOTE: internal specs are not part of the public API. Depending on them outside of hikari-cp is discouraged.
- add preliminary support for Neo4j
- updated
HikariCP
to2.7.6
- updated
Clojure
to1.9.0
- BREAKING CHANGE: rename
datasource-classname
todatasource-class-name
- allow custom
datasource-classname
along withadapter
- updated
HikariCP
to2.7.4
- updated
HikariCP
to2.7.3
- removed
:connection-test
option as it was deprecated and had no functionality backing it inHikariCP
. Please use:connection-test-query
- updated
HikariCP
to2.7.2
- added support for Dropwizard healthcheck functionality
- updated
HikariCP
to2.7.1
- added
:connection-test
option for disabling default connection test
- updated
HikariCP
to2.6.0
- do not attempt to use :metric-registry as a datasource property
- added support for Dropwizard metrics registry
- added support for
useSSL
property
- updated
HikariCP
to2.5.1
- fixed validation for datasource
- updated
HikariCP
to2.4.7
- added
jdbc-url
to be a required key for datasource
- added
datasource
anddatasource-classname
options - make
connection-init-sql
a none core option - make
driver-class-name
optional whenjdbc-url
is given
- Call setRegisterMbeans property only when it is specified.
- Fix a bug introduced in a25b7a7f20b0a5c46dd83ea32d7a5a7b1c184273 where the non core options are no longer properly detected
- allow configuring without an adapter, but using a JDBC URL and driver class name
- added
connection-init-sql
option for Hikari config
- updated
HikariCP
to2.4.3
- added
leak-detection-threshold
option for Hikari config - added
register-mbeans
option for Hikari config
- added
sqlite
support withorg.sqlite.JDBC
adapter - added a general purpose way to alter Hikari config
- updated
clojure
to1.7.0
- updated
HikariCP
to2.4.1
- updated
HikariCP
to2.4.0
- updated
HikariCP
to2.3.8
- updated
HikariCP
to2.3.7
- updated
HikariCP
to2.3.6
- updated
HikariCP
to2.3.5
- updated
HikariCP
to2.3.4
- updated
HikariCP
to2.3.2
- fixed issue with setting datasource-specific configuration options to falsey values
- updated
HikariCP
to2.3.1
- removed
datasource-from-config
function - added support for
:validation-timeout
configuration option
- updated
HikariCP
to2.3.0
- added support for FoundationDB driver (
:adapter
set tofdbsql
)
- allowed optional configuration of
connection-test-query
datasource-from-config
has been deprecated and will be removed in version1.0.0
- added
make-datasource
function. It takes options map directly as an argument - changed the
:adapter
key value type from keyword to string
- replaced
camel-snake-kebab
withorg.tobereplaced/lettercase
to make sure builds using:aot
continue to work on Mac and Windows
- updated
HikariCP
to2.2.5
- added
:pool-name
configuration option
- updated
HikariCP
to2.2.4
- updated
HikariCP
to2.2.3
- added validations for configuration option key names: all have to be symbols
- updated
HikariCP
to2.1.0
- added support for datasource-specific configuration options
- added validations for configuration options
- added support for MS SQL jTDS driver (
:adapter
set to:sqlserver-jtds
)
- added
:adapter
configuration option instead of setting:datasource-class-name
- fixed setting
portNumber
for all adapters
- function
data-source-from-config
renamed todatasource-from-config
- function
close-data-source
renamed toclose-datasource
- initial release