Skip to content

Releases: BinarCode/laravel-restify

6.12.1

15 Jul 07:07
98d7e9e
Compare
Choose a tag to compare

Fixed

  • Bulk deletion issue

6.12.0

14 Jul 16:15
Compare
Choose a tag to compare

Added

  • Bulk side effect actions fixed.

6.11.1

13 Jul 13:52
5a9b405
Compare
Choose a tag to compare

Performance

  • Do not check relationships if no query with relationships.

6.11.0

19 May 08:14
Compare
Choose a tag to compare

Added

  • setTitle for filters so the FE could display them
public static function matches(): array
{
    return [
        'invoice_id' => MatchFilter::make()
            ->setType('array')
            ->setTitle('Job Number')
            ->setRelatedRepositoryKey(InvoiceRepository::uriKey()),
    ];
}

6.10.0

04 May 13:39
a7f7299
Compare
Choose a tag to compare

Added

Bulk delete flow

The payload for a bulk delete should contain an array of primary keys for the models you want to delete:

[
  1, 10, 15
]

These models will be resolved from the database and check for the deleteBulk policy permission, in case any of the models isn't allowed to be deleted, no entry will be deleted.

6.9.3

14 Apr 10:14
e60b8bb
Compare
Choose a tag to compare

Fixed

  • Change return value of handle method in getter #455

6.9.2

29 Mar 11:39
68ad473
Compare
Choose a tag to compare

Fixed

  • Boolean match filter

6.9.1

04 Mar 13:07
00c5083
Compare
Choose a tag to compare

Fixed

  • Fixing scout search.

6.9.0

04 Mar 09:30
3062103
Compare
Choose a tag to compare

Added

  • Support to choose custom columns for BelongsTo and BelongsToMany and MorphMany relationships

Fixed

  • Getter requests dump

6.8.2

23 Feb 11:42
Compare
Choose a tag to compare

Fixed

  • Fixed image has filesystem on null.