aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/mapstructure/CHANGELOG.md')
-rw-r--r--vendor/github.com/mitchellh/mapstructure/CHANGELOG.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md b/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md
new file mode 100644
index 0000000..3b3cb72
--- /dev/null
+++ b/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md
@@ -0,0 +1,21 @@
1## 1.1.2
2
3* Fix error when decode hook decodes interface implementation into interface
4 type. [GH-140]
5
6## 1.1.1
7
8* Fix panic that can happen in `decodePtr`
9
10## 1.1.0
11
12* Added `StringToIPHookFunc` to convert `string` to `net.IP` and `net.IPNet` [GH-133]
13* Support struct to struct decoding [GH-137]
14* If source map value is nil, then destination map value is nil (instead of empty)
15* If source slice value is nil, then destination slice value is nil (instead of empty)
16* If source pointer is nil, then destination pointer is set to nil (instead of
17 allocated zero value of type)
18
19## 1.0.0
20
21* Initial tagged stable release.