File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,12 @@ com.fasterxml.jackson.core.*;version=${project.version}
197
197
<filter >
198
198
<artifact >ch.randelshofer:fastdoubleparser</artifact >
199
199
<excludes >
200
+ <exclude >META-INF/LICENSE</exclude >
201
+ <exclude >META-INF/MANIFEST.MF</exclude >
200
202
<exclude >META-INF/versions/**/module-info.*</exclude >
203
+ <!-- 09-Jun-2025, PJ: [core#1446] Exclude Multi-Release classes
204
+ for Java 22 due to issues in Android Linting tool -->
205
+ <exclude >META-INF/versions/22/**</exclude >
201
206
</excludes >
202
207
</filter >
203
208
</filters >
@@ -239,10 +244,6 @@ com.fasterxml.jackson.core.*;version=${project.version}
239
244
<pattern >META-INF/versions/21/ch/randelshofer/fastdoubleparser</pattern >
240
245
<shadedPattern >META-INF/versions/21/com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore} </shadedPattern >
241
246
</relocation >
242
- <relocation >
243
- <pattern >META-INF/versions/22/ch/randelshofer/fastdoubleparser</pattern >
244
- <shadedPattern >META-INF/versions/22/com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore} </shadedPattern >
245
- </relocation >
246
247
</relocations >
247
248
</configuration >
248
249
</execution >
Original file line number Diff line number Diff line change @@ -470,6 +470,11 @@ Haruki (@stackunderflow111)
470
470
when custom characterEscape is used
471
471
(2.18.3)
472
472
473
+ Vincent Biret (@baywet)
474
+ * Reported #1446: Invalid package reference to "java.lang.foreign" from
475
+ `com.fasterxml.jackson.core:jackson-core` (from `FastDoubleParser`) [Android]
476
+ (2.18.5)
477
+
473
478
Yanming Zhou (@quaff)
474
479
* Requested #633: Allow skipping `RS` CTRL-CHAR to support JSON Text Sequences
475
480
(2.19.0)
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ a pure JSON library.
52
52
#1433 : `JsonParser#getNumberType()` throws `JsonParseException` when
53
53
the current token is non - numeric instead of returning null
54
54
(reported by @CrazySqueak )
55
+ #1446 : Invalid package reference to "java.lang.foreign" from
56
+ `com .fasterxml .jackson .core :jackson - core ` (from `FastDoubleParser `) [Android ]
57
+ (reported by Vincent B )
58
+ (fix by @pjfanning )
55
59
56
60
2.18 .4 (06 - May - 2025 )
57
61
You can’t perform that action at this time.
0 commit comments