Update dependency org.awaitility:awaitility to v4.3.0 - #9
Closed
renovate[bot] wants to merge 1 commit into
Closed
Conversation
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
7 times, most recently
from
October 18, 2023 14:24
88d4d54 to
bb21dfc
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
October 19, 2023 11:54
bb21dfc to
77f7dc6
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
3 times, most recently
from
November 7, 2023 12:13
2061570 to
b54c460
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
November 17, 2023 12:24
b54c460 to
e3f5811
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
December 12, 2023 13:25
e3f5811 to
494768f
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
2 times, most recently
from
February 7, 2024 12:55
d817cc0 to
4cc1c8c
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
February 29, 2024 08:36
4cc1c8c to
de6aeac
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
March 15, 2024 17:08
de6aeac to
00ceea4
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
2 times, most recently
from
June 14, 2024 13:52
4894e08 to
2bd90d4
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
June 21, 2024 15:44
2bd90d4 to
73edbeb
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
July 9, 2024 07:04
73edbeb to
66b5812
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
July 23, 2024 08:53
66b5812 to
e693dc4
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
2 times, most recently
from
August 8, 2024 12:33
fa83835 to
4eec832
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
August 21, 2024 14:18
4eec832 to
0a66108
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
September 11, 2024 14:32
0a66108 to
f56cb6b
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
April 14, 2025 11:40
363cc8e to
fd38a87
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
April 22, 2025 12:26
fd38a87 to
169177b
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
May 30, 2025 12:58
169177b to
d4fdcbd
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
2 times, most recently
from
July 2, 2025 11:32
1eafa7d to
9cff4db
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
July 21, 2025 09:02
9cff4db to
a6072eb
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
4 times, most recently
from
August 1, 2025 07:08
8e13961 to
1d4f474
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
2 times, most recently
from
August 12, 2025 07:35
20db1ac to
f1c1240
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
2 times, most recently
from
August 28, 2025 15:11
21186cb to
854e08e
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
10 times, most recently
from
September 8, 2025 11:34
deb4b7c to
51b5e66
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
from
November 18, 2025 14:13
51b5e66 to
531bde4
Compare
renovate
Bot
force-pushed
the
renovate/all-maven-test-deps
branch
4 times, most recently
from
December 4, 2025 07:17
8007a2c to
e655719
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.2.0→4.3.0Release Notes
awaitility/awaitility (org.awaitility:awaitility)
v4.3.0Support for kotlin.time.Duration in Kotlin DSL (thanks to Ivo Šmíd for PR)
Upgraded kotlin version in the awaitility-kotlin module to 2.1.10
Using a more descriptive error message when using VERY long wait conditions or poll durations (issue 290)
Added an overloaded method of untilAsserted(..) that takes a supplier and a consumer. For example, lets say you have a class like this:
public class MyClass {
public String myFunction() {
// Imagine stuff being executed in asynchronously here and the result of this
// operation is a string called "my value"
return "my value"
}
}
// Then in your test you can wait for the "myFunction" to be asserted by a "consumer" that uses
// assertj to make sure that "myFunction" returns ""my value"
await().untilAsserted(myClass::myFunction, value -> Assertions.assertThat(value).isEqualTo("my value"));
This has also been implemented for all atomic, adder, and accumulator methods.
v4.2.2v4.2.1Upgraded Kotlin to 1.9.22
Added extension properties forever, then, and, given to the Kotlin extension. This allows you to do e.g.:
await.forever until { .. }
Added shortcut for enabling logging. Before you had to do e.g.
await()
.with()
.conditionEvaluationListener(new ConditionEvaluationLogger(log::info))
.pollInterval(ONE_HUNDRED_MILLISECONDS)
.until(logs::size, is(4));
You can now instead use the "logging" shortcut:
await()
.with()
.logging(log::info)
.pollInterval(ONE_HUNDRED_MILLISECONDS)
.until(logs::size, is(4));
or simply ".logging()" for "System.out".
This shortcut has also been added globally:
Awaitility.setLogging(log::info);
or
Awaitility.setDefaultLogging();
Improved lambda detection for Java 17 and Java 21
Upgraded Groovy to 4.0.19
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.