Skip to content

Commit 24dd112

Browse files
committed
Merge remote-tracking branch 'origin/main' into patch-1
2 parents 96900f6 + 2cb013d commit 24dd112

File tree

7 files changed

+100
-96
lines changed

7 files changed

+100
-96
lines changed

.github/workflows/release-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: Release
1616
steps:
1717
- uses: actions/checkout@v5
18-
- uses: actions/setup-node@v5
18+
- uses: actions/setup-node@v6
1919
with:
2020
node-version: '24.x'
2121
cache: 'npm'

.github/workflows/test-javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v5
3838

3939
- name: with Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
40-
uses: actions/setup-node@v5
40+
uses: actions/setup-node@v6
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
cache: "npm"

.github/workflows/test-testdata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: actions/checkout@v5
2222

23-
- uses: actions/setup-node@v5
23+
- uses: actions/setup-node@v6
2424
with:
2525
cache: 'npm'
2626
cache-dependency-path: testdata/package-lock.json

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Support configurable testsuite name, testcase classname, and testcase name. ([#105](https://github.com/cucumber/junit-xml-formatter/pull/105))
1212

13+
## [0.10.0] - 2025-10-27
14+
### Changed
15+
- Update dependency io.cucumber:messages up to v30
16+
1317
## [0.9.0] - 2025-09-11
1418
### Changed
1519
- Update dependency cucumber/query to 14.0.1
@@ -68,7 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6872
### Added
6973
- Java implementation ([#3](https://github.com/cucumber/junit-xml-formatter/pull/3) M.P. Korstanje)
7074

71-
[Unreleased]: https://github.com/cucumber/junit-xml-formatter/compare/v0.9.0...HEAD
75+
[Unreleased]: https://github.com/cucumber/junit-xml-formatter/compare/v0.10.0...HEAD
76+
[0.10.0]: https://github.com/cucumber/junit-xml-formatter/compare/v0.9.0...v0.10.0
7277
[0.9.0]: https://github.com/cucumber/junit-xml-formatter/compare/v0.8.1...v0.9.0
7378
[0.8.1]: https://github.com/cucumber/junit-xml-formatter/compare/v0.8.0...v0.8.1
7479
[0.8.0]: https://github.com/cucumber/junit-xml-formatter/compare/v0.7.1...v0.8.0

java/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
<parent>
66
<groupId>io.cucumber</groupId>
77
<artifactId>cucumber-parent</artifactId>
8-
<version>4.4.0</version>
8+
<version>4.5.0</version>
99
</parent>
1010

1111
<artifactId>junit-xml-formatter</artifactId>
12-
<version>0.9.1-SNAPSHOT</version>
12+
<version>0.10.1-SNAPSHOT</version>
1313
<packaging>jar</packaging>
1414
<name>JUnit XML Formatter</name>
1515
<description>Renders Cucumber Messages as JUnit XML</description>
1616
<url>https://github.com/cucumber/junit-xml-formatter</url>
1717

1818
<properties>
1919
<project.Automatic-Module-Name>io.cucumber.junitxmlformatter</project.Automatic-Module-Name>
20-
<project.build.outputTimestamp>1757606705</project.build.outputTimestamp>
20+
<project.build.outputTimestamp>1761578705</project.build.outputTimestamp>
2121
</properties>
2222

2323
<scm>
@@ -101,7 +101,7 @@
101101
<dependency>
102102
<groupId>org.xmlunit</groupId>
103103
<artifactId>xmlunit-assertj</artifactId>
104-
<version>2.10.4</version>
104+
<version>2.11.0</version>
105105
<scope>test</scope>
106106
</dependency>
107107

0 commit comments

Comments
 (0)