Laminas Serializer v2.9.1 Release Notes
Release Date: 2019-10-19 // about 5 years ago-
โ Added
- ๐ zendframework/zend-serializer#39 adds support for PHP 7.3.
๐ Changed
- Nothing.
๐ Deprecated
- Nothing.
โ Removed
- Nothing.
๐ Fixed
- Nothing.
Previous changes from v2.9.0
-
โ Added
- ๐ zendframework/zend-serializer#37 adds support to the
PhpSerialize
adapter to allow it to support the PHP 7$options
parameter ofunserialize
, and, specifically, theallowed_classes
parameter. A new options class,PhpSerializeOptions
, now allows setting theunserialize_class_whitelist
option, which may be one oftrue
(any class may be unserialized; current behavior),false
(no class may be unserialized), or anarray
of class names that are explicitly allowed to be unserialized. An instance of this class may now be passed to thePhpSerialize
constructor in order to set the intended/expected behavior.
๐ Changed
- Nothing.
๐ Deprecated
- Nothing.
โ Removed
- Nothing.
๐ Fixed
- ๐ฆ zendframework/zend-serializer#34 removes a redundant dependency on a Doctrine package.
- ๐ zendframework/zend-serializer#37 adds support to the