Skip to content

Commit fd2eada

Browse files
committed
Merge branch '2.x' into 3.x
2 parents ef744c5 + 52f39ad commit fd2eada

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Project contains versions 2.0 and above: source code for earlier (1.x) versions
2626
| Type | Status |
2727
| ---- | ------ |
2828
| Build (CI) | [![Build (github)](https://github.com/FasterXML/jackson-core/actions/workflows/main.yml/badge.svg)](https://github.com/FasterXML/jackson-core/actions/workflows/main.yml) |
29-
| Artifact | ![Maven Central](https://img.shields.io/maven-central/v/tools.jackson.core/jackson-core) |
29+
| Artifact | [![Maven Central](https://img.shields.io/maven-central/v/tools.jackson.core/jackson-core.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/tools.jackson.core/jackson-core) |
3030
| OSS Sponsorship | [![Tidelift](https://tidelift.com/badges/package/maven/com.fasterxml.jackson.core:jackson-core)](https://tidelift.com/subscription/pkg/maven-com-fasterxml-jackson-core-jackson-core?utm_source=maven-com-fasterxml-jackson-core-jackson-core&utm_medium=referral&utm_campaign=readme) |
3131
| Javadocs | [![Javadoc](https://javadoc.io/badge/tools.jackson.core/jackson-core.svg)](https://javadoc.io/doc/tools.jackson.core/jackson-core) |
3232
| Code coverage (3.x) (latest) | [![codecov.io](https://codecov.io/github/FasterXML/jackson-core/coverage.svg?branch=3.x)](https://codecov.io/github/FasterXML/jackson-core?branch=3.x) |

release-notes/VERSION-2.x

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

17+
2.21.2 (not yet released)
18+
19+
#1541: Unexpected Illegal surrogate character when parsing field names
20+
(fix by @cowtowncoder, w/ Claude code)
21+
1722
2.21.1 (22-Feb-2026)
1823

1924
#1548: `StreamReadConstraints.maxDocumentLength` not checked when
@@ -62,6 +67,17 @@ No changes since 2.20.1
6267
#1462: Deprecate `URL`-taking factory method of `JsonFactory`
6368
- Generate SBOMs [JSTEP-14]
6469

70+
2.19.5 (not yet released)
71+
72+
#1512: Number-parsing fix for `UTF8DataInputJsonParser`
73+
(reported by @ventusfortis)
74+
#1548: `StreamReadConstraints.maxDocumentLength` not checked when
75+
creating parser with fixed buffer
76+
#1555: Enforce `StreamReadConstraints.maxNumberLength` for
77+
non-blocking (async) parser
78+
(reported by Prabhav S, Rohan N)
79+
(fix by @pjfanning)
80+
6581
2.19.4 (29-Oct-2025)
6682
2.19.3 (29-Oct-2025)
6783
2.19.2 (18-Jul-2025)

src/test/java/tools/jackson/core/unittest/read/EscapedSurrogateInFieldName1541Test.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
*<p>
1818
* See also {@code AsyncEscapedSurrogateInFieldName1541Test} for async parser tests.
1919
*/
20-
class EscapedSurrogateInFieldName1541Test extends JacksonCoreTestBase
20+
class EscapedSurrogateInFieldName1541Test
21+
extends JacksonCoreTestBase
2122
{
2223
private final JsonFactory FACTORY = newStreamFactory();
2324

0 commit comments

Comments
 (0)