File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed
src/test/java/com/fasterxml/jackson/core/read Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -167,11 +167,14 @@ Doug Roper (htmldoug@github)
167
167
(2.9 .6 )
168
168
* Reported , Contributed test for #563 : Async parser does not keep track of Array context properly
169
169
(2.10 .0 )
170
+ * Reported #730 : JSON precision loss on `copyCurrentEvent()` for floats that require greater
171
+ than `double ` precision
172
+ (2.15 .0 )
170
173
* 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 )
173
176
* Reported #736 : `JsonPointer` quadratic memory use: OOME on deep inputs
174
- (2.14 .0 )
177
+ (2.14 .0 )
175
178
176
179
Alexander Eyers - Taylor (aeyerstaylor @github )
177
180
* Reported #510 : Fix ArrayIndexOutofBoundsException found by LGTM.com
@@ -299,9 +302,12 @@ Vlad Tatavu (vladt@github)
299
302
300
303
PJ Fanning (pjfanning @github )
301
304
* 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 )
303
309
* Contributed #744 : Limit size of exception message in BigDecimalParser
304
- (2.13 .3 )
310
+ (2.13 .3 )
305
311
* Contributed #749 : Improve performance of writing floating-point numbers
306
312
(2.14 .0 )
307
313
* Contributed #773 : Add option to accept non-standard trailing decimal point
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ JSON library.
14
14
= == Releases == =
15
15
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
16
16
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 )
17
21
#968 : Prevent inefficient internal conversion from `BigDecimal` to `BigInteger`
18
22
wrt ultra - large scale
19
23
Original file line number Diff line number Diff line change 1
- package com .fasterxml .jackson .failing ;
1
+ package com .fasterxml .jackson .core . read ;
2
2
3
3
import com .fasterxml .jackson .core .BaseTest ;
4
4
import com .fasterxml .jackson .core .JsonFactory ;
You can’t perform that action at this time.
0 commit comments