This repository was archived by the owner on Feb 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +8
-10
lines changed
tests/dummy/app/Http/Controllers Expand file tree Collapse file tree 6 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file. This project adheres to
3
3
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
4
4
5
- ## Unreleased
5
+ ## [ 1.0.0-alpha.3 ] - 2018-05-17
6
6
7
7
### Added
8
8
- Errors that occur * before* a route is processed by a JSON API are now sent to the client as JSON API
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ A demo application is available at [here](https://github.com/cloudcreativity/dem
27
27
28
28
| Laravel | This Package |
29
29
| --- | --- |
30
- | 5.4.* | ` 1.0.0-alpha.2 ` |
31
- | 5.5.* | ` 1.0.0-alpha.2 ` |
32
- | 5.6.* | ` 1.0.0-alpha.2 ` |
30
+ | 5.4.* | ` 1.0.0-alpha.3 ` |
31
+ | 5.5.* | ` 1.0.0-alpha.3 ` |
32
+ | 5.6.* | ` 1.0.0-alpha.3 ` |
33
33
34
34
Make sure you consult the [ Upgrade Guide] ( http://laravel-json-api.readthedocs.io/en/latest/upgrade/ ) when upgrading.
35
35
Original file line number Diff line number Diff line change 5
5
Install using [ Composer] ( http://getcomposer.org ) :
6
6
7
7
``` bash
8
- $ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.2
8
+ $ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.3
9
9
$ composer require --dev cloudcreativity/json-api-testing
10
10
```
11
11
@@ -17,7 +17,7 @@ need to follow the instructions below for updating your `ExceptionHandler`.
17
17
Install using [ Composer] ( http://getcomposer.org ) :
18
18
19
19
``` bash
20
- $ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.2
20
+ $ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.3
21
21
$ composer require --dev cloudcreativity/json-api-testing
22
22
```
23
23
Original file line number Diff line number Diff line change 22
22
use CloudCreativity \LaravelJsonApi \Contracts \Adapter \HasManyAdapterInterface ;
23
23
use CloudCreativity \LaravelJsonApi \Contracts \Adapter \RelationshipAdapterInterface ;
24
24
use CloudCreativity \LaravelJsonApi \Contracts \Object \RelationshipInterface ;
25
- use CloudCreativity \LaravelJsonApi \Contracts \Object \RelationshipsInterface ;
26
25
use CloudCreativity \LaravelJsonApi \Contracts \Object \ResourceObjectInterface ;
27
26
use CloudCreativity \LaravelJsonApi \Contracts \Pagination \PageInterface ;
28
27
use CloudCreativity \LaravelJsonApi \Contracts \Pagination \PagingStrategyInterface ;
Original file line number Diff line number Diff line change 21
21
use CloudCreativity \LaravelJsonApi \Contracts \Encoder \SerializerInterface ;
22
22
use CloudCreativity \LaravelJsonApi \Factories \Factory ;
23
23
use Neomerx \JsonApi \Encoder \Encoder as BaseEncoder ;
24
- use Neomerx \JsonApi \Encoder \EncoderOptions ;
25
24
use Neomerx \JsonApi \Encoder \Serialize \ArraySerializerTrait ;
26
25
27
26
/**
Original file line number Diff line number Diff line change 17
17
18
18
namespace DummyApp \Http \Controllers ;
19
19
20
+ use Illuminate \Foundation \Auth \Access \AuthorizesRequests ;
20
21
use Illuminate \Foundation \Bus \DispatchesJobs ;
21
- use Illuminate \Routing \Controller as BaseController ;
22
22
use Illuminate \Foundation \Validation \ValidatesRequests ;
23
- use Illuminate \Foundation \ Auth \ Access \ AuthorizesRequests ;
23
+ use Illuminate \Routing \ Controller as BaseController ;
24
24
25
25
class Controller extends BaseController
26
26
{
You can’t perform that action at this time.
0 commit comments