Skip to content

Commit cfeeccb

Browse files
committed
Update release notes wrt #730, move test case to non-failing
1 parent dbf0f7c commit cfeeccb

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

release-notes/CREDITS-2.x

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,14 @@ Doug Roper (htmldoug@github)
167167
(2.9.6)
168168
* Reported, Contributed test for #563: Async parser does not keep track of Array context properly
169169
(2.10.0)
170+
* Reported #730: JSON precision loss on `copyCurrentEvent()` for floats that require greater
171+
than `double` precision
172+
(2.15.0)
170173
* Contributed #733: Add `StreamReadCapability.EXACT_FLOATS` to indicate whether parser reports exact
171-
floating-point values or not
172-
(2.14.0)
174+
floating-point values or not
175+
(2.14.0)
173176
* Reported #736: `JsonPointer` quadratic memory use: OOME on deep inputs
174-
(2.14.0)
177+
(2.14.0)
175178

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

300303
PJ Fanning (pjfanning@github)
301304
* Contributed #577: Improve performance of floating-point number parsing
302-
(2.14.0)
305+
(2.14.0)
306+
* Contributed #730: JSON precision loss on `copyCurrentEvent()` for floats that require greater
307+
than `double` precision
308+
(2.15.0)
303309
* Contributed #744: Limit size of exception message in BigDecimalParser
304-
(2.13.3)
310+
(2.13.3)
305311
* Contributed #749: Improve performance of writing floating-point numbers
306312
(2.14.0)
307313
* Contributed #773: Add option to accept non-standard trailing decimal point

release-notes/VERSION-2.x

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ JSON library.
1414
=== Releases ===
1515
------------------------------------------------------------------------
1616

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

src/test/java/com/fasterxml/jackson/failing/ParserPrecisionLoss730Test.java renamed to src/test/java/com/fasterxml/jackson/core/read/ParserPrecisionLoss730Test.java

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

33
import com.fasterxml.jackson.core.BaseTest;
44
import com.fasterxml.jackson.core.JsonFactory;

0 commit comments

Comments
 (0)