You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
816 B

  1. ## v3.2
  2. - Decoding extension types returns pointer to the value instead of the value. Fixes #153
  3. ## v3
  4. - gopkg.in is not supported any more. Update import path to github.com/vmihailenco/msgpack.
  5. - Msgpack maps are decoded into map[string]interface{} by default.
  6. - EncodeSliceLen is removed in favor of EncodeArrayLen. DecodeSliceLen is removed in favor of DecodeArrayLen.
  7. - Embedded structs are automatically inlined where possible.
  8. - Time is encoded using extension as described in https://github.com/msgpack/msgpack/pull/209. Old format is supported as well.
  9. - EncodeInt8/16/32/64 is replaced with EncodeInt. EncodeUint8/16/32/64 is replaced with EncodeUint. There should be no performance differences.
  10. - DecodeInterface can now return int8/16/32 and uint8/16/32.
  11. - PeekCode returns codes.Code instead of byte.