File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
src/test/java/com/fasterxml/jackson/dataformat/ion Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ tree model)
3838 <dependency >
3939 <groupId >com.amazon.ion</groupId >
4040 <artifactId >ion-java</artifactId >
41- <version >1.11.10 </version >
41+ <version >1.11.11 </version >
4242 </dependency >
4343
4444 <!-- Extends Jackson core, databind -->
Original file line number Diff line number Diff line change @@ -81,7 +81,9 @@ public void testLongAsBigIntegerSize() throws Exception {
8181 BigInteger bigIntLongValue = new BigInteger (Long .MAX_VALUE + "" ).subtract (BigInteger .TEN );
8282 IonParser bigIntLongParser = (IonParser ) new IonFactory ().createParser (bigIntLongValue .toString ());
8383 assertEquals (JsonToken .VALUE_NUMBER_INT , bigIntLongParser .nextToken ());
84- assertEquals (JsonParser .NumberType .BIG_INTEGER , bigIntLongParser .getNumberType ());
84+ // 23-Oct-2025: Ion 1.11.11+ changed behavior: values that fit in long are now
85+ // classified as LONG (was BIG_INTEGER before)
86+ assertEquals (JsonParser .NumberType .LONG , bigIntLongParser .getNumberType ());
8587 assertEquals (JsonParser .NumberTypeFP .UNKNOWN , bigIntLongParser .getNumberTypeFP ());
8688 assertEquals (bigIntLongValue .longValue (), bigIntLongParser .getLongValue ());
8789 }
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ Active maintainers:
1616
17172.21 .0 (not yet released )
1818
19- No changes since 2.20
19+ #623 : (ion ) Upgrade `ion - java ` dep to 1.11 .11 (from 1.11 .10 )
20+ (requested by @Shaurya0108 )
2021
21222.20 .1 (not yet released )
2223
You can’t perform that action at this time.
0 commit comments