Skip to content

Commit

Permalink
Prepare for 6.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brettwooldridge committed Sep 23, 2024
1 parent d544180 commit a31a988
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
18 changes: 17 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
HikariCP Changes

Changes in 5.2.0
Changes in 6.0.0

* fixed #2152 duplicate connection in try with resources clause caused close() being called twice on each connection.

* merged #2226 consistent handling of errorCode and sqlState in timeout exception

* merged #2199 eliminate network call if state get is called after set

* merged #2189 add support to get and set db credentials in an atomic operation

* merged #2149 make Savepoint rollbacks mark the connection dirty

* merged #2157 close connections marked as evicted instead of returning them to the pool

* merged #2147 skip Connection::setNetworkTimeout if PoolBase::shutdownNetworkTimeoutExecutor is called

* merged #2126 added Support For beginRequest and endRequest

* small improvements and cleanup from pull request #2166

* minor debug logging enhancements

Changes in 5.1.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ _**Java 11+** maven artifact:_
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>5.2.0</version>
<version>6.0.0</version>
</dependency>
```
_Java 8 maven artifact (*maintenance mode*):_
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>5.2.0-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
<packaging>bundle</packaging>

<name>HikariCP</name>
Expand Down

0 comments on commit a31a988

Please sign in to comment.