All Versions
18
Latest Version
Avg Release Cycle
65 days
Latest Release
-

Changelog History
Page 1

  • v1.5.1 Changes

    • Wrap errors so they're compatible with errors.Is and errors.As [GH-282]
    • ๐Ÿ›  Fix map of slices not decoding properly in certain cases. [GH-266]
  • v1.5.0 Changes

    • ๐Ÿ†• New option IgnoreUntaggedFields to ignore decoding to any fields without mapstructure (or the configured tag name) set [GH-277]
    • ๐Ÿ†• New option ErrorUnset which makes it an error if any fields in a target struct are not set by the decoding process. [GH-225]
    • ๐Ÿ†• New function OrComposeDecodeHookFunc to help compose decode hooks. [GH-240]
    • Decoding to slice from array no longer crashes [GH-265]
    • Decode nested struct pointers to map [GH-271]
    • ๐Ÿ›  Fix issue where ,squash was ignored if Squash option was set. [GH-280]
    • ๐Ÿ›  Fix issue where fields with ,omitempty would sometimes decode into a map with an empty string key [GH-281]
  • v1.4.3 Changes

    • ๐Ÿ›  Fix cases where json.Number didn't decode properly [GH-261]
  • v1.4.2 Changes

    • ๐Ÿ‘ Custom name matchers to support any sort of casing, formatting, etc. for field names. [GH-250]
    • ๐Ÿ›  Fix possible panic in ComposeDecodeHookFunc [GH-251]
  • v1.4.1 Changes

    • ๐Ÿ›  Fix regression where *time.Time value would be set to empty and not be sent to decode hooks properly [GH-232]
  • v1.4.0 Changes

    • A new decode hook type DecodeHookFuncValue has been added that has access to the full values. [GH-183]
    • ๐Ÿ‘ Squash is now supported with embedded fields that are struct pointers [GH-205]
    • Empty strings will convert to 0 for all numeric types when weakly decoding [GH-206]
  • v1.3.3 Changes

    • Decoding maps from maps creates a settable value for decode hooks [GH-203]
  • v1.3.2 Changes

    June 07, 2020
    • ๐Ÿ‘ Decode into interface type with a struct value is supported [GH-187]
  • v1.3.1 Changes

    May 21, 2020
    • Squash should only squash embedded structs. [GH-194]
  • v1.3.0 Changes

    April 28, 2020
    • โž• Added ",omitempty" support. This will ignore zero values in the source structure when encoding. [GH-145]