Skip to content

Releases: michaeldyrynda/laravel-cascade-soft-deletes

1.5.0

01 Nov 04:35
d7d68c8
Compare
Choose a tag to compare

Test for explicit support of Laravel 5.7

1.4.0

14 Feb 12:29
Compare
Choose a tag to compare

Add Laravel 5.6 support

1.3.0

31 Aug 01:12
Compare
Choose a tag to compare

Add Laravel 5.5 support

1.2.1

04 Jul 01:07
Compare
Choose a tag to compare

Remove composer.lock file from package repository

1.2.0

28 Jan 01:32
Compare
Choose a tag to compare

Add Laravel 5.4 compatibility

1.1.0

24 Aug 01:02
Compare
Choose a tag to compare

Add Laravel 5.3 compatibility

1.0.5

07 Aug 12:21
Compare
Choose a tag to compare

Provides better support for hasOne relationships, and relationship methods that return null.

1.0.4

22 Jul 14:01
Compare
Choose a tag to compare

Thanks to @schnittstabil, adds support for cascading deletes of model grandchildren per #8, #9.

Add support for force deleting

09 Jun 11:09
Compare
Choose a tag to compare

Per #7, when using forceDelete in combination with foreign key constraints, the forceDelete would fail ont he parent record due to child records still existing as the cascade would only ever use delete, updating the child records' deleted_at column leaving them in place.

Allow the trait to be inherited

27 May 05:42
Compare
Choose a tag to compare

If you happen to want all of your models to implement SoftDeletes, you can now also add the CascadeSoftDeletes to your base model and the functionality will be correctly inherited through your child models.