|
| 1 | +# 2016-06-25 version 2.0.0 |
| 2 | + |
| 3 | +## << breaking changes >> |
| 4 | + |
| 5 | + * Removed autotools support. Use cmake instead (#476, #479) |
| 6 | + * Removed pointer version of msgpack::unpack APIs. Use reference version instead (#453) |
| 7 | + * Removed MSGPACK_DISABLE_LEGACY_CONVERT. msgpack::object::convert(T*) is removed by default. Use msgpack::object::convert(T&) instead (#451) |
| 8 | + * Removed msgpacl::type::nil. Use nil_t or define MSGPACK_USE_LECACY_NIL (#444) |
| 9 | + * Removed std::string to msgpack::object conversion (#434) |
| 10 | + |
| 11 | +## << recommended changes >> |
| 12 | + |
| 13 | + * Replaced msgpack::unpacked with msgpack::object_handle. msgpack::unpacked is kept as a typedef of msgpack::object_handle. (#448) |
| 14 | + |
| 15 | +## << other updates >> |
| 16 | + |
| 17 | + * Add strict size checking adaptor. Relaxed tuple conversion (#489) |
| 18 | + * Fix and Improve example codes (#487) |
| 19 | + * Add C++/CLI support for nullptr (#481) |
| 20 | + * Update the boost libraries that are contained by msgpack-c (#475) |
| 21 | + * Fix gcc_atomic.hpp location (#474) |
| 22 | + * Add C-Style array support (#466, #488) |
| 23 | + * Fix include file dependency (#464) |
| 24 | + * Add a visitor version of unpack API (#461) |
| 25 | + * Fix JSON string conversion from "nil" to "null" (#458) |
| 26 | + * Fix and Improve build system (#455, #471, #473, #486, #491) |
| 27 | + * Fix comments (#452) |
| 28 | + * Fix unintentional msgpack::zone moving problem (#447) |
| 29 | + * Fix operator>> and << for msgpack::object (#443) |
| 30 | + * Fix C++03 msgpack::zone::clear() memory access violation bug (#441) |
| 31 | + * Fix TARGET_OS_IPHONE checking (#436) |
| 32 | + * Fix invalid front() call for empty container (#435) |
| 33 | + * Fix compile error on g++6 (C++11 only) (#426, #430) |
| 34 | + * Fix zone size expansion logic (#423) |
| 35 | + * Fix wrong hader file dependency (#421) |
| 36 | + * Fix msvc specific problem (#420) |
| 37 | + * Add v2 API support (#415) |
| 38 | + |
1 | 39 | # 2016-01-22 version 1.4.0 |
2 | 40 |
|
3 | 41 | ## << recommended changes >> |
|
0 commit comments