Bump awaitility from 4.1.0 to 4.2.0
Bumps awaitility from 4.1.0 to 4.2.0.
Changelog
Sourced from awaitility's changelog.
Changelog 4.2.0 (2022-03-04)
Fixed a bug in the shutdown behavior of a polling thread. The wrong time unit was used causing executor shutdown to take way more time than expected in cases where it's stuck. Thanks to Claus Näveke for spotting this and for the initial PR.
Fixed a bug in which condition was not evaluated correctly with small intervals, such as: await().atMost(Duration.ofMillis(10)).pollInterval(Duration.ofMillis(5)).until(..); (issue 224). Thanks to Robby Decosemaeker for PR.
Upgraded the awaitility-kotlin module to use kotlin 1.6.10
Fail fast conditions can now be specified with assertions. For example:
await().failFast(() -> assertThat(state).isNotEqualTo("Failed")).until(..);
(issue 238)
Changelog 4.1.1 (2021-10-25)
- Fixed a bug preventing you to specify "fib(-1)" when using the fibonacci poll interval (thanks to Björn Michael for pull request) (issue 201)
 - Avoid memory leak by caching only the original default uncaught exception handler globally (thanks to Oliver Grof for pull request (issue 221)
 - Added "conditionEvaluationListener" to Kotlin DSL
 
Commits
- 
b5d82b7[maven-release-plugin] prepare release awaitility-4.2.0 - 
1ae0349Preparing changelog for release - 
386eccbImprove error message in test - 
fc45eb7Fail fast conditions can now be specified with assertions - 
d39c00dUpgrading Kotlin to 1.6.10 - 
f359e94Formatted ConditionAwaiter - 
9c9a79bUpdated changelog to reflect the latest changes - 
9e40d37Fix #224 - handle immidiate success scenario (#228) - 
3c9f345Fixed a bug in the shutdown behavior of a polling thread. The wrong time unit... - 
c4962d8Update README.md - Additional commits viewable in compare view