diff -Nru php-zend-stdlib-3.2.0/CHANGELOG.md php-zend-stdlib-3.2.1/CHANGELOG.md --- php-zend-stdlib-3.2.0/CHANGELOG.md 2018-04-30 13:50:40.000000000 +0000 +++ php-zend-stdlib-3.2.1/CHANGELOG.md 2018-08-28 21:34:05.000000000 +0000 @@ -2,6 +2,32 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. +## 3.2.1 - 2018-08-28 + +### Added + +- Nothing. + +### Changed + +- Nothing. + +### Deprecated + +- Nothing. + +### Removed + +- Nothing. + +### Fixed + +- [#92](https://github.com/zendframework/zend-stdlib/pull/92) fixes serialization of `SplPriorityQueue` by ensuring its `$serial` + property is also serialized. + +- [#91](https://github.com/zendframework/zend-stdlib/pull/91) fixes behavior in the `ArrayObject` implementation that was not + compatible with PHP 7.3. + ## 3.2.0 - 2018-04-30 ### Added diff -Nru php-zend-stdlib-3.2.0/debian/changelog php-zend-stdlib-3.2.1/debian/changelog --- php-zend-stdlib-3.2.0/debian/changelog 2018-05-10 00:53:40.000000000 +0000 +++ php-zend-stdlib-3.2.1/debian/changelog 2018-09-01 01:12:13.000000000 +0000 @@ -1,3 +1,13 @@ +php-zend-stdlib (3.2.1-1) unstable; urgency=medium + + [ Matthew Weier O'Phinney ] + * Bumped to next dev version (3.2.1) + + [ David Prévot ] + * Update Standards-Version to 4.2.1 + + -- David Prévot Fri, 31 Aug 2018 15:12:13 -1000 + php-zend-stdlib (3.2.0-1) unstable; urgency=medium [ Matthew Weier O'Phinney ] diff -Nru php-zend-stdlib-3.2.0/debian/control php-zend-stdlib-3.2.1/debian/control --- php-zend-stdlib-3.2.0/debian/control 2018-04-28 20:27:13.000000000 +0000 +++ php-zend-stdlib-3.2.1/debian/control 2018-09-01 01:11:48.000000000 +0000 @@ -4,7 +4,7 @@ Maintainer: Debian PHP PEAR Maintainers Uploaders: David Prévot Build-Depends: debhelper (>= 9), phpab, pkg-php-tools (>= 1.7~) -Standards-Version: 4.1.4 +Standards-Version: 4.2.1 Homepage: http://framework.zend.com/ Vcs-Git: https://salsa.debian.org/php-team/pear/php-zend-stdlib.git Vcs-Browser: https://salsa.debian.org/php-team/pear/php-zend-stdlib diff -Nru php-zend-stdlib-3.2.0/src/ArrayObject.php php-zend-stdlib-3.2.1/src/ArrayObject.php --- php-zend-stdlib-3.2.0/src/ArrayObject.php 2018-04-30 13:50:40.000000000 +0000 +++ php-zend-stdlib-3.2.1/src/ArrayObject.php 2018-08-28 21:34:05.000000000 +0000 @@ -425,7 +425,7 @@ $this->setIteratorClass($v); break; case 'protectedProperties': - continue; + break; default: $this->__set($k, $v); } diff -Nru php-zend-stdlib-3.2.0/src/SplPriorityQueue.php php-zend-stdlib-3.2.1/src/SplPriorityQueue.php --- php-zend-stdlib-3.2.0/src/SplPriorityQueue.php 2018-04-30 13:50:40.000000000 +0000 +++ php-zend-stdlib-3.2.1/src/SplPriorityQueue.php 2018-08-28 21:34:05.000000000 +0000 @@ -84,7 +84,9 @@ */ public function unserialize($data) { + $this->serial = PHP_INT_MAX; foreach (unserialize($data) as $item) { + $this->serial--; $this->insert($item['data'], $item['priority']); } }