Skip to content

Commit

Permalink
Update release notes wrt #270
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 6, 2021
1 parent 625398d commit 079b59e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,14 @@ public IonParser(IonReader r, IOContext ctxt, ObjectCodec codec) {
this(r, IonSystemBuilder.standard().build(), ctxt, codec, IonFactory.DEFAULT_ION_PARSER_FEATURE_FLAGS);
}

@Deprecated // in 2.12.3, remove from 2.13
IonParser(IonReader r, IonSystem system, IOContext ctxt, ObjectCodec codec) {
this(r, system, ctxt, codec, IonFactory.DEFAULT_ION_PARSER_FEATURE_FLAGS);
}

/**
* @since 2.13
*/
IonParser(IonReader r, IonSystem system, IOContext ctxt, ObjectCodec codec, int ionParserFeatures) {
this._reader = r;
this._ioContext = ctxt;
Expand Down
6 changes: 6 additions & 0 deletions release-notes/CREDITS-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -191,3 +191,9 @@ Fabian Meumertzheim (fmeum@github)

* Contributed #241: (ion) Respect `WRITE_ENUMS_USING_TO_STRING` in `EnumAsIonSymbolSerializer`
(2.12.2)

Nick (manaigrn-amzn@github)

* Contributed #270: (ion) Ion Polymorphic deserialization in 2.12 breaks wrt use of
Native Type Ids when upgrading from 2.8
(2.12.3)
7 changes: 5 additions & 2 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ Modules:
(reported by Fabian M)
#268: (smile) Handle sequence of Smile header markers without recursion
(reported by Fabian M)
#269: CBOR loses `Map` entries with specific `long` Map key values (32-bit boundary)
#269: (cbor) CBOR loses `Map` entries with specific `long` Map key values (32-bit boundary)
(reported by Quantum64@github)

#270: (ion) Ion Polymorphic deserialization in 2.12 breaks wrt use of Native Type Ids
when upgrading from 2.8
(contributed by Nick)

2.12.2 (03-Mar-2021)

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

0 comments on commit 079b59e

Please sign in to comment.