File tree 2 files changed +3
-2
lines changed
src/main/java/tools/jackson/dataformat/xml
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -17,5 +17,6 @@ Version: 3.x (for earlier see VERSION-2.x)
17
17
#727: Change `XmlWriteFeature.WRITE_NULLS_AS_XSI_NIL` default to `true`
18
18
#728: Change `XmlWriteFeature.AUTO_DETECT_XSI_TYPE` default to `true`
19
19
#729: Change `XmlWriteFeature.WRITE_XML_SCHEMA_CONFORMING_FLOATS` default to `true`
20
+ #732: Change `XmlReadFeature.AUTO_DETECT_XSI_TYPE` default to `true`
20
21
- Add `XmlMapper.shared()`
21
22
- Minimum Java baseline: Java 17
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ public enum XmlReadFeature implements FormatFeature
22
22
* usually used for Polymorphic handling where it is difficult
23
23
* to specify proper XML Namespace for type identifier.
24
24
*<p>
25
- * Default setting is {@code false}.
25
+ * Default setting is {@code true} (was {@code false} in Jackson 2.x) .
26
26
*/
27
- AUTO_DETECT_XSI_TYPE (false ),
27
+ AUTO_DETECT_XSI_TYPE (true ),
28
28
29
29
/**
30
30
* Feature that indicates whether empty XML elements
You can’t perform that action at this time.
0 commit comments