Skip to content

Commit ec63358

Browse files
committed
release 2.1.0
+ Improved performance + Upgraded bundled msgpack headers to 3.2.0 * Merged PR #101: Update README in order to match compatibile PHP version * Merged PR #125: fix ce->name is a zend_string * Merged PR #106: Update README * Merged PR #126: add mising tests in archive * Merged PR #135: Add fixes for issue #81 This also includes tests. * Merged PR #143: Fixed build with PHP-7.4 * Fixed issue #139: Segmentation fault when using cloned unpacker * Fixed issue #132: Segfault on session php7.3 * Fixed issue #107: $unpacker->execute() bug * Fixed issue #83: Arrays and negative index * Fixed issue #137: DateTime(Immutable) serialization doesn't work with php 7.4 RC1 * Fixed issue #105: MessagePackUnpacker() bug * Fixed issue #90: msgpack_unpack is super slow (30x times igbinary) on big data sets * Fixed issue #91: Private property in base class * Fixed issue #67: Integer overflow on a 64-bit system * Fixed issue #33: int64 and uint64 decode is not supported in 32-bit php * Fixed issue #119: uint64 numbers are cast to uint on Windows * Fixed issue #134: msgpack-php msgpack_serialize/msgpack_pack not handling properly large int * Fixed issue #81: Serialize optimization * Fixed issue #108: tests/041.phpt failure * Fixed issue #142: Recursion encoded as NULL * Fixed issue #138: Serializers comparison for session like data
1 parent cdb2e94 commit ec63358

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
<email>[email protected]</email>
2323
<active>yes</active>
2424
</lead>
25-
<date>2019-12-20</date>
25+
<date>2020-02-28</date>
2626
<version>
27-
<release>2.1.0beta1</release>
27+
<release>2.1.0</release>
2828
<api>2.0.3</api>
2929
</version>
3030
<stability>
31-
<release>beta</release>
31+
<release>stable</release>
3232
<api>stable</api>
3333
</stability>
3434
<license filesource="LICENSE">3-Clause-BSD</license>

php_msgpack.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "Zend/zend_smart_str.h" /* for smart_string */
55

6-
#define PHP_MSGPACK_VERSION "2.1.0beta1"
6+
#define PHP_MSGPACK_VERSION "2.1.0"
77

88
extern zend_module_entry msgpack_module_entry;
99
#define phpext_msgpack_ptr &msgpack_module_entry

0 commit comments

Comments
 (0)