Skip to content

Commit 33692d2

Browse files
update CHANGES and README.md
1 parent 68f00ff commit 33692d2

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

CHANGES

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
HikariCP Changes
22

3+
Changes in 6.3.2
4+
5+
* fixed #2342 restore module-info.class to jar file, which was lost in 6.3.1
6+
7+
* fixed #2256 add support for legacy override of getUsername()/getPassword() of HikariDataSource. See project page
8+
for documentation of system property com.zaxxer.hikari.legacy.supportUserPassDataSourceOverride.
9+
10+
* fixed #2323 right or wrong (wrt driver behavior) return to previous Connection.get/setSchema behavior
11+
12+
* fixed #2288 upgrade dependencies and fix build warnings
13+
314
Changes in 6.3.1
415

516
* fixed #2315 source jar contains also binary .class files and missing some .java files

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ _**Java 11+** maven artifact:_
4343
<dependency>
4444
<groupId>com.zaxxer</groupId>
4545
<artifactId>HikariCP</artifactId>
46-
<version>6.2.1</version>
46+
<version>6.3.2</version>
4747
</dependency>
4848
```
4949
_Java 8 maven artifact (*deprecated*):_
@@ -441,6 +441,7 @@ an issue of any kind if you have modified these properties. You have been warned
441441
| ``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. |
442442
| ``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()``. |
443443
| ``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()``. |
444445
| ``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. |
445446

446447
Seriously, either don't use these properties or take on full responsibility for the consequences.

0 commit comments

Comments
 (0)