You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ _**Java 11+** maven artifact:_
43
43
<dependency>
44
44
<groupId>com.zaxxer</groupId>
45
45
<artifactId>HikariCP</artifactId>
46
-
<version>6.2.1</version>
46
+
<version>6.3.2</version>
47
47
</dependency>
48
48
```
49
49
_Java 8 maven artifact (*deprecated*):_
@@ -441,6 +441,7 @@ an issue of any kind if you have modified these properties. You have been warned
441
441
|``com.zaxxer.hikari.blockUntilFilled``| When this property is set ``true``*and*``initializationFailTimeout`` is greater than 1, the pool will block during start until completely filled. |
442
442
|``com.zaxxer.hikari.enableRequestBoundaries``| When this property is set ``true``, HikariCP will bracket connection acquisition and return with calls to ``Connection.beginRequest()`` and ``Connection.endRequest()``. |
443
443
|``com.zaxxer.hikari.housekeeping.period``| This property controls the frequency of the housekeeping thread, represented in milliseconds. Really, don't mess with this. |
444
+
|``com.zaxxer.hikari.legacy.supportUserPassDataSourceOverride``| When this property is set ``true``, HikariCP will support the legacy behavior of overriding the ``getUsername()/getPassword()`` methods on *HikariDataSource*. Preferred method is overriding ``getCredentials()``. |
444
445
|``com.zaxxer.hikari.useWeakReferences``| When this property is set ``true`` it will force HikariCP to use ``WeakReference`` objects in the ``ConcurrentBag`` internal collection ThreadLocals and prevent the use of our ``FastList`` class, all to avoid TomCat warnings during redeploy. |
445
446
446
447
Seriously, either don't use these properties or take on full responsibility for the consequences.
0 commit comments