2.1.0 - 2021-07-04
- Add support for installation via Composer 2 (#9)
2.0.1 - 2019-09-28
- Allow to disable system templates from being rendered by the active template engine, see TemplateEngineTwig issue #21.
2.0.0 - 2019-02-13
- First release of the new major
2.x
version 🐣 - Check out the documentation, especially the update guide
if you like to update from
1.x
.
- Add possibility to enable or disable automatic page rendering.
- Add a configuration to enable or disable automatic page rendering for templates.
- Add hooks allowing you to customize the module's behaviour. See docs.
- Add unit tests 🎉
- A lot of things! They are summarized in the update guide.
1.1.3 - 2018-03-18
- Fix
Notice: Undefined index: TemplateEngineNull
if no template is available for the current page and debug mode is enabled.
1.1.2 - 2018-03-18
- Add a hook before
ProcessPageView::pageNotFound
to handleWire404Exception
thrown by controllers. The current active template engine now receives the configured page displaying a 404 rather. than the page throwing the 404 exception.
1.1.1 - 2018-03-18
- Template engines can now pass multiple key/value data via new method
TemplateEngine::setArray()
.
- Lower hook priority for the hook executed after
Page::render
. This makes sure that the current active template engine returns the markup before other modules hooking afterPage::render
.