Skip to content

Commit 079b59e

Browse files
committed
Update release notes wrt #270
1 parent 625398d commit 079b59e

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

ion/src/main/java/com/fasterxml/jackson/dataformat/ion/IonParser.java

+8
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,14 @@ public IonParser(IonReader r, IOContext ctxt, ObjectCodec codec) {
155155
this(r, IonSystemBuilder.standard().build(), ctxt, codec, IonFactory.DEFAULT_ION_PARSER_FEATURE_FLAGS);
156156
}
157157

158+
@Deprecated // in 2.12.3, remove from 2.13
159+
IonParser(IonReader r, IonSystem system, IOContext ctxt, ObjectCodec codec) {
160+
this(r, system, ctxt, codec, IonFactory.DEFAULT_ION_PARSER_FEATURE_FLAGS);
161+
}
162+
163+
/**
164+
* @since 2.13
165+
*/
158166
IonParser(IonReader r, IonSystem system, IOContext ctxt, ObjectCodec codec, int ionParserFeatures) {
159167
this._reader = r;
160168
this._ioContext = ctxt;

release-notes/CREDITS-2.x

+6
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,9 @@ Fabian Meumertzheim (fmeum@github)
191191

192192
* Contributed #241: (ion) Respect `WRITE_ENUMS_USING_TO_STRING` in `EnumAsIonSymbolSerializer`
193193
(2.12.2)
194+
195+
Nick (manaigrn-amzn@github)
196+
197+
* Contributed #270: (ion) Ion Polymorphic deserialization in 2.12 breaks wrt use of
198+
Native Type Ids when upgrading from 2.8
199+
(2.12.3)

release-notes/VERSION-2.x

+5-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@ Modules:
3030
(reported by Fabian M)
3131
#268: (smile) Handle sequence of Smile header markers without recursion
3232
(reported by Fabian M)
33-
#269: CBOR loses `Map` entries with specific `long` Map key values (32-bit boundary)
33+
#269: (cbor) CBOR loses `Map` entries with specific `long` Map key values (32-bit boundary)
3434
(reported by Quantum64@github)
35-
35+
#270: (ion) Ion Polymorphic deserialization in 2.12 breaks wrt use of Native Type Ids
36+
when upgrading from 2.8
37+
(contributed by Nick)
38+
3639
2.12.2 (03-Mar-2021)
3740

3841
#236: (cbor) `ArrayIndexOutOfBoundsException` in `CBORParser` for invalid UTF-8 String

0 commit comments

Comments
 (0)