Skip to content

Commit 5be6f67

Browse files
chore(deps): bump com.mysql:mysql-connector-j from 9.1.0 to 9.2.0 (#1308)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bc9d9da commit 5be6f67

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

benchmarks/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
dependencies {
2222
jmhImplementation(project(":aws-advanced-jdbc-wrapper"))
2323
implementation("org.postgresql:postgresql:42.7.4")
24-
implementation("com.mysql:mysql-connector-j:9.1.0")
24+
implementation("com.mysql:mysql-connector-j:9.2.0")
2525
implementation("org.mariadb.jdbc:mariadb-java-client:3.5.1")
2626
implementation("com.zaxxer:HikariCP:4.0.3")
2727

examples/AWSDriverExample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
dependencies {
1818
implementation("org.springframework.boot:spring-boot-starter-jdbc:2.7.13") // 2.7.13 is the last version compatible with Java 8
1919
implementation("org.postgresql:postgresql:42.7.4")
20-
implementation("com.mysql:mysql-connector-j:9.1.0")
20+
implementation("com.mysql:mysql-connector-j:9.2.0")
2121
implementation("software.amazon.awssdk:rds:2.29.34")
2222
implementation("software.amazon.awssdk:secretsmanager:2.30.21")
2323
implementation("software.amazon.awssdk:sts:2.30.27")

examples/DBCPExample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
dependencies {
1818
implementation("org.postgresql:postgresql:42.7.4")
19-
implementation("com.mysql:mysql-connector-j:9.1.0")
19+
implementation("com.mysql:mysql-connector-j:9.2.0")
2020
implementation(project(":aws-advanced-jdbc-wrapper"))
2121
implementation("org.apache.commons:commons-dbcp2:2.13.0")
2222
implementation("software.amazon.awssdk:rds:2.29.34")

examples/HikariExample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
dependencies {
1818
implementation("org.postgresql:postgresql:42.7.4")
19-
implementation("com.mysql:mysql-connector-j:9.1.0")
19+
implementation("com.mysql:mysql-connector-j:9.2.0")
2020
implementation(project(":aws-advanced-jdbc-wrapper"))
2121
implementation("com.zaxxer:HikariCP:4.0.3")
2222
}

examples/ReadWriteSplittingSample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
dependencies {
1818
implementation("org.postgresql:postgresql:42.7.4")
19-
implementation("com.mysql:mysql-connector-j:9.1.0")
19+
implementation("com.mysql:mysql-connector-j:9.2.0")
2020
implementation("com.zaxxer:HikariCP:4.0.3")
2121
implementation(project(":aws-advanced-jdbc-wrapper"))
2222
}

wrapper/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies {
3636
compileOnly("com.zaxxer:HikariCP:4.0.3") // Version 4.+ is compatible with Java 8
3737
compileOnly("software.amazon.awssdk:secretsmanager:2.30.21")
3838
compileOnly("com.fasterxml.jackson.core:jackson-databind:2.18.2")
39-
compileOnly("com.mysql:mysql-connector-j:9.1.0")
39+
compileOnly("com.mysql:mysql-connector-j:9.2.0")
4040
compileOnly("org.postgresql:postgresql:42.7.4")
4141
compileOnly("org.mariadb.jdbc:mariadb-java-client:3.5.1")
4242
compileOnly("org.osgi:org.osgi.core:6.0.0")
@@ -58,7 +58,7 @@ dependencies {
5858

5959
testImplementation("org.apache.commons:commons-dbcp2:2.13.0")
6060
testImplementation("org.postgresql:postgresql:42.7.4")
61-
testImplementation("com.mysql:mysql-connector-j:9.1.0")
61+
testImplementation("com.mysql:mysql-connector-j:9.2.0")
6262
testImplementation("org.mariadb.jdbc:mariadb-java-client:3.5.1")
6363
testImplementation("com.zaxxer:HikariCP:4.0.3") // Version 4.+ is compatible with Java 8
6464
testImplementation("org.springframework.boot:spring-boot-starter-jdbc:2.7.13") // 2.7.13 is the last version compatible with Java 8

0 commit comments

Comments
 (0)