Skip to content

Commit 5bceeb2

Browse files
committed
Update Woodstox to 6.2.5, resolved #463 and #465
1 parent c577dc0 commit 5bceeb2

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
8686
<dependency>
8787
<groupId>com.fasterxml.woodstox</groupId>
8888
<artifactId>woodstox-core</artifactId>
89-
<version>6.2.4</version>
89+
<version>6.2.5</version>
9090
<exclusions>
9191
<exclusion>
9292
<groupId>javax.xml.stream</groupId>

release-notes/CREDITS-2.x

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,11 @@ Westin Miller (westinrm@github)
155155

156156
* Contributed #456: Fix JsonAlias with unwrapped lists
157157
(2.12.3)
158+
159+
Fabian Meumertzheim (fmeum@github)
160+
161+
* Reported #463: NPE via boundary condition, document with only XML declaration
162+
(2.13.0)
163+
* Reported #465: ArrayIndexOutOfBoundsException in UTF8Reader (ossfuzz)
164+
(2.13.0)
165+

release-notes/VERSION-2.x

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Project: jackson-dataformat-xml
1010
(reported by richardsonwk@github)
1111
#462: Remove `jackson-module-jaxb-annotations` runtime dependency (leave
1212
as a test dep)
13+
#463: NPE via boundary condition, document with only XML declaration
14+
(reported by Fabian M)
15+
#465: ArrayIndexOutOfBoundsException in UTF8Reader (ossfuzz)
16+
(reported by Fabian M)
1317

1418
2.12.3 (not yet released)
1519

src/test/java/com/fasterxml/jackson/dataformat/xml/failing/Fuzz463_32872_XmlDeclTest.java renamed to src/test/java/com/fasterxml/jackson/dataformat/xml/fuzz/Fuzz463_32872_XmlDeclTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fasterxml.jackson.dataformat.xml.failing;
1+
package com.fasterxml.jackson.dataformat.xml.fuzz;
22

33
import java.nio.charset.StandardCharsets;
44

src/test/java/com/fasterxml/jackson/dataformat/xml/failing/Fuzz465_32906_CDataReadTest.java renamed to src/test/java/com/fasterxml/jackson/dataformat/xml/fuzz/Fuzz465_32906_CDataReadTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fasterxml.jackson.dataformat.xml.failing;
1+
package com.fasterxml.jackson.dataformat.xml.fuzz;
22

33
import com.fasterxml.jackson.core.exc.StreamReadException;
44
import com.fasterxml.jackson.databind.JsonNode;

0 commit comments

Comments
 (0)