File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/main/java/tools/jackson/core/json Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ a pure JSON library.
3131#1477 : Add `JsonGenerator.has(StreamWriteCapability)` convenience method
3232#1500 : Add checks for surrogate pairing for UTF-8 generation
3333 (fix by @cowtowncoder , w / Claude code )
34+ #1512 : Number-parsing fix for `UTF8DataInputJsonParser`
35+ (reported by @ventusfortis )
3436- Add shading for FastDoubleParser JDK 23 class overrides
3537
36382.20 .1 (30 - Oct - 2025 )
@@ -90,6 +92,11 @@ No changes since 2.19.1
9092 (requested by Ilenia S )
9193 (fixed by @pjfanning )
9294
95+ (not yet released )
96+
97+ #1512 : Number-parsing fix for `UTF8DataInputJsonParser`
98+ (reported by @ventusfortis )
99+
931002.18 .5 (27 - Oct - 2025 )
94101 (same as 2.18 .4 .1 on 10 - June - 2025 )
95102
Original file line number Diff line number Diff line change @@ -831,6 +831,7 @@ private final String _nextName() throws IOException
831831 break ;
832832 case '.' : // as per [core#611]
833833 t = _parseFloatThatStartsWithPeriod (false , false );
834+ break ;
834835 case '0' :
835836 case '1' :
836837 case '2' :
You can’t perform that action at this time.
0 commit comments