Skip to content

Commit

Permalink
Update release notes wrt #730, move test case to non-failing
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 6, 2023
1 parent dbf0f7c commit cfeeccb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
16 changes: 11 additions & 5 deletions release-notes/CREDITS-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,14 @@ Doug Roper (htmldoug@github)
(2.9.6)
* Reported, Contributed test for #563: Async parser does not keep track of Array context properly
(2.10.0)
* Reported #730: JSON precision loss on `copyCurrentEvent()` for floats that require greater
than `double` precision
(2.15.0)
* Contributed #733: Add `StreamReadCapability.EXACT_FLOATS` to indicate whether parser reports exact
floating-point values or not
(2.14.0)
floating-point values or not
(2.14.0)
* Reported #736: `JsonPointer` quadratic memory use: OOME on deep inputs
(2.14.0)
(2.14.0)

Alexander Eyers-Taylor (aeyerstaylor@github)
* Reported #510: Fix ArrayIndexOutofBoundsException found by LGTM.com
Expand Down Expand Up @@ -299,9 +302,12 @@ Vlad Tatavu (vladt@github)

PJ Fanning (pjfanning@github)
* Contributed #577: Improve performance of floating-point number parsing
(2.14.0)
(2.14.0)
* Contributed #730: JSON precision loss on `copyCurrentEvent()` for floats that require greater
than `double` precision
(2.15.0)
* Contributed #744: Limit size of exception message in BigDecimalParser
(2.13.3)
(2.13.3)
* Contributed #749: Improve performance of writing floating-point numbers
(2.14.0)
* Contributed #773: Add option to accept non-standard trailing decimal point
Expand Down
4 changes: 4 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ JSON library.
=== Releases ===
------------------------------------------------------------------------

#730: JSON precision loss on `copyCurrentEvent()` for floats that require greater
than `double` precision
(reported by Doug R)
(contributed by @pjfanning)
#968: Prevent inefficient internal conversion from `BigDecimal` to `BigInteger`
wrt ultra-large scale

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

import com.fasterxml.jackson.core.BaseTest;
import com.fasterxml.jackson.core.JsonFactory;
Expand Down

0 comments on commit cfeeccb

Please sign in to comment.