Skip to content

Commit 7b39158

Browse files
committed
Merge branch '3.x' into fix/LONG-instead-of-BIG_INTEGER-for-Ion-1.11.11
2 parents 5e2776f + fc51f8b commit 7b39158

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

ion/src/test/java/tools/jackson/dataformat/ion/IonNumberOverflowTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ public void testLongAsBigIntegerSize() throws Exception {
8181
IonParser bigIntLongParser = (IonParser) new IonFactory().createParser(ObjectReadContext.empty(),
8282
bigIntLongValue.toString());
8383
assertEquals(JsonToken.VALUE_NUMBER_INT, bigIntLongParser.nextToken());
84-
// Ion 1.11.11+ changed behavior: values that fit in long are now classified as LONG
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)
8586
assertEquals(JsonParser.NumberType.LONG, bigIntLongParser.getNumberType());
8687
assertEquals(JsonParser.NumberTypeFP.UNKNOWN, bigIntLongParser.getNumberTypeFP());
8788
assertEquals(bigIntLongValue.longValue(), bigIntLongParser.getLongValue());

release-notes/VERSION

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ implementations)
1919
#619: (avro, cbor, ion, smile) Add `isEnabled()` methods for format-specific features
2020
(like `CBORReadFeature` and `CBORWriteFeature`) to mappers
2121
(requested by Andy W)
22+
#623: (ion) Upgrade `ion-java` dep to 1.11.11 (from 1.11.10)
23+
(requested by @Shaurya0108)
2224

2325
3.0.1 (21-Oct-2025)
2426

release-notes/VERSION-2.x

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ Active maintainers:
1616

1717
2.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

2122
2.20.1 (not yet released)
2223

0 commit comments

Comments
 (0)