Releases
7.8.0 1/17/2023
Added
- Now you can add a placeholder to the filter, so it renders on the frontend
'title' => MatchFilter::make()
->setDescription('Sort by title')
->setPlaceholder('-title')
->setType('string')
When we read match filters using: `/api/restify/posts/filters?only=matches` we will get:
[
"type" => "string"
"advanced" => false
"title" => "Title"
"description" => "Sort by title"
"placeholder" => "-title"
"column" => "title"
"key" => "matches"
]
Fixed
- Tests (thanks @arthurkirkosa)
7.7.2 1/13/2023
Fixed
- Profile request class
7.7.1 11/22/2022
Fixed
- Remove Email Exist validation #518
7.7.0 9/17/2022
Sync related
You can also sync
your BelongsToMany
field. Say you have to sync permissions to a role. You can do it like this:
POST: api/restify/roles/1/sync/permissions
Payload:
{
"permissions": [1, 2]
}
Under the hood this will call the sync
method on the BelongsToMany
relationship:
// $role of the id 1
$role->permissions()->sync($request->input('permissions'));
Authorize sync
You can define a policy method syncPermissions
. The name should start with sync
and suffix with the plural CamelCase
name of the model's relationship name:
// RolePolicy.php
public function syncPermissions(User $authenticatedUser, Company $company, Collection $keys): bool
{
// $keys are the primary keys of the related model (permissions in our case) Restify is trying to `sync`
}
7.6.3 9/16/2022
Fixed
- The rest method will consider the meta information for the rest helper:
rest($user)->indexMeta(['token' => $token])
7.6.2 9/15/2022
Fixed
- Belongs search with custom foreign key https://github.com/BinarCode/laravel-restify/pull/512
Inherited https://github.com/BinarCode/laravel-restify/releases/tag/6.12.2
7.6.1 9/15/2022
Added
- Serializer - Serialize One model or nothing using the show response format #510
Fixed
- Listing routes in console #514
7.6.0 9/15/2022
Added
- The
policyMeta
method is now protected at the repository level (it could be used to override the policy information for the show and index methods. - Do not make
RelatedDto
as a singleton in a test environment (this causes issues when trying to make few relationship requests to the same repository in the same test)
Fixed
- Always public index method if no policy
- Unit test that shows routes list command.
- Fix Gate::check - show - not working
Support
- Added unit tests for the testing helpers (
action
,route
andgetters
).
6.12.2 9/15/2022
Fixed
- Belongs search with custom foreign key #512
7.5.4 8/2/2022
Fixed
- The unauthorized code should be 401.
7.5.3 8/1/2022
Refactored
- The testing
Repository::route(
method has a new signature, it accepts theaction
as well now.
7.5.2 7/30/2022
Fixed
- Cache enable option is considered during the policy methods check.
7.5.1 7/30/2022
Fixed
- Action logs should be enabled now.
7.5.0 7/30/2022
Added
This will enable policies to be cached by adding the configuration:
'cache' => [
/*
| Specify the cache configuration for the resources policies.
| When enabled, methods from the policy will be cached for the active user.
*/
'policies' => [
'enabled' => true,
/*
| ttl in seconds
*/
'ttl' => 5 * 60,
],
],
7.4.0 7/29/2022
Added
- Added support for nested relationships when you want to get the parent and children in the same query. Imagine a tweet thread, where you want to list all tweets with its parent tweet along with its immediate children tweets. This is now possible and will do not run into infinite loop issue.
Fixed
- Support to mock repositories using
YourRepository::partialMock()
for the index request, previously it ran into the mock state and didn't update the second resources in tests.
Breaking
- The
$eagerState
repository property is now private, and it is of typenull|string
because it holds the parent repository that renders it.
7.3.1 7/26/2022
Fixed
- Publish provider before routes so
restifyAuth
macro works.
7.3.0 7/25/2022
Added
- Singleton could be loaded from the
RestifyServiceProvider
in the local repository so the dev will have control over that.
7.2.1 7/24/2022
Fixed
- Nova routes conflict.
7.2.0 7/24/2022
Added
- Loading routes from the LaraveRestifyApplicationProvider so developers could override or comment that out.
7.1.0 7/24/2022
Added
- [6.x] Bulk update and deletion callbacks.
7.0.0 7/24/2022
[7.0.0] 2022-07-24
- Adding support for custom ActionLogs (ie
ActionLog::register("project marked active by user Auth::id()", $project->id)
) - Ensure
$with
loads relationship inshow
requests - Make sure any action isn't permitted unless the Model Policy exists
- Having a helper method that allow to return data using the repository from a custom controller
PostRepository::withModels(Post::query()->take(5)->get())->include('user')->serializeForShow()
- seeseralizer()
- Ability to make an endpoint public using a policy method
- Load specific fields for nested relationships (ie:
api/restify/company/include=users.posts[id, name].comments[title]
) - Load nested for relationships with a nested level higher than 2 (so now you can load any nested level you need
a.b.c.d
) - Shorter definition of Related fields
HasMany::make('posts')
- Performance improvements
see Change Log and Upgrading guideline
6.12.1 7/15/2022
Fixed
- Bulk deletion issue
6.12.0 7/14/2022
Added
- Bulk side effect actions fixed.
6.11.1 7/13/2022
Performance
- Do not check relationships if no query with relationships.
6.11.0 5/19/2022
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 5/4/2022
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 4/14/2022
Fixed
- Change return value of handle method in getter #455
6.9.2 3/29/2022
Fixed
- Boolean match filter
6.9.1 3/4/2022
Fixed
- Fixing scout search.
6.9.0 3/4/2022
Added
- Support to choose custom columns for
BelongsTo
andBelongsToMany
andMorphMany
relationships
Fixed
- Getter requests dump