Skip to content

Commit bda398f

Browse files
Combined dependencies PR (#10720)
* Bump org.apache.tomcat:tomcat-jdbc in /modules/jdbc-test Bumps org.apache.tomcat:tomcat-jdbc from 11.0.9 to 11.0.10. --- updated-dependencies: - dependency-name: org.apache.tomcat:tomcat-jdbc dependency-version: 11.0.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump org.mariadb.jdbc:mariadb-java-client in /modules/mariadb Bumps [org.mariadb.jdbc:mariadb-java-client](https://github.com/mariadb-corporation/mariadb-connector-j) from 3.5.4 to 3.5.5. - [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases) - [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/main/CHANGELOG.md) - [Commits](mariadb-corporation/mariadb-connector-j@3.5.4...3.5.5) --- updated-dependencies: - dependency-name: org.mariadb.jdbc:mariadb-java-client dependency-version: 3.5.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump com.microsoft.sqlserver:mssql-jdbc in /modules/mssqlserver Bumps [com.microsoft.sqlserver:mssql-jdbc](https://github.com/Microsoft/mssql-jdbc) from 13.1.1.jre8-preview to 13.2.0.jre8. - [Release notes](https://github.com/Microsoft/mssql-jdbc/releases) - [Changelog](https://github.com/microsoft/mssql-jdbc/blob/main/CHANGELOG.md) - [Commits](https://github.com/Microsoft/mssql-jdbc/commits) --- updated-dependencies: - dependency-name: com.microsoft.sqlserver:mssql-jdbc dependency-version: 13.2.0.jre8 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Bump org.apache.tomcat:tomcat-jdbc in /modules/jdbc Bumps org.apache.tomcat:tomcat-jdbc from 11.0.9 to 11.0.10. --- updated-dependencies: - dependency-name: org.apache.tomcat:tomcat-jdbc dependency-version: 11.0.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump com.microsoft.sqlserver:mssql-jdbc in /modules/azure Bumps [com.microsoft.sqlserver:mssql-jdbc](https://github.com/Microsoft/mssql-jdbc) from 13.1.1.jre8-preview to 13.2.0.jre8. - [Release notes](https://github.com/Microsoft/mssql-jdbc/releases) - [Changelog](https://github.com/microsoft/mssql-jdbc/blob/main/CHANGELOG.md) - [Commits](https://github.com/Microsoft/mssql-jdbc/commits) --- updated-dependencies: - dependency-name: com.microsoft.sqlserver:mssql-jdbc dependency-version: 13.2.0.jre8 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 parents 20ca766 + b0ebc0b commit bda398f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

modules/azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ dependencies {
1414
testImplementation 'com.azure:azure-data-tables'
1515
testImplementation 'com.azure:azure-messaging-eventhubs'
1616
testImplementation 'com.azure:azure-messaging-servicebus'
17-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.1.1.jre8-preview'
17+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.2.0.jre8'
1818
}

modules/jdbc-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88

99
api 'org.assertj:assertj-core:3.27.4'
1010

11-
api 'org.apache.tomcat:tomcat-jdbc:11.0.9'
11+
api 'org.apache.tomcat:tomcat-jdbc:11.0.10'
1212
api 'org.vibur:vibur-dbcp:26.0'
1313
api 'mysql:mysql-connector-java:8.0.33'
1414
}

modules/jdbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
compileOnly 'org.jetbrains:annotations:26.0.2'
77
testImplementation 'commons-dbutils:commons-dbutils:1.8.1'
88
testImplementation 'org.vibur:vibur-dbcp:26.0'
9-
testImplementation 'org.apache.tomcat:tomcat-jdbc:11.0.9'
9+
testImplementation 'org.apache.tomcat:tomcat-jdbc:11.0.10'
1010
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
1111
testImplementation 'org.assertj:assertj-core:3.27.4'
1212
testImplementation ('org.mockito:mockito-core:4.11.0') {

modules/mariadb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'org.mariadb:r2dbc-mariadb:1.0.3'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.5.4'
10+
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.5.5'
1111

1212
testImplementation testFixtures(project(':testcontainers-r2dbc'))
1313
testRuntimeOnly 'org.mariadb:r2dbc-mariadb:1.0.3'

modules/mssqlserver/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.1.1.jre8-preview'
10+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:13.2.0.jre8'
1111

1212
testImplementation project(':testcontainers-r2dbc')
1313
testRuntimeOnly 'io.r2dbc:r2dbc-mssql:1.0.2.RELEASE'

0 commit comments

Comments
 (0)