From 0e447e1bfee47635c5e39abd3742783d531e8218 Mon Sep 17 00:00:00 2001 From: Bayu Hendra Winata Date: Mon, 2 Sep 2019 16:45:43 +0700 Subject: [PATCH] Create CHANGELOG.md --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3c56ca6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,31 @@ +# 0.9.0 +## Rename folder `lib` to `plugins` +To comply with Vega pentest. + +## Add support to skip flash message for certains URI +Added new config: +```php + 'flash' => [ + 'except' => [], + ], +``` + +## Move flash attributes config to their own namespace: +Old: +```php + 'flash' => [ + 'display_time' => 5000, + 'opacity' => 0.9, + 'position' => 'top center', + ], +``` +New: +```php + 'flash' => [ + 'attributes' => [ + 'display_time' => 5000, + 'opacity' => 0.9, + 'position' => 'top center', + ], + ], +```