Skip to content

Releases: phly/PhlySimplePage

2.0.1

10 Dec 18:47
2.0.1
Compare
Choose a tag to compare

Added

  • Nothing.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Fixes the path to the configuration file used within Module::getConfig() to correctly locate it.

PhlySimplePage 2.0.0

05 Feb 22:24
2.0.0
Compare
Choose a tag to compare

Added

  • Nothing.

Changed

  • The package now requires a minimum PHP version of 7.2.

  • The package now targets the Laminas MVC, and not the Zend Framework MVC. Additionally, it is pinned to the latest stable releases, which means it no longer supports v2 releases of laminas-mvc.

  • PhlySimplePage\PageCacheService was renamed to PhlySimplePage\PageCacheFactory, and its createService() method renamed to __invoke().

  • PhlySimplePage\PageCacheListenerService was renamed to PhlySimplePage\PageCacheListenerFactory, and its createService() method renamed to __invoke().

Deprecated

  • Nothing.

Removed

  • The package removes support for zend-mvc-console tooling in favor of the vendor binary (phly-simple-page) provided. This includes removal of the PhlySimplePage\CacheController and its factory.

Fixed

  • Nothing.

PhlySimplePage 1.1.1

05 Feb 22:34
1.1.1
Compare
Choose a tag to compare

Added

  • Nothing.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Fixes the various factory classes to add an __invoke() method so that they work with both version 2 and version 3 releases of zend-servicemanager.

PhlySimplePage 1.1.0

03 Feb 19:08
1.1.0
Compare
Choose a tag to compare

Added

  • Adds a vendor script, phly-simple-page, with the single command cache:clear. When called without options, it clears the whole cache; when called with a --page option, it will clear only the cache for that page.

  • Adds package configuration to opt-in to either zend-component-installer or laminas-component-installer in order to automate registration of the module in MVC applications during installation.

Changed

  • Updates dependencies to latest stable versions of all packages. This means both the latest 2.* and 3.* releases for zend-mvc, zend-eventmanager, and zend-servicemanager. If you were using this on earlier versions, you may need to update your application before you can use the latest version.

Deprecated

  • Deprecates usage of MVC console actions as provided in the CacheController. Users should switch to the phly-simple-page vendor binary instead.

Removed

  • Nothing.

Fixed

  • #12 fixes listener registration in the PageCacheListener to ensure the listeners can actually be removed.