Skip to content

Commit

Permalink
chore(deps): bump com.mysql:mysql-connector-j from 8.3.0 to 9.1.0 (#1231
Browse files Browse the repository at this point in the history
)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 8, 2025
1 parent 35d7088 commit f3d526e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
dependencies {
jmhImplementation(project(":aws-advanced-jdbc-wrapper"))
implementation("org.postgresql:postgresql:42.7.4")
implementation("com.mysql:mysql-connector-j:8.3.0")
implementation("com.mysql:mysql-connector-j:9.1.0")
implementation("org.mariadb.jdbc:mariadb-java-client:3.4.1")
implementation("com.zaxxer:HikariCP:4.0.3")

Expand Down
2 changes: 1 addition & 1 deletion examples/AWSDriverExample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
dependencies {
implementation("org.springframework.boot:spring-boot-starter-jdbc:2.7.13") // 2.7.13 is the last version compatible with Java 8
implementation("org.postgresql:postgresql:42.7.4")
implementation("com.mysql:mysql-connector-j:8.3.0")
implementation("com.mysql:mysql-connector-j:9.1.0")
implementation("software.amazon.awssdk:rds:2.29.34")
implementation("software.amazon.awssdk:secretsmanager:2.29.34")
implementation("software.amazon.awssdk:sts:2.29.34")
Expand Down
2 changes: 1 addition & 1 deletion examples/DBCPExample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

dependencies {
implementation("org.postgresql:postgresql:42.7.4")
implementation("com.mysql:mysql-connector-j:8.3.0")
implementation("com.mysql:mysql-connector-j:9.1.0")
implementation(project(":aws-advanced-jdbc-wrapper"))
implementation("org.apache.commons:commons-dbcp2:2.12.0")
implementation("software.amazon.awssdk:rds:2.29.34")
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 @@ -16,7 +16,7 @@

dependencies {
implementation("org.postgresql:postgresql:42.7.4")
implementation("com.mysql:mysql-connector-j:8.3.0")
implementation("com.mysql:mysql-connector-j:9.1.0")
implementation(project(":aws-advanced-jdbc-wrapper"))
implementation("com.zaxxer:HikariCP:4.0.3")
}
2 changes: 1 addition & 1 deletion examples/ReadWriteSplittingSample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

dependencies {
implementation("org.postgresql:postgresql:42.7.4")
implementation("com.mysql:mysql-connector-j:8.3.0")
implementation("com.mysql:mysql-connector-j:9.1.0")
implementation("com.zaxxer:HikariCP:4.0.3")
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 @@ -36,7 +36,7 @@ dependencies {
compileOnly("com.zaxxer:HikariCP:4.0.3") // Version 4.+ is compatible with Java 8
compileOnly("software.amazon.awssdk:secretsmanager:2.29.34")
compileOnly("com.fasterxml.jackson.core:jackson-databind:2.17.1")
compileOnly("com.mysql:mysql-connector-j:8.3.0")
compileOnly("com.mysql:mysql-connector-j:9.1.0")
compileOnly("org.postgresql:postgresql:42.7.4")
compileOnly("org.mariadb.jdbc:mariadb-java-client:3.4.1")
compileOnly("org.osgi:org.osgi.core:6.0.0")
Expand All @@ -58,7 +58,7 @@ dependencies {

testImplementation("org.apache.commons:commons-dbcp2:2.12.0")
testImplementation("org.postgresql:postgresql:42.7.4")
testImplementation("com.mysql:mysql-connector-j:8.3.0")
testImplementation("com.mysql:mysql-connector-j:9.1.0")
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("org.springframework.boot:spring-boot-starter-jdbc:2.7.13") // 2.7.13 is the last version compatible with Java 8
Expand Down

0 comments on commit f3d526e

Please sign in to comment.