Releases: borisfaure/junit-parser
Releases · borisfaure/junit-parser
JUnit-Parser v1.3.0
1.3.0 -- 2024-10-06
- Parse CDATA sections in
system-out
,system-err
,failure
,error
and
skipped
elements
JUnit-Parser v1.1.0
1.1.0 -- 2024-01-10
- Support nested
testsuite
tags - Support the
testrun
tag acting astestsuites
- Update quick-xml to 0.31
JUnit-Parser v1.0.0
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
andsystem-err
elements - Parse the
properties
element as a hashmap (with the
properties_as_hashmap
feature enabled by default) or as a vector (with
theproperties_as_vector
feature enabled by default) - Parse the
timestamp
,hostname
,assertions
,id
,package
,log
,
url
,version
,file
andline
optional attributes inTestSuite
- Derive
Default
forTestError
,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 theserde
feature. - Update documentation
- Add CI based on GitHub Actions