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

zend-paginator 2.8.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 01 Nov 20:52
· 58 commits to master since this release

Added

  • #20 adds and publishes the documentation to https://docs.zendframework.com/zend-paginator/

  • #38 adds support for PHP 7.1.

  • #38 adds support for PHP 7.2. This is dependent on fixes in the upstream zend-db package if you are using the various database-backed paginators; other paginators work on 7.2 at this time.

Changed

  • #32 updates the DbTableGateway adapter's constructor to allow any Zend\Db\TableGateway\AbstractTableGateway implementation, and not just Zend\Db\TableGateway\TableGateway instances. This is a parameter widening, which poses no backwards compatibility break, but does provide users the ability to consume their own AbstractTableGateway extensions.

Deprecated

  • Nothing.

Removed

  • #35 removes support for PHP 5.5.

  • #35 removes support for HHVM.

Fixed

  • #33 fixes how cache identifiers are generated to work propertly with non-serializable pagination adapters.

  • #26 fixes an issue in Paginator::count() whereby it would re-count when zero pages had been previously detected.