vendor/github.com/mitchellh/mapstructure/CHANGELOG.md
changeset 260 445e01aede7e
parent 256 6d9efbef00a9
--- a/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md	Tue Aug 23 22:33:28 2022 +0200
+++ b/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md	Tue Aug 23 22:39:43 2022 +0200
@@ -1,6 +1,29 @@
-## unreleased
+## 1.5.0
+
+* 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]
 
-* Fix regression where `*time.Time` value would be set to empty and not be sent 
+## 1.4.3
+
+* Fix cases where `json.Number` didn't decode properly [GH-261]
+
+## 1.4.2
+
+* Custom name matchers to support any sort of casing, formatting, etc. for
+  field names. [GH-250]
+* Fix possible panic in ComposeDecodeHookFunc [GH-251]
+
+## 1.4.1
+
+* Fix regression where `*time.Time` value would be set to empty and not be sent
   to decode hooks properly [GH-232]
 
 ## 1.4.0