Skip to content

Bump awaitility from 4.1.1 to 4.2.0

Bumps awaitility from 4.1.1 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)

Commits
  • b5d82b7 [maven-release-plugin] prepare release awaitility-4.2.0
  • 1ae0349 Preparing changelog for release
  • 386eccb Improve error message in test
  • fc45eb7 Fail fast conditions can now be specified with assertions
  • d39c00d Upgrading Kotlin to 1.6.10
  • f359e94 Formatted ConditionAwaiter
  • 9c9a79b Updated changelog to reflect the latest changes
  • 9e40d37 Fix #224 - handle immidiate success scenario (#228)
  • 3c9f345 Fixed a bug in the shutdown behavior of a polling thread. The wrong time unit...
  • c4962d8 Update README.md
  • Additional commits viewable in compare view

Merge request reports