File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
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
+ ## [ 0.6.0 ] - 2017-02-20
6
6
7
7
### Added
8
8
- Added support for Laravel 5.4. However, consuming applications will need to use the Browserkit testing package
Original file line number Diff line number Diff line change 2
2
3
3
This file provides notes on how to upgrade between versions.
4
4
5
+ ## v0.5 to v0.6
6
+
7
+ ### Config
8
+
9
+ Add the following to your ` json-api-errors.php ` config file:
10
+
11
+ ``` php
12
+ /**
13
+ * When the resource type of a related resource is not recognised.
14
+ */
15
+ V::RELATIONSHIP_UNKNOWN_TYPE => [
16
+ Error::TITLE => 'Invalid Relationship',
17
+ Error::DETAIL => "Resource type '{actual}' is not recognised.",
18
+ Error::STATUS => 400,
19
+ ],
20
+ ```
21
+
22
+ ### Other
23
+
24
+ This upgrade includes updating ` cloudcreativity/json-api ` from v0.6 to v0.7. This will not affect the vast majority
25
+ of applications. However, if you have implemented your own Store or Validator Error Factory, you will need to refer
26
+ to the upgrade notes in that package.
27
+
5
28
## v0.5.0|v0.5.1 to v0.5.2
6
29
7
30
Version ` 0.5.2 ` adds generator commands to your application. We've updated the configuration so you will need to
You can’t perform that action at this time.
0 commit comments