File tree Expand file tree Collapse file tree 6 files changed +9
-10
lines changed Expand file tree Collapse file tree 6 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 22All notable changes to this project will be documented in this file. This project adheres to
33[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
44
5- ## Unreleased
5+ ## [ 1.0.0 ] - 2019-02-28
66
77### Added
88- Package now supports Laravel 5.8.
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ A demo application is available at [here](https://github.com/cloudcreativity/dem
6060
6161| Laravel | This Package | EOL? |
6262| --- | --- | --- |
63- | 5.8.* | ` dev-laravel-5.8 ` | - |
64- | 5.7.* | ` 1.0.0-rc.2 ` | - |
65- | 5.6.* | ` 1.0.0-rc.2 ` | - |
66- | 5.5.* | ` 1.0.0-rc.2 ` | - |
63+ | 5.8.* | ` ^1.0 ` | - |
64+ | 5.7.* | ` ^ 1.0` | - |
65+ | 5.6.* | ` ^ 1.0` | - |
66+ | 5.5.* | ` ^ 1.0` | - |
6767| 5.4.* | ` 1.0.0-beta.3 ` | EOL |
6868
6969Make sure you consult the [ Upgrade Guide] ( http://laravel-json-api.readthedocs.io/en/latest/upgrade/ )
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ This helper returns a generator that allows you to create JSON API link objects
7575/** @var \Neomerx\JsonApi\Contracts\Document\LinkInterface $link */
7676$link = json_api('v1')->links()->index('posts');
7777$meta = ['foo' => 'bar'];
78- $link = json_api('v1)->links()->index('posts', $meta);
78+ $link = json_api('v1' )->links()->index('posts', $meta);
7979```
8080
8181The following methods on the links generator create links for resources within your API:
Original file line number Diff line number Diff line change 33Install using [ Composer] ( http://getcomposer.org ) :
44
55``` bash
6- $ composer require cloudcreativity/laravel-json-api:1.0.0-rc.2
7- $ composer require --dev cloudcreativity/json-api-testing:1.0.0-rc.1
6+ $ composer require cloudcreativity/laravel-json-api
7+ $ composer require --dev cloudcreativity/json-api-testing
88```
99
1010This package's service provider and facade will be automatically added using package discovery. You will
Original file line number Diff line number Diff line change 11# Upgrade Guide
22
3- ## 1.0.0-rc.1 to 1.0.0-rc.2
3+ ## 1.0.0-rc.* to ^ 1.0
44
55No changes are required to upgrade.
66
Original file line number Diff line number Diff line change 2020use CloudCreativity \LaravelJsonApi \Contracts \Decoder \DecoderInterface ;
2121use CloudCreativity \LaravelJsonApi \Decoder \JsonApiDecoder ;
2222use CloudCreativity \LaravelJsonApi \Exceptions \RuntimeException ;
23- use Illuminate \Support \Collection ;
2423use Neomerx \JsonApi \Contracts \Http \Headers \MediaTypeInterface ;
2524use Neomerx \JsonApi \Http \Headers \MediaType ;
2625
You can’t perform that action at this time.
0 commit comments