Skip to content

Commit 953adf5

Browse files
committed
Update CHANGELOG
1 parent faaa291 commit 953adf5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1010
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111

1212
## [Unreleased]
13+
### Fixed
14+
- [Core] Format time in JUnit XML report as `xs:float` ([junit-xml-formatter/#83](https://github.com/cucumber/junit-xml-formatter/pull/83) M.P. Korstanje)
15+
- [Core] Replace concurrent hashmap with regular hashmap ([query/#89](https://github.com/cucumber/query/pull/89) M.P. Korstanje)
1316

1417
## [7.27.0] - 2025-07-27
1518
### Changed

cucumber-core/src/test/java/io/cucumber/core/plugin/JUnitFormatterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void writes_report_xml() {
3333

3434
assertThat(bytes, bytes(equalTo("" +
3535
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
36-
"<testsuite name=\"Cucumber\" time=\"5\" tests=\"0\" skipped=\"0\" failures=\"0\" errors=\"0\" timestamp=\"1970-01-01T00:00:10Z\">\n"
36+
"<testsuite name=\"Cucumber\" time=\"5.0\" tests=\"0\" skipped=\"0\" failures=\"0\" errors=\"0\" timestamp=\"1970-01-01T00:00:10Z\">\n"
3737
+
3838
"</testsuite>\n")));
3939
}

0 commit comments

Comments
 (0)