This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
Releases: zendframework/zend-stdlib
Releases · zendframework/zend-stdlib
zend-stdlib 3.2.1
zend-stdlib 3.2.0
zend-stdlib 3.1.1
Added
- Nothing.
Changed
- #67 changes the typehint of the
$content
property
of theMessage
class to indicate it is a string. All known implementations
already assumed this.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
zend-stdlib 3.1.0
Added
- #63 adds a new
Zend\Stdlib\ConsoleHelper
class, providing minimal support for writing output toSTDOUT
andSTDERR
, with optional colorization, when the console supports that feature.
Deprecated
- #38 deprecates
Zend\Stdlib\JsonSerializable
, as all supported version of PHP now support it.
Removed
- Nothing.
Fixed
- Nothing.
zend-stdlib 3.0.1
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #59 fixes a notice when defining the
Zend\Json\Json::GLOB_BRACE
constant on systems using non-gcc glob implementations.
zend-stdlib 2.7.7
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #59 fixes a notice when defining the Zend\Json\Json::GLOB_BRACE constant on systems using non-gcc glob implementations.
zend-stdlib 2.7.6
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #56 updates the
AggregateHydrator
implementation to add overrides for thehydrate()
andextract()
methods; this was done to ensure they trigger zend-stdlib-specific event classes (vs the zend-hydrator base classes), in order to ensure backwards compatibility.
zend-stdlib 2.7.5
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #54 updates the
HelperPluginManager
implementation to return zend-stdlib-specific instances (instead of zend-hydrator instances), to ensure backwards compatibility when typehinting against the zend-stdlib types.
zend-stdlib 3.0.0
Added
- #51 adds PHP 7 as a supported PHP version.
- #51 adds a migration document from v2 to v3. Hint: if you use hydrators, you need to be using zend-hydrator instead!
- #51 adds automated documentation builds to gh-pages.
Deprecated
- Nothing.
Removed
- #33 - removed deprecated classes
- #37 - removed deprecated classes and polyfills:
Zend\Stdlib\DateTime
; this had been deprecated since 2.5, and only existed as a polyfill for thecreateFromISO8601()
support, now standard in all PHP versions we support.Zend\Stdlib\Exception\InvalidCallbackException
, which was unused since #33.Zend\Stdlib\Guard\GuardUtils
, which duplicatedZend\Stdlib\Guard\AllGuardsTrait
to allow usage with pre-PHP 5.4 versions.src/compatibility/autoload.php
, which has been dprecated since 2.5.
- #37 - removed unneeded dependencies:
- zend-config (used only in testing ArrayUtils, and the test was redundant)
- zend-serializer (no longer used)
- #51 removes the documentation for hydrators, as those are part of the zend-hydrator component.
Fixed
- Nothing.
zend-stdlib 2.6.0
Added
- #13 adds
Zend\Stdlib\Hydrator\Iterator
, which provides mechanisms for hydrating objects when iterating a traversable. This allows creating generic collection resultsets; the original idea was pulled from PhlyMongo, where it was used to hydrate collections retrieved from MongoDB.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- Nothing.