Skip to content

v2.9.0

Compare
Choose a tag to compare
@valfirst valfirst released this 21 Mar 23:44
0a9aded

slf4j-test-2.9.0 (2023-03-22)

Full Changelog

Implemented enhancements:

  • #360 - Add ability to make assertions using the PredicateBuilder more fluent (by @topbadger)

    Static helper method and method overloads are added to make assertions using the PredicateBuilder more fluent.

    This allows assertions to be declared as follows:

    assertThat(logger).hasLogged(aLog().withLevel(Level.WARN).withMessage("Something"));

    as opposed to:

    assertThat(logger).hasLogged(new PredicateBuilder().withLevel(Level.WARN).withMessage("Something").build());

Updates:

  • Bump org.slf4j:slf4j-api from 2.0.6 to 2.0.7
  • Bump org.assertj:assertj-core from 3.23.1 to 3.24.2