Skip to content

Commit

Permalink
Update Woodstox to 6.2.5, resolved #463 and #465
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 5, 2021
1 parent c577dc0 commit 5bceeb2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
<dependency>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>6.2.4</version>
<version>6.2.5</version>
<exclusions>
<exclusion>
<groupId>javax.xml.stream</groupId>
Expand Down
8 changes: 8 additions & 0 deletions release-notes/CREDITS-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,11 @@ Westin Miller (westinrm@github)

* Contributed #456: Fix JsonAlias with unwrapped lists
(2.12.3)

Fabian Meumertzheim (fmeum@github)

* Reported #463: NPE via boundary condition, document with only XML declaration
(2.13.0)
* Reported #465: ArrayIndexOutOfBoundsException in UTF8Reader (ossfuzz)
(2.13.0)

4 changes: 4 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Project: jackson-dataformat-xml
(reported by richardsonwk@github)
#462: Remove `jackson-module-jaxb-annotations` runtime dependency (leave
as a test dep)
#463: NPE via boundary condition, document with only XML declaration
(reported by Fabian M)
#465: ArrayIndexOutOfBoundsException in UTF8Reader (ossfuzz)
(reported by Fabian M)

2.12.3 (not yet released)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.dataformat.xml.failing;
package com.fasterxml.jackson.dataformat.xml.fuzz;

import java.nio.charset.StandardCharsets;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.dataformat.xml.failing;
package com.fasterxml.jackson.dataformat.xml.fuzz;

import com.fasterxml.jackson.core.exc.StreamReadException;
import com.fasterxml.jackson.databind.JsonNode;
Expand Down

0 comments on commit 5bceeb2

Please sign in to comment.