Skip to content

Commit 43bdb41

Browse files
committed
Merge branch 'release/2.2.0'
2 parents 0acdae7 + ffc0969 commit 43bdb41

File tree

4 files changed

+34
-6
lines changed

4 files changed

+34
-6
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file. This project adheres to
44
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
55

6+
## [2.2.0] - 2022-04-10
7+
8+
### Added
9+
10+
- [#181](https://github.com/laravel-json-api/laravel/issues/181) The `JsonApiController` now extends the base Laravel
11+
controller.
12+
13+
### Fixed
14+
15+
- [#180](https://github.com/laravel-json-api/laravel/pull/180) Add missing method to the Authorizer stub.
16+
617
## [2.1.2] - 2022-04-04
718

819
### Fixed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@
55
Implement feature-rich [JSON:API](https://jsonapi.org) compliant APIs in your
66
[Laravel](https://laravel.com) applications. Build your next standards-compliant API today.
77

8-
### Why use JSON:API?
8+
## Why use JSON:API and Laravel JSON:API?
9+
10+
Great question! [Here's some reasons from this excellent article by Denisa Halmaghi](https://graffino.com/web-development/how-to-use-laravel-json-api-to-create-a-json-api-compliant-backend-in-laravel):
11+
12+
### Why Use JSON:API?
913

1014
- Standardised, consistent APIs.
11-
- Feature rich - some of which are filtering, pagination, eager loading and sparse fieldsets.
15+
- Feature rich - some of which are: sparse fieldsets (only fetch the fields you need), filtering, sorting, pagination,
16+
eager loading for relationships (includes, which solve the _N+1_ problem).
1217
- Easy to understand.
1318

1419
### Why use Laravel JSON:API?

src/Http/Controllers/JsonApiController.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
2323
use Illuminate\Foundation\Bus\DispatchesJobs;
2424
use Illuminate\Foundation\Validation\ValidatesRequests;
25+
use Illuminate\Routing\Controller;
2526

26-
class JsonApiController
27+
class JsonApiController extends Controller
2728
{
28-
2929
/**
3030
* JSON:API Actions
3131
*/
@@ -46,5 +46,4 @@ class JsonApiController
4646
use AuthorizesRequests;
4747
use DispatchesJobs;
4848
use ValidatesRequests;
49-
5049
}

stubs/authorizer.stub

+14-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,20 @@ class {{ class }} implements Authorizer
6969
}
7070

7171
/**
72-
* Authorize the show-related and show-relationship controller action.
72+
* Authorize the show-related controller action
73+
*
74+
* @param Request $request
75+
* @param object $model
76+
* @param string $fieldName
77+
* @return bool
78+
*/
79+
public function showRelated(Request $request, object $model, string $fieldName): bool
80+
{
81+
// TODO: Implement showRelated() method.
82+
}
83+
84+
/**
85+
* Authorize the show-relationship controller action.
7386
*
7487
* @param Request $request
7588
* @param object $model

0 commit comments

Comments
 (0)