Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

zend-stdlib 3.0.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 03 Feb 16:56
· 190 commits to master since this release

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
    • All Hydrator classes see #22.
    • Zend\Stdlib\CallbackHandler see #35
  • #37 - removed deprecated classes and polyfills:
    • Zend\Stdlib\DateTime; this had been deprecated since 2.5, and only existed as a polyfill for the createFromISO8601() support, now standard in all PHP versions we support.
    • Zend\Stdlib\Exception\InvalidCallbackException, which was unused since #33.
    • Zend\Stdlib\Guard\GuardUtils, which duplicated Zend\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.