Skip to content

Latest commit

 

History

History
145 lines (90 loc) · 3.25 KB

CHANGELOG.md

File metadata and controls

145 lines (90 loc) · 3.25 KB

Changelog

All notable changes to this project will be documented in this file, in reverse chronological order by release.

1.3.1 - TBD

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.

1.3.0 - 2016-07-07

Added

  • #11 adds ETag support. A default generator that uses MD5 hashing of content for comparisons; if content matches, an empty 304 response is returned with a Not-Modified header. By default, it will not overwrite any ETag headers you already send, though you can override that via the zf-http-cache.etag.override flag. Additionally, you can provide alternate ETag generation mechanisms by implementing ZF\HttpCache\ETagGeneratorInterface, and specifying the service name of your implementation via the zf-http-cache.etag.generator configuration value.
  • #13 and #14 add support for Zend Framework v3 components, including zend-mvc, zend-servicemanager, and zend-eventmanager.
  • #14 marks the package as a ZF module, allowing zf-component-installer to auto-inject it into application configuration.
  • #12 adds more capabilities around matching routed controllers, including the ability to match:
    • the route name
    • controller::action concatenations
    • just the controller
    • a regular expression (based on concatenating the controller and action)
    • wildcards See the README.md file and the config/module.config.php for examples.

Deprecated

  • Nothing.

Removed

  • #14 removes support for PHP 5.5.

Fixed

  • Nothing.

1.2.3 - 2016-07-06

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • #10 removes the dependency on zend-loader (it was not being used).

Fixed

  • #8 provides some performance optimizations for a number of conditional statements.

1.2.2 - 2015-11-11

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #6 fixes the HttpCacheListenerFactory to rename the createService() to __invoke(), as originally intended in #4.

1.2.1 - 2015-11-10

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #5 fixes missing imports, and ensures all code files have appropriate file-level license docblocks.

1.2.0 - 2015-11-10

Added

  • #3 updates the minimum required PHP version to 5.5, and the minimum ZF component versions to 2.5.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #3 updates the code to be forwards-compatible with the upcoming v3 of zend-eventmanager.
  • #3 updates the code to be forwards-compatible with v2.6 and v3 of zend-servicemanager.