Skip to content

Commit

Permalink
Downgrade awaitility version to 4.2.0 (#9041)
Browse files Browse the repository at this point in the history
Fixes #8986
  • Loading branch information
eddumelendez committed Jul 31, 2024
1 parent 4952337 commit 1877849
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ updates:
update-types: [ "version-update:semver-minor", "version-update:semver-patch" ]
- dependency-name: "org.apache.commons:commons-compress"
update-types: [ "version-update:semver-minor" ]
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/"
allow:
Expand Down Expand Up @@ -76,6 +78,9 @@ updates:
schedule:
interval: "weekly"
open-pull-requests-limit: 10
ignore:
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/modules/cratedb"
schedule:
Expand Down Expand Up @@ -280,6 +285,9 @@ updates:
schedule:
interval: "weekly"
open-pull-requests-limit: 10
ignore:
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/modules/r2dbc"
schedule:
Expand Down Expand Up @@ -314,6 +322,8 @@ updates:
ignore:
- dependency-name: "org.apache.qpid:qpid-jms-client"
update-types: [ "version-update:semver-major" ]
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/modules/solr"
schedule:
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ dependencies {
exclude group: 'org.apache.commons', module: 'commons-compress'
}

shaded 'org.awaitility:awaitility:4.2.1'
shaded 'org.awaitility:awaitility:4.2.0'

api platform('com.github.docker-java:docker-java-bom:3.4.0')
shaded platform('com.github.docker-java:docker-java-bom:3.4.0')
Expand Down
2 changes: 1 addition & 1 deletion modules/couchbase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
shaded 'com.squareup.okhttp3:okhttp:4.12.0'

testImplementation 'com.couchbase.client:java-client:3.7.1'
testImplementation 'org.awaitility:awaitility:4.2.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/questdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
testImplementation project(':jdbc-test')
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.questdb:questdb:7.3.9'
testImplementation 'org.awaitility:awaitility:4.2.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
}

Expand Down
2 changes: 1 addition & 1 deletion modules/solace/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: Solace"
dependencies {
api project(':testcontainers')

shaded 'org.awaitility:awaitility:4.2.1'
shaded 'org.awaitility:awaitility:4.2.0'

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.solacesystems:sol-jcsmp:10.24.1'
Expand Down

0 comments on commit 1877849

Please sign in to comment.