Laravel 9 and PHP 8.1
Upgrading
Refer to the upgrade guide on our website.
Changelog
Added
- This package now supports Laravel 9.
- This package now supports PHP 8.1.
Changed
- BREAKING PHP 8.1 introduces
readonly
as a keyword. It was therefore necessary to rename the following interface and trait:LaravelJsonApi\Eloquent\Contracts\ReadOnly
is nowIsReadOnly
.LaravelJsonApi\Eloquent\Fields\Concerns\ReadOnly
is nowIsReadOnly
.
- Return types have been added to all internal methods in all child packages, to remove deprecation messages in PHP 8.1
- #83 Amended container bindings to ensure package works with Laravel Octane. Most of these changes should have no impact on consuming applications. However, the following changes could potentially be breaking to the JSON:API
Server
class in an application:- The type-hint of the first constructor argument has changed to
LaravelJsonApi\Core\Support\AppResolver
. - The deprecated
$container
property has been removed, and the$app
property is now private. To access the current application instance in your server class, use$this->app()
instead.
- The type-hint of the first constructor argument has changed to
- BREAKING #110 The
model()
andmodelOrFail()
methods on theResourceQuery
request class have been changed frompublic
toprotected
. These were not documented for use on this query class, and were only intended to be used publicly on theResourceRequest
class. Although technically breaking, this change is unlikely to affect the vast majority of applications which should not be using the method.