Skip to content

Commit 419fdf6

Browse files
committed
Fix #725
1 parent 3b31dcd commit 419fdf6

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: ./mvnw -B -q -ff -ntp test
6161
- name: Publish code coverage
6262
if: ${{ matrix.release_build && github.event_name != 'pull_request' }}
63-
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
63+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0
6464
with:
6565
token: ${{ secrets.CODECOV_TOKEN }}
6666
file: ./target/site/jacoco/jacoco.xml

release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ Version: 3.x (for earlier see VERSION-2.x)
1313
#687: JSTEP-8: rename `FromXmlParser.Feature` as `XmlReadFeature`,
1414
`ToXmlGenerator.Feature` as `XmlWriteFeature`
1515
#701: Change 3.0 to use `module-info.java` directly, remove use of Moditect
16+
#725: Change `XmlWriteFeature.UNWRAP_ROOT_OBJECT_NODE` default to `true`
1617
- Add `XmlMapper.shared()`
1718
- Minimum Java baseline: Java 17

release-notes/VERSION-2.x

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Project: jackson-dataformat-xml
1010
(fix contributed by Joo Hyuk K)
1111
- Upgrade Woodstox to 7.1.0
1212

13+
2.18.3 (28-Feb-2025)
14+
15+
No changes since 2.18.2
16+
1317
2.18.2 (27-Nov-2024)
1418

1519
#678: XML module not registered correctly when setting a custom `SerializerFactory`

src/main/java/tools/jackson/dataformat/xml/ser/ToXmlGenerator.java

-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ public class ToXmlGenerator
4444
*/
4545
protected final static String DEFAULT_UNKNOWN_ELEMENT = "unknown";
4646

47-
48-
4947
/*
5048
/**********************************************************************
5149
/* Configuration

0 commit comments

Comments
 (0)