From bdb509ab86085c15c097155aa9ca7b78bf9000fc Mon Sep 17 00:00:00 2001 From: Awilum Date: Sat, 14 Sep 2019 22:02:28 +0300 Subject: [PATCH] chore(core): update changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e0e219c..4b99840d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ + +# [0.9.5](https://github.com/flextype/flextype/compare/v0.9.4...v0.9.5) (2019-09-xx) +### Bug Fixes + +* **admin-plugin:** issue with emitter twig function #234 806b18e +* **core:** issue with emitter twig function #234 426a073 +* **site-plugin:** notice for undefined $query['format'] #234 8bde8eb + +### BREAKING CHANGES +Changed emitter execution in the templates + +FROM +``` +{{ emitter.emit('EVENT_NAME') }} +``` + +TO +``` +{% do emitter.emit('EVENT_NAME') %} +``` + # [0.9.4](https://github.com/flextype/flextype/compare/v0.9.3...v0.9.4) (2019-09-11) ### Added