All Versions
30
Latest Version
Avg Release Cycle
30 days
Latest Release
1025 days ago

Changelog History
Page 3

  • v1.0.40 Changes

    June 30, 2019
    • Return correct EOF error type on cut-off decimal numbers (#525, thanks @17dec)
  • v1.0.39 Changes

    February 28, 2019
    • ๐Ÿ›  Fix roundtrip of adjacently tagged enum containing f32 (#520)
  • v1.0.38 Changes

    February 01, 2019
    • Add Deserializer::disable_recursion_limit guarded by an "unbounded_depth" Cargo cfg; this allows parsing arbitrarily deep JSON structures without any consideration for overflowing the stack; see documentation in the link for how to do this safely (#509)
  • v1.0.37 Changes

    January 23, 2019

    โ†ช Work around a compounding error message bug when using serde_json in combination with erased-serde (dtolnay/erased-serde#21) that resulted in error messages like:

    "trailing comma at line 32 column 41 at line 32 column 41 at line 33 column 37 at line 34 column 33 at line 35 column 29 at line 36 column 25 at line 36 column 25 at line 36 column 25 at line 36 column 25"

  • v1.0.36 Changes

    January 16, 2019
    • ๐Ÿ›  Fix serialization of maps with u128 key (#511)
  • v1.0.35 Changes

    January 13, 2019
    • ๐Ÿ“š Update example code in documentation to 2018 edition
  • v1.0.34 Changes

    December 31, 2018
    • ๐Ÿ‘Œ Support serialization of i128 to Value if "arbitrary_precision" feature is enabled (#506, thanks @koushiro)
  • v1.0.33 Changes

    November 09, 2018
    • ๐Ÿ‘ Allow map key to be borrowed when deserializing from &Value (#503)
  • v1.0.32 Changes

    October 04, 2018
    • ๐Ÿ›  Fix panic when parsing floating point number with exponent of E-2147483647 in debug mode (#492)
  • v1.0.31 Changes

    September 26, 2018
    • ๐Ÿ‘Œ Improve performance of parsing strings containing hex escape sequences (#489, thanks @yjh0502)