Skip to content

Commit

Permalink
chore(deps): bump com.zaxxer:HikariCP from 4.0.3 to 6.2.1
Browse files Browse the repository at this point in the history
Bumps [com.zaxxer:HikariCP](https://github.com/brettwooldridge/HikariCP) from 4.0.3 to 6.2.1.
- [Changelog](https://github.com/brettwooldridge/HikariCP/blob/dev/CHANGES)
- [Commits](brettwooldridge/HikariCP@HikariCP-4.0.3...HikariCP-6.2.1)

---
updated-dependencies:
- dependency-name: com.zaxxer:HikariCP
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Nov 25, 2024
1 parent 674949f commit a8dee34
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation("org.postgresql:postgresql:42.7.4")
implementation("mysql:mysql-connector-java:8.0.33")
implementation("org.mariadb.jdbc:mariadb-java-client:3.4.1")
implementation("com.zaxxer:HikariCP:4.0.3")
implementation("com.zaxxer:HikariCP:6.2.1")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.3")
testImplementation("org.mockito:mockito-inline:4.11.0") // 4.11.0 is the last version compatible with Java 8
Expand Down
2 changes: 1 addition & 1 deletion examples/HikariExample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ dependencies {
implementation("org.postgresql:postgresql:42.7.4")
implementation("mysql:mysql-connector-java:8.0.33")
implementation(project(":aws-advanced-jdbc-wrapper"))
implementation("com.zaxxer:HikariCP:4.0.3")
implementation("com.zaxxer:HikariCP:6.2.1")
}
2 changes: 1 addition & 1 deletion examples/ReadWriteSplittingSample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
dependencies {
implementation("org.postgresql:postgresql:42.7.4")
implementation("mysql:mysql-connector-java:8.0.33")
implementation("com.zaxxer:HikariCP:4.0.3")
implementation("com.zaxxer:HikariCP:6.2.1")
implementation(project(":aws-advanced-jdbc-wrapper"))
}

Expand Down
4 changes: 2 additions & 2 deletions wrapper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
compileOnly("software.amazon.awssdk:auth:2.28.2") // Required for IAM (light implementation)
compileOnly("software.amazon.awssdk:http-client-spi:2.27.8") // Required for IAM (light implementation)
compileOnly("software.amazon.awssdk:sts:2.27.22")
compileOnly("com.zaxxer:HikariCP:4.0.3") // Version 4.+ is compatible with Java 8
compileOnly("com.zaxxer:HikariCP:6.2.1") // Version 4.+ is compatible with Java 8
compileOnly("software.amazon.awssdk:secretsmanager:2.28.11")
compileOnly("com.fasterxml.jackson.core:jackson-databind:2.17.1")
compileOnly("mysql:mysql-connector-java:8.0.33")
Expand All @@ -60,7 +60,7 @@ dependencies {
testImplementation("org.postgresql:postgresql:42.7.4")
testImplementation("mysql:mysql-connector-java:8.0.33")
testImplementation("org.mariadb.jdbc:mariadb-java-client:3.4.1")
testImplementation("com.zaxxer:HikariCP:4.0.3") // Version 4.+ is compatible with Java 8
testImplementation("com.zaxxer:HikariCP:6.2.1") // Version 4.+ is compatible with Java 8
testImplementation("org.springframework.boot:spring-boot-starter-jdbc:2.7.13") // 2.7.13 is the last version compatible with Java 8
testImplementation("org.mockito:mockito-inline:4.11.0") // 4.11.0 is the last version compatible with Java 8
testImplementation("software.amazon.awssdk:rds:2.29.6")
Expand Down

0 comments on commit a8dee34

Please sign in to comment.