File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed
src/test/java/tools/jackson/core/unittest/read Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff 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 ) |
Original file line number Diff line number Diff 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+
17222.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+
65812.19 .4 (29 - Oct - 2025 )
66822.19 .3 (29 - Oct - 2025 )
67832.19 .2 (18 - Jul - 2025 )
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments