Skip to content

Releases: borisfaure/junit-parser

JUnit-Parser v1.1.0

10 Jan 20:26
v1.1.0
493b911
Compare
Choose a tag to compare

1.1.0 -- 2024-01-10

  • Support nested testsuite tags
  • Support the testrun tag acting as testsuites
  • Update quick-xml to 0.31

JUnit-Parser v1.0.0

24 Sep 19:11
v1.0.0
b3c09e4
Compare
Choose a tag to compare

1.0.0 - 2023-09-24

  • Support only rust-1.56 or later
  • Use rust 2021 edition
  • Update quick-xml to 0.30
  • HTML-unescape attributes
  • Parse the system-out and system-err elements
  • Parse the properties element as a hashmap (with the
    properties_as_hashmap feature enabled by default) or as a vector (with
    the properties_as_vector feature enabled by default)
  • Parse the timestamp, hostname, assertions, id, package, log,
    url, version, file and line optional attributes in TestSuite
  • Derive Default for TestError, TestSkipped, TestFailure
  • Derive Clone to public structure
  • Add serde as optional dependency to (de)serialize the public structures.
    Disabled by default but can be activated through the serde feature.
  • Update documentation
  • Add CI based on GitHub Actions