Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ com.fasterxml.jackson.core.*;version=${project.version}
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/versions/**/module-info.*</exclude>
<!-- 09-Jun-2025, PJ: [core#1446] Exclude Multi-Release classes
for Java 22 due to issues in Android Linting tool -->
<exclude>META-INF/versions/22/**</exclude>
for Java 23 due to issues in Android Linting tool -->
<exclude>META-INF/versions/23/**</exclude>
</excludes>
</filter>
</filters>
Expand All @@ -211,6 +211,14 @@ com.fasterxml.jackson.core.*;version=${project.version}
-->
<shadedPattern>com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore}</shadedPattern>
</relocation>
<relocation>
<pattern>ch/randelshofer/fastdoubleparser/bte</pattern>
<shadedPattern>com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore}/bte</shadedPattern>
</relocation>
<relocation>
<pattern>ch/randelshofer/fastdoubleparser/chr</pattern>
<shadedPattern>com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore}/chr</shadedPattern>
</relocation>
<relocation>
<pattern>META-INF/LICENSE</pattern>
<shadedPattern>META-INF/FastDoubleParser-LICENSE</shadedPattern>
Expand Down Expand Up @@ -293,7 +301,7 @@ com.fasterxml.jackson.core.*;version=${project.version}
<dependency>
<groupId>ch.randelshofer</groupId>
<artifactId>fastdoubleparser</artifactId>
<version>1.0.90</version>
<version>2.0.1</version>
</dependency>
<!-- Test dependencies -->
<dependency>
Expand Down
3 changes: 2 additions & 1 deletion release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ a pure JSON library.

#1438: `ParserBase.close()` does not clear `_currToken`
#1441: Add `StreamReadFeature.CLEAR_CURRENT_TOKEN_ON_CLOSE` (default: true)
#1448: Upgrade `FastDoubleParser` to 2.0.1
(contributed by @pjfanning)
- Generate SBOMs [JSTEP-14]

2.19.1 (not yet released)
Expand All @@ -30,7 +32,6 @@ a pure JSON library.
(reported by Vincent B)
(fix by @pjfanning)


2.19.0 (24-Apr-2025)

#633: Allow skipping `RS` CTRL-CHAR to support JSON Text Sequences
Expand Down