DecodeMap is split into DecodeMap, DecodeTypedMap, and DecodeUntypedMap.
New msgpack extensions API.
Changed
Reset* functions also reset flags.
SetMapDecodeFunc is renamed to SetMapDecoder.
StructAsArray is renamed to UseArrayEncodedStructs.
SortMapKeys is renamed to SetSortMapKeys.
Removed
UseJSONTag is removed. Use SetCustomStructTag("json") instead.
v4
Encode, Decode, Marshal, and Unmarshal are changed to accept single argument. EncodeMulti and
DecodeMulti are added as replacement.
Added EncodeInt8/16/32/64 and EncodeUint8/16/32/64.
Encoder changed to preserve type of numbers instead of chosing most compact encoding. The old
behavior can be achieved with Encoder.UseCompactEncoding.
v3.3
msgpack:",inline" tag is restored to force inlining structs.
v3.2
Decoding extension types returns pointer to the value instead of the value. Fixes #153
v3
gopkg.in is not supported any more. Update import path to github.com/vmihailenco/msgpack.
Msgpack maps are decoded into map[string]interface{} by default.
EncodeSliceLen is removed in favor of EncodeArrayLen. DecodeSliceLen is removed in favor of
DecodeArrayLen.
Embedded structs are automatically inlined where possible.