This repository was archived by the owner on Jan 31, 2020. It is now read-only.
zend-serializer 2.9.0
·
19 commits
to master
since this release
Added
- #37 adds support to the
PhpSerializeadapter to allow it to support the
PHP 7$optionsparameter ofunserialize, and, specifically, theallowed_classesparameter.
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 anarrayof class names that are explicitly allowed to
be unserialized. An instance of this class may now be passed to thePhpSerializeconstructor
in order to set the intended/expected behavior.
Changed
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #34 removes a redundant dependency on a Doctrine package.