All Versions
18
Latest Version
Avg Release Cycle
172 days
Latest Release
61 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.10.0 Changes
April 22, 2026- 👍 Raised the minimum supported PHP version to 8.2
- ⚡️ Updated the development toolchain: PHPUnit 11, PHP CS Fixer 3, and Psalm 5/6
- ✂ Removed the old PHPUnit compatibility layer and updated the test suite/configuration accordingly
- Replaced manual array/list detection with
array_is_list() - 👌 Improved examples and README, including a few defensive fixes and PHP 8.2-style cleanups
- ➕ Added
ext-decimaltorequire-dev - ⚡️ Updated GitHub Actions to use the current actions/checkout version
-
v0.9.2 Changes
December 18, 2025 -
v0.9.1 Changes
February 16, 2022- ➕ Added support for the Timestamp extension type
- ➕ Added PHP 8.1 to the test matrix and bumped test coverage to 100%
-
v0.9.0 Changes
October 25, 2021- 🚚 Moved the
MessagePack\Extclass toMessagePack\Type\Ext - 🚚 Moved the
MessagePack\TypeTransformer\CanPackinterface toMessagePack\CanPack - 🚚 Moved the
MessagePack\TypeTransformer\Extensioninterface toMessagePack\Extension - ⚡️ Introduced the
MessagePack\CanBePackedinterface, updated theMessagePack\Type\Map,MessagePack\Type\BinandMessagePack\Type\Extclasses to implement the interface - ✂ Removed the obsolete
MessagePack\TypeTransformer\MapTransformerandMessagePack\TypeTransformer\BinTransformertransformers, addedMessagePack\TypeTransformer\TraversableTransformer - Overflowed map integer keys are now always unpacked to strings, even if the
BIGINT_AS_GMPorBIGINT_AS_DECunpacking option is set - ➕ Added more examples and improved existing ones
- ➕ Added Psalm, a static analysis tool for PHP
- 🚚 Moved the
-
v0.8.0 Changes
March 18, 2021- 0️⃣ Made the
PackOptions::FORCE_STRoption the default - ⚡️ Micro-optimized the creation of GMP objects
- ⚡️ Updated README and example scripts
- Switched to GH actions
- 0️⃣ Made the
-
v0.7.2 Changes
December 18, 2020➕ Added
Packer::packFloat32()andPacker::packFloat64() -
v0.7.1 Changes
December 04, 2020- ➕ Added PHP 8 support
- ➕ Added
MessagePack\TypeTransformer\StreamTransformerto pack stream resources intoMP_BIN - ✂ Removed trailing dot from error messages
-
v0.7.0 Changes
January 29, 2020➕ Added
BufferUnpacker::getRemainingCount()BufferUnpacker::hasRemaining()- 🚀
BufferUnpacker::release() UnpackOptions::BIGINT_AS_DEC
✂ Removed
InsufficientDataException::unexpectedLength()IntegerOverflowExceptionUnpackOptions::BIGINT_AS_EXCEPTION
🔄 Changed
- 🚀
BufferUnpacker::tryUnpack()no longer releases the read buffer, to release the buffer useBufferUnpacker::release()
🛠 Fixed
- 🛠 Fixed the
BufferUnpackerconstructor to acceptUnpackOptionsinstead ofPackOptions - 🛠 Fixed checking the buffer size required to unpack
Ext(previously theExt"type" byte wasn't taken into account which could result in a noticeUninitialized string offsetfor extensions with zero-length data) - ⚠ Forbade non-int/string map keys (previously they were silently cast to int/string which could result in a warning
Illegal offset type)
Misc
- ➕ Added a target file for PHP-Fuzzer
- ➕ Added
.gitattributes - 🐳 Switched default PHP version in Docker to 7.4
- Applied minor optimizations
-
v0.6.1 Changes
October 02, 2019Gave transformers a higher priority than raw extensions while packing
-
v0.6.0 Changes
October 01, 2019➕ Added
- Methods:
BufferUnpacker::extendWith()BufferUnpacker::withBuffer()BufferUnpacker::read()Packer::extendWith()
- Interfaces:
TypeTransformer\Extension
- Classes:
Tests\Perf\Benchmark\PausableBenchmark
📇 Renamed
Type\Binary→Type\BinTypeTransformer\BinaryTransformer→TypeTransformer\BinTransformerTypeTransformer\Packable→TypeTransformer\CanPack
🔄 Changed
BufferUnpacker::__construct()now acceptsExtension[] $extensionsas the third argumentPacker::__construct()now acceptsCanPack[] $transformersas the second argument
✂ Removed
- Methods:
BufferUnpacker::__clone()
Cloning a BufferUnpacker object no longer resets the internal buffer, to get the old behavior
👉 use$unpacker = $unpacker->withBuffer('')BufferUnpacker::registerTransformer()Packer::registerTransformer()
- Interfaces:
TypeTransformer\Unpackable
- Methods: