XMLUnit v2.8.1 Release Notes

Release Date: 2020-11-15 // over 3 years ago
  • โœ… The only real change when compared to XMLUnit for Java 2.8.0 is the introduction of a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or later in order to address a problem with running AssertJ tests in an OSGi environment.

    ๐Ÿ‘ The original xmlunit-assertj module will still be supported.

    The full changelog of XMLUnit for Java 2.8.1

    โž• added a new xmlunit-assertj3 module that requires AssertJ 3.18.1 or later.

    ๐Ÿ›  This module no longer uses AssertJ internal classes that are not exported to OSGi environments and thus fixes issue #203.

    ๐Ÿ“ฆ The module (like AssertJ 3.x itself) requires Java 8 at runtime and is similar to xmlunit-assertj but is no drop-in replacement. It uses a different Java package from xmlunit-assertj and CompareAssert will no longer throw a JUnit 4.x ComparisonException but an opentest4j AssertionFailedError instead.

    ๐Ÿš€ The existing xmlunit-assertj module will still be supported in future releases but expect AssertJ 3.x specific changes to only get applied to xmlunit-assertj3.

    Many thanks to @Zegveld, @scordio and @joel-costigliola.


Previous changes from v2.8.0

  • ๐Ÿš€ This release now requires Java 7 for all modules and updates some dependencies - the changed JAXB dependency is a breaking change. It also fixes a few bugs.

    Details of changes:

    ๐Ÿ”„ changed optional JAXB dependency to use Jakarta XML Binding API
    PR #186 by @endrejeges

    โฌ†๏ธ bumped the bytebuddy dependency to 1.10.10 for the AssertJ module in the hope it would help with #188

    - and change its scope from provided to compile time, which should finally fix the issue.

    โž• added a new extractingText method to MultipleNodeAssert to make it possible to write AssertJ assertions against the textual content of nodes more easily.
    Issue #192 and PR #193 by @keesvandieren

    ๐Ÿ”„ changed the minimum Java version required from Java 6 to Java 7 for all modules (it has already been Java 7 for the AssertJ module before).

    0๏ธโƒฃ DefaultNodeMatcher with multiple ElementSelectors could fail to find the best matches as the order of ElementSelectors should
    select them.
    #197

    ๐Ÿ— Input builder now supports java.nio.file.Path
    #196

    0๏ธโƒฃ It is now possible to specify a custom TransformerFactory for DefaultComparisonFormatter.
    #195