Releases: monoculum/formam
Releases · monoculum/formam
v3.6.0
- feature: Call UnmarshalText for every value if the name ends with [] #38
- fixbug: Check array length when traversing array #40
- fixbug: Error "unsupported type; ..." with map[string]*struct #42
- fixbug: Decoding to struct with multiple embedded types with IgnoreUnknownKeys #46
v3.5.0
- Disable
UnmarshalText
interface by the DecoderOptions
struct. #34
- Fixed a bug when the traverse function fails and the current index/key was not flushed #35
v3.4.0
- Limit the array size to 16,000 by default to prevent people sending
[9999999]key
to starve a machine of memory. This can be configured with MaxSize
in DecoderOptions
. #32