Skip to content

Commit 1877849

Browse files
authored
Downgrade awaitility version to 4.2.0 (#9041)
Fixes #8986
1 parent 4952337 commit 1877849

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ updates:
2222
update-types: [ "version-update:semver-minor", "version-update:semver-patch" ]
2323
- dependency-name: "org.apache.commons:commons-compress"
2424
update-types: [ "version-update:semver-minor" ]
25+
- dependency-name: "org.awaitility:awaitility"
26+
update-types: [ "version-update:semver-patch" ]
2527
- package-ecosystem: "gradle"
2628
directory: "/"
2729
allow:
@@ -76,6 +78,9 @@ updates:
7678
schedule:
7779
interval: "weekly"
7880
open-pull-requests-limit: 10
81+
ignore:
82+
- dependency-name: "org.awaitility:awaitility"
83+
update-types: [ "version-update:semver-patch" ]
7984
- package-ecosystem: "gradle"
8085
directory: "/modules/cratedb"
8186
schedule:
@@ -280,6 +285,9 @@ updates:
280285
schedule:
281286
interval: "weekly"
282287
open-pull-requests-limit: 10
288+
ignore:
289+
- dependency-name: "org.awaitility:awaitility"
290+
update-types: [ "version-update:semver-patch" ]
283291
- package-ecosystem: "gradle"
284292
directory: "/modules/r2dbc"
285293
schedule:
@@ -314,6 +322,8 @@ updates:
314322
ignore:
315323
- dependency-name: "org.apache.qpid:qpid-jms-client"
316324
update-types: [ "version-update:semver-major" ]
325+
- dependency-name: "org.awaitility:awaitility"
326+
update-types: [ "version-update:semver-patch" ]
317327
- package-ecosystem: "gradle"
318328
directory: "/modules/solr"
319329
schedule:

core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ dependencies {
8686
exclude group: 'org.apache.commons', module: 'commons-compress'
8787
}
8888

89-
shaded 'org.awaitility:awaitility:4.2.1'
89+
shaded 'org.awaitility:awaitility:4.2.0'
9090

9191
api platform('com.github.docker-java:docker-java-bom:3.4.0')
9292
shaded platform('com.github.docker-java:docker-java-bom:3.4.0')

modules/couchbase/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ dependencies {
66
shaded 'com.squareup.okhttp3:okhttp:4.12.0'
77

88
testImplementation 'com.couchbase.client:java-client:3.7.1'
9-
testImplementation 'org.awaitility:awaitility:4.2.1'
9+
testImplementation 'org.awaitility:awaitility:4.2.0'
1010
testImplementation 'org.assertj:assertj-core:3.26.3'
1111
}

modules/questdb/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
testImplementation project(':jdbc-test')
99
testImplementation 'org.assertj:assertj-core:3.26.3'
1010
testImplementation 'org.questdb:questdb:7.3.9'
11-
testImplementation 'org.awaitility:awaitility:4.2.1'
11+
testImplementation 'org.awaitility:awaitility:4.2.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
}
1414

modules/solace/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Solace"
33
dependencies {
44
api project(':testcontainers')
55

6-
shaded 'org.awaitility:awaitility:4.2.1'
6+
shaded 'org.awaitility:awaitility:4.2.0'
77

88
testImplementation 'org.assertj:assertj-core:3.26.3'
99
testImplementation 'com.solacesystems:sol-jcsmp:10.24.1'

0 commit comments

Comments
 (0)