Skip to content

Commit 874ca87

Browse files
authored
Merge pull request #8659 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents ced5b72 + 3fe2bb6 commit 874ca87

File tree

67 files changed

+90
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+90
-90
lines changed

.github/workflows/update-docs-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml
2424
git diff
2525
- name: Create Pull Request
26-
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v3.10.1
26+
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v3.10.1
2727
with:
2828
title: Update docs version to ${GITHUB_REF##*/}
2929
body: |

.github/workflows/update-testcontainers-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
sed -i "s/^testcontainers\.version=.*/testcontainers\.version=${GITHUB_REF##*/}/g" gradle.properties
2424
git diff
2525
- name: Create Pull Request
26-
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v3.10.1
26+
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v3.10.1
2727
with:
2828
title: Update testcontainers version to ${GITHUB_REF##*/}
2929
body: |

core/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ dependencies {
111111
}
112112
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
113113
testImplementation 'redis.clients:jedis:5.1.0'
114-
testImplementation 'com.rabbitmq:amqp-client:5.20.0'
114+
testImplementation 'com.rabbitmq:amqp-client:5.21.0'
115115
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'
116116

117117
testImplementation ('org.mockito:mockito-core:4.11.0') {
@@ -120,12 +120,12 @@ dependencies {
120120
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest
121121
testImplementation files('testlib/repo/fakejar/fakejar/0/fakejar-0.jar')
122122

123-
testImplementation 'org.assertj:assertj-core:3.25.1'
123+
testImplementation 'org.assertj:assertj-core:3.25.3'
124124

125125
jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
126126
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"
127127
jarFileTestImplementation 'junit:junit:4.13.2'
128-
jarFileTestImplementation 'org.assertj:assertj-core:3.25.1'
128+
jarFileTestImplementation 'org.assertj:assertj-core:3.25.3'
129129
jarFileTestImplementation 'org.ow2.asm:asm-debug-all:5.2'
130130
}
131131

docs/examples/junit4/generic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
testImplementation project(":mysql")
88

99
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
10-
testImplementation "org.seleniumhq.selenium:selenium-api:4.17.0"
10+
testImplementation "org.seleniumhq.selenium:selenium-api:4.21.0"
1111
testImplementation 'org.assertj:assertj-core:3.25.2'
1212
}
1313

docs/examples/junit5/redis/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ description = "Examples for docs"
33
dependencies {
44
api "io.lettuce:lettuce-core:6.3.1.RELEASE"
55

6-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
6+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
77
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.1"
8-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.1"
8+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
99
testImplementation project(":testcontainers")
1010
testImplementation project(":junit-jupiter")
1111
testImplementation 'org.assertj:assertj-core:3.25.2'

examples/cucumber/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
implementation platform('org.seleniumhq.selenium:selenium-bom:4.17.0')
10+
implementation platform('org.seleniumhq.selenium:selenium-bom:4.21.0')
1111
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
1212
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
1313
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'

examples/hazelcast/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
testImplementation 'com.hazelcast:hazelcast:5.3.6'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1313
testImplementation 'org.assertj:assertj-core:3.25.2'
14-
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
14+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
1515
}
1616

1717
test {

examples/immudb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
testImplementation 'org.assertj:assertj-core:3.25.2'
1414
testImplementation 'com.google.guava:guava:23.0'
1515
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
16-
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
16+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
1717
}
1818

1919
test {

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414
testImplementation 'org.assertj:assertj-core:3.25.2'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
17-
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
17+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
1818
}
1919

2020
test {

examples/nats/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ repositories {
99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.25.2'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'io.nats:jnats:2.17.2'
12+
testImplementation 'io.nats:jnats:2.18.1'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1414
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
15-
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
15+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
1616
}
1717

1818
test {

0 commit comments

Comments
 (0)