|
3 | 3 | All notable changes to this project will be documented in this file. This project adheres to
|
4 | 4 | [Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
|
5 | 5 |
|
| 6 | +## [1.0.0-beta.5] - 2021-07-10 |
| 7 | + |
| 8 | +### Added |
| 9 | + |
| 10 | +- The authorizer now has separate `showRelated()` and `showRelationship()` methods. Previously both these controller |
| 11 | + actions were authorized via the single `showRelationship()` method. Adding the new `showRelated` method means |
| 12 | + developers can now implement separate authorization logic for these two actions if desired. Our default implementation |
| 13 | + remains unchanged - both are authorized using the `view<RelationshipName>` method on the relevant policy. |
| 14 | +- The request class now has a `isCreatingOrUpdating()` helper method to determine whether the request is to create or |
| 15 | + updated a resource. |
| 16 | +- Add stop on first failure to all validators in the resource request class. |
| 17 | +- [#85](https://github.com/laravel-json-api/laravel/issues/85) When running an application with debug mode turned on, |
| 18 | + the default JSON:API error object for an exception will now contain detailed exception information, including the |
| 19 | + stack trace, in the object's `meta` member. |
| 20 | +- [#103](https://github.com/laravel-json-api/laravel/issues/103) Can now fully customise attribute serialization to JSON |
| 21 | + using the `extractUsing()` callback. This receives the model, column name and value. This is useful if the developer |
| 22 | + needs to control the serialization of a few fields on their schema. However, the recommendation is to use a resource |
| 23 | + class for complete control over the serialization of a model to a JSON:API resource. |
| 24 | + |
| 25 | +### Changed |
| 26 | + |
| 27 | +- Minimum Laravel version is now `8.30`. This change was required to use the `$stopOnFirstFailure` property on Laravel's |
| 28 | + `FormRequest` class. |
| 29 | +- Schema classes no longer automatically sort their fields by name when iterating over them. This change was made to |
| 30 | + give the developer full control over the order of fields (particularly as this order affects the order in which fields |
| 31 | + are listed when serialized to a JSON:API resource). Developers can list fields in name order if that is the preferred |
| 32 | + order. |
| 33 | +- Removed the `LaravelJsonApi\Spec\UnexpectedDocumentException` which was thrown if there was a failure when decoding |
| 34 | + request JSON content before parsing it for compliance with the JSON:API specification. A `JsonApiException` will now |
| 35 | + be thrown instead. |
| 36 | + |
| 37 | +### Fixed |
| 38 | + |
| 39 | +- [#101](https://github.com/laravel-json-api/laravel/issues/101) Ensure controller create action always returns a |
| 40 | + response that will result in a `201 Created` response. |
| 41 | +- [#102](https://github.com/laravel-json-api/laravel/issues/102) The attach and detach to-many relationship controller |
| 42 | + actions now correctly resolve the collection query class using the relation's inverse resource type. Previously they |
| 43 | + were incorrectly using the primary resource type to resolve the query class. |
| 44 | + |
6 | 45 | ## [1.0.0-beta.4] - 2021-06-02
|
7 | 46 |
|
8 | 47 | ### Fixed
|
|
0 commit comments