vendor/github.com/mitchellh/mapstructure/CHANGELOG.md
changeset 260 445e01aede7e
parent 256 6d9efbef00a9
equal deleted inserted replaced
259:db4911b0c721 260:445e01aede7e
     1 ## unreleased
     1 ## 1.5.0
     2 
     2 
     3 * Fix regression where `*time.Time` value would be set to empty and not be sent 
     3 * New option `IgnoreUntaggedFields` to ignore decoding to any fields
       
     4   without `mapstructure` (or the configured tag name) set [GH-277]
       
     5 * New option `ErrorUnset` which makes it an error if any fields
       
     6   in a target struct are not set by the decoding process. [GH-225]
       
     7 * New function `OrComposeDecodeHookFunc` to help compose decode hooks. [GH-240]
       
     8 * Decoding to slice from array no longer crashes [GH-265]
       
     9 * Decode nested struct pointers to map [GH-271]
       
    10 * Fix issue where `,squash` was ignored if `Squash` option was set. [GH-280]
       
    11 * Fix issue where fields with `,omitempty` would sometimes decode
       
    12   into a map with an empty string key [GH-281]
       
    13 
       
    14 ## 1.4.3
       
    15 
       
    16 * Fix cases where `json.Number` didn't decode properly [GH-261]
       
    17 
       
    18 ## 1.4.2
       
    19 
       
    20 * Custom name matchers to support any sort of casing, formatting, etc. for
       
    21   field names. [GH-250]
       
    22 * Fix possible panic in ComposeDecodeHookFunc [GH-251]
       
    23 
       
    24 ## 1.4.1
       
    25 
       
    26 * Fix regression where `*time.Time` value would be set to empty and not be sent
     4   to decode hooks properly [GH-232]
    27   to decode hooks properly [GH-232]
     5 
    28 
     6 ## 1.4.0
    29 ## 1.4.0
     7 
    30 
     8 * A new decode hook type `DecodeHookFuncValue` has been added that has
    31 * A new decode hook type `DecodeHookFuncValue` has been added that has