Skip to content

v0.3.12: Merge pull request #50 from hashicorp/cs/empty-map-value

Compare
Choose a tag to compare
@cam-stitt cam-stitt released this 10 May 21:39
· 49 commits to main since this release
a7b05ff

This release fixes an issue where empty maps where being converted to map[interface{}]interface{}, which therefore was failing to marshal for the json import. From this release, empty maps will be converted to map[string]interface{} to provide safety for such imports.