Skip to content

Commit 545653c

Browse files
authored
Merge pull request #7955 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents f0c5759 + 4a45efd commit 545653c

File tree

47 files changed

+60
-60
lines changed

Some content is hidden

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

47 files changed

+60
-60
lines changed

.github/workflows/combine-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
steps:
1414
- name: combine-prs
1515
id: combine-prs
16-
uses: github/combine-prs@v4.1.0
16+
uses: github/combine-prs@v5.0.0
1717
with:
1818
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/labeler@v4
12+
- uses: actions/labeler@v5
1313
with:
1414
repo-token: "${{ secrets.GITHUB_TOKEN }}"

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dependencies {
7373
api 'org.slf4j:slf4j-api:1.7.36'
7474
compileOnly 'org.jetbrains:annotations:24.0.1'
7575
testCompileOnly 'org.jetbrains:annotations:24.0.1'
76-
api 'org.apache.commons:commons-compress:1.24.0'
76+
api 'org.apache.commons:commons-compress:1.25.0'
7777
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
7878
exclude(group: 'org.jetbrains', module: 'annotations')
7979
}
@@ -110,7 +110,7 @@ dependencies {
110110
exclude group: 'com.google.guava', module: 'guava'
111111
}
112112
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
113-
testImplementation 'redis.clients:jedis:5.0.2'
113+
testImplementation 'redis.clients:jedis:5.1.0'
114114
testImplementation 'com.rabbitmq:amqp-client:5.20.0'
115115
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'
116116

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.15.0"
10+
testImplementation "org.seleniumhq.selenium:selenium-api:4.16.1"
1111
testImplementation 'org.assertj:assertj-core:3.24.2'
1212
}
1313

docs/examples/junit4/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
4+
api "io.lettuce:lettuce-core:6.3.0.RELEASE"
55

66
testImplementation "junit:junit:4.13.2"
77
testImplementation project(":testcontainers")

docs/examples/junit5/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
4+
api "io.lettuce:lettuce-core:6.3.0.RELEASE"
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
77
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.1"

docs/examples/spock/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
dependencies {
7-
api "io.lettuce:lettuce-core:6.2.6.RELEASE"
7+
api "io.lettuce:lettuce-core:6.3.0.RELEASE"
88
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
99
testImplementation project(":spock")
1010
testImplementation 'ch.qos.logback:logback-classic:1.3.11'

examples/cucumber/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ repositories {
77
}
88

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

15-
testImplementation platform('io.cucumber:cucumber-bom:7.14.0')
15+
testImplementation platform('io.cucumber:cucumber-bom:7.15.0')
1616
testImplementation 'io.cucumber:cucumber-java'
1717
testImplementation 'io.cucumber:cucumber-junit'
1818
testImplementation 'org.testcontainers:selenium'

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
testCompileOnly "org.projectlombok:lombok:1.18.30"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:3.6.0'
13+
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
1414
testImplementation 'org.assertj:assertj-core:3.24.2'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'ch.qos.logback:logback-classic:1.3.11'

examples/linked-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compileOnly 'org.slf4j:slf4j-api:1.7.36'
1010
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
1111
implementation 'org.json:json:20231013'
12-
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
12+
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
1414
testImplementation 'org.testcontainers:postgresql'
1515
testImplementation 'org.assertj:assertj-core:3.24.2'

0 commit comments

Comments
 (0)