Skip to content

Commit 5ed863e

Browse files
committed
Merge branch '2.x' into 3.0
2 parents c4d34e6 + ecf5de2 commit 5ed863e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

release-notes/VERSION-2.x

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

3638
2.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+
93100
2.18.5 (27-Oct-2025)
94101
(same as 2.18.4.1 on 10-June-2025)
95102

src/main/java/tools/jackson/core/json/UTF8DataInputJsonParser.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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':

0 commit comments

Comments
 (0)