@@ -4,12 +4,18 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
44
55## [ Unreleased]
66
7+ ## [ 5.1.0] - 2019-09-04
8+
9+ ### Added
10+
11+ - ([ #59 ] ) Laravel 6 support
12+
713## [ 5.0.0] - 2019-03-18
814
915### Added
1016
1117- Laravel 5.8 support
12- - ([ #48 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/48 ) ) Flag fields auto-casting
18+ - ([ #48 ] ) Flag fields auto-casting
1319- Added ` shouldApplyAcceptedAtScope ` & ` shouldApplyAcceptedFlagScope ` methods to control Accepted flags global scope auto apply.
1420- Added ` shouldApplyActiveFlagScope ` methods to control Active flag global scope auto apply.
1521- Added ` shouldApplyApprovedAtScope ` & ` shouldApplyApprovedFlagScope ` methods to control Approved flags global scope auto apply.
@@ -93,29 +99,29 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
9399
94100- Dropped PHP 5.6, 7.0 support
95101- Dropped Laravel 5.2, 5.3, 5.4, 5.5, 5.6, 5.7 support
96- - ([ #50 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/50 ) ) Removed attribute mutator ` set* ` & ` unset* ` methods from all helper classes
97- - ([ #56 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/56 ) ) Removed global scopes auto-apply
102+ - ([ #50 ] ) Removed attribute mutator ` set* ` & ` unset* ` methods from all helper classes
103+ - ([ #56 ] ) Removed global scopes auto-apply
98104
99105## [ 4.0.0] - 2018-09-09
100106
101107### Added
102108
103- - ([ #42 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/42 ) ) Laravel 5.7 support
104- - ([ #37 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/37 ) ) Events firing
109+ - ([ #42 ] ) Laravel 5.7 support
110+ - ([ #37 ] ) Events firing
105111
106112## [ 3.13.0] - 2018-02-08
107113
108114### Added
109115
110- - Laravel 5.6 support ([ #35 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/35 ) ).
111- - ` is_invited ` classic boolean flag added ([ #31 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/31 ) ).
112- - ` invited_at ` classic timestamp flag added ([ #31 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/31 ) ).
113- - ` is_ended ` inverse boolean flag added ([ #31 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/31 ) ).
114- - ` ended_at ` inverse timestamp flag added ([ #31 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/31 ) ).
115- - ` is_drafted ` inverse boolean flag added ([ #32 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/32 ) ).
116- - ` drafted_at ` inverse timestamp flag added ([ #32 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/32 ) ).
117- - ` is_archived ` inverse boolean flag added ([ #32 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/32 ) ).
118- - ` archived_at ` inverse timestamp flag added ([ #32 ] ( https://github.com/cybercog/laravel-eloquent-flag/pull/32 ) ).
116+ - Laravel 5.6 support ([ #35 ] ).
117+ - ` is_invited ` classic boolean flag added ([ #31 ] ).
118+ - ` invited_at ` classic timestamp flag added ([ #31 ] ).
119+ - ` is_ended ` inverse boolean flag added ([ #31 ] ).
120+ - ` ended_at ` inverse timestamp flag added ([ #31 ] ).
121+ - ` is_drafted ` inverse boolean flag added ([ #32 ] ).
122+ - ` drafted_at ` inverse timestamp flag added ([ #32 ] ).
123+ - ` is_archived ` inverse boolean flag added ([ #32 ] ).
124+ - ` archived_at ` inverse timestamp flag added ([ #32 ] ).
119125
120126## [ 3.12.0] - 2017-09-09
121127
@@ -266,7 +272,8 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
266272
267273- ` is_active ` boolean flag added.
268274
269- [ Unreleased ] : https://github.com/cybercog/laravel-eloquent-flag/compare/5.0.0...master
275+ [ Unreleased ] : https://github.com/cybercog/laravel-eloquent-flag/compare/5.1.0...master
276+ [ 5.1.0 ] : https://github.com/cybercog/laravel-eloquent-flag/compare/5.0.0...5.1.0
270277[ 5.0.0 ] : https://github.com/cybercog/laravel-eloquent-flag/compare/4.0.0...5.0.0
271278[ 4.0.0 ] : https://github.com/cybercog/laravel-eloquent-flag/compare/3.13.0...4.0.0
272279[ 3.13.0 ] : https://github.com/cybercog/laravel-eloquent-flag/compare/3.12.0...3.13.0
@@ -290,3 +297,13 @@ All notable changes to `cybercog/laravel-eloquent-flag` will be documented in th
290297[ 1.3.0 ] : https://github.com/cybercog/laravel-eloquent-flag/compare/1.2.0...1.3.0
291298[ 1.2.0 ] : https://github.com/cybercog/laravel-eloquent-flag/compare/1.1.0...1.2.0
292299[ 1.1.0 ] : https://github.com/cybercog/laravel-eloquent-flag/compare/1.0.0...1.1.0
300+
301+ [ #59 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/59
302+ [ #56 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/56
303+ [ #50 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/50
304+ [ #48 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/48
305+ [ #42 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/42
306+ [ #37 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/37
307+ [ #35 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/35
308+ [ #32 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/32
309+ [ #31 ] : https://github.com/cybercog/laravel-eloquent-flag/pull/31
0 commit comments