Skip to content

Commit

Permalink
release 2.1.1
Browse files Browse the repository at this point in the history
* Fixed issue #149: msgpack unpack error
  • Loading branch information
m6w6 committed Jul 27, 2020
1 parent a0a7cba commit 4088b6a
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 28 deletions.
73 changes: 46 additions & 27 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2020-02-28</date>
<date>2020-07-27</date>
<version>
<release>2.1.0</release>
<release>2.1.1</release>
<api>2.0.3</api>
</version>
<stability>
Expand All @@ -33,30 +33,7 @@
</stability>
<license filesource="LICENSE">3-Clause-BSD</license>
<notes><![CDATA[
+ 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
* Fixed issue #149: msgpack unpack error
]]></notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -217,6 +194,8 @@
<file name="issue132.phpt" role="test" />
<file name="issue137.phpt" role="test" />
<file name="issue139.phpt" role="test" />
<file name="issue149.phpt" role="test" />
<file name="issue149.ser.txt" role="test" />
</dir>
</dir>
</contents>
Expand All @@ -232,7 +211,47 @@
</dependencies>
<providesextension>msgpack</providesextension>
<extsrcrelease />
<changelog>
<changelog>

<release>
<date>2020-02-28</date>
<version>
<release>2.1.0</release>
<api>2.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license filesource="LICENSE">3-Clause-BSD</license>
<notes><![CDATA[
+ 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
]]></notes>
</release>

<release>
<date>2018-12-20</date>
<version>
Expand Down
2 changes: 1 addition & 1 deletion php_msgpack.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

#define PHP_MSGPACK_VERSION "2.1.0"
#define PHP_MSGPACK_VERSION "2.1.1"

extern zend_module_entry msgpack_module_entry;
#define phpext_msgpack_ptr &msgpack_module_entry
Expand Down

0 comments on commit 4088b6a

Please sign in to comment.