|
32 | 32 | ### /UI2/CL_JSON |
33 | 33 | * Fixed: enhanced processing of deserialization into typed TYPE REFs |
34 | 34 | * Fixed: deserialization of JSON 'null' into complex, not reference ABAP fields does not lead to exception in strict mode ([details](https://github.com/SAP/abap-to-json/pull/5)) |
35 | | -* Fixed: Added support for ABAP_BOOLEAN type. |
| 35 | +* Fixed: Support for ABAP_BOOLEAN type was added. |
36 | 36 | * Fixed: performance optimization for deserializing strings with escaped line breaks and special characters. When you have escaped "\", e.g. "\\" it is still slow. |
37 | 37 | * Fixed: short dump in conversion exits routines on SERIALIZE/DESERIALIZE because of the wrong data type (OBJECTS_NOT_CHAR). |
38 | 38 | * Fixed. Added support for the timezone offsets for ISO8601. |
@@ -172,12 +172,13 @@ Delivered with OP 2025 and OP 2023 FPS2. Note for OP 2023 (SAP_BASIS 758) |
172 | 172 |
|
173 | 173 | ## Note [2429758](https://launchpad.support.sap.com/#/notes/2429758) |
174 | 174 | * Fixed: Short Dump on deserialization of classes with read-only attributes |
175 | | -* New: Serialization parameter added NUMC_AS_STRING, controlling the way NUMC fields are serialized. The default is FALSE. If set to TRUE, NUMC fields are serialized not as numbers, but as strings, with all leading zeroes. Deserialization works compatibly with both ways of NUMC serialized data. |
| 175 | +* New: The serialization parameter was added to NUMC_AS_STRING, controlling the way NUMC fields are serialized. The default is FALSE. If set to TRUE, NUMC fields are serialized not as numbers, but as strings, with all leading zeroes. Deserialization works compatibly with both ways of NUMC serialized data. |
176 | 176 | * New: GENERATE and GENERATE_INT methods are added for the on-the-fly creation of ABAP data objects from JSON, without the need to have a predefined ABAP structure. Supports automatic creation of ABAP structures, tables, and elementary types, concerning JSON types. Supports structure/table nesting. |
177 | 177 | * New: DESERIALIZE_INT method throws an exception CX_SY_MOVE_CAST_ERROR and stops further processing in case of malformed data found and STRICT_MODE parameter in constructor set to TRUE. |
178 | | -* New: Added support of XSTRING as input for deserialization. |
| 178 | +* New: Support for XSTRING was added as input for deserialization. |
179 | 179 |
|
180 | 180 | ## Note [2480119](https://launchpad.support.sap.com/#/notes/2480119) |
| 181 | +!Last note with support of SAP_BASIS 740 |
181 | 182 | * New: GENERATE method creates a local custom class for deserialization (lc_json_custom), instead of standard /ui2/cl_json |
182 | 183 | * Fixed: Internal tables are not initialized when deserializing JSON with empty arrays |
183 | 184 | * New: Deserialization into a field with REF TO data type, if the field is bound, using a referenced data type |
|
0 commit comments