All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
1.0.0-beta.3 - 2023-12-09
- Drop
Interface
suffix from various interfaces:Resource
class renamed toAbstractResource
ResourceInterface
renamed toResource
CollectionInterface
renamed toCollection
ErrorProviderInterface
renamed toErrorProvider
PaginationInterface
renamed toPagination
EndpointInterface
renamed toEndpoint
TypeInterface
renamed toType
- Call user-defined serializer before type serializer (#91)
- Fix finding resource when creating polymorphic relationship (#93)
- Prevent relationship value from being retrieved if it won't be used (not included and no linkage)
1.0.0-beta.2 - 2023-12-02
- Types are now their own construct instead of being subclasses of
Attribute
. See the Attributes documentation for more information. - Removed support for defining polymorphic relationships by passing a map of model classes to resource types. You should use heterogeneous collections instead. See the Relationships documentation for more information.
- Add support for heterogeneous collections
- Add
Arr
type for defining array attributes (#88 by @bertramakers) - Laravel: Allow
WhereHas
field to be specified manually
- When creating a resource, set the context model prior to field validation
- Fix error when updating a resource with a conflicting ID (#85)
- Laravel: Fix
Has
filter not working without ascope
- Laravel: Don't apply relationship loading constraints if there aren't any
1.0.0-beta.1 - 2023-09-24
- Add
Str::enum()
method (#75 by @bertramakers) - Allow literal values in
Field::default()
method (#80 by @bertramakers)
- Fix
Number
properties not being initialized - Fix validators not being run for null values
- Fix
DateTime
values containing milliseconds not being accepted - Fix nested filters not receiving correct resource in context
- Laravel: Fix
EloquentResource
sometimes using incorrect relation name when setting value - Laravel: Convert
DateTime
values to Laravel app's storage timezone - Laravel: Validate that
WhereBelongsTo
filter input is a list
1.0.0-alpha.2 - 2023-08-19
- Finish Laravel integration
- Add basic field schema configuration in preparation for OpenAPI generation
- Add
Context::$query
to access the query used in theIndex
endpoint - Add
Context::fieldRequested()
andContext::sortRequested()
methods - Add
BooleanDateTime
attribute for exposing internal date-time values as booleans - Improve error sources in Bad Request errors
- Add a performance benchmark
- Add
void
return type toFilter::apply()
signature
- Fix typed attribute values being deserialized and always passing validation
- Fix visibility callback result not being cast to a boolean
- Fix
Integer
incorrectly not extendingNumber
- Fix empty to-many relationships not being present in the response at all
- Fix TypeError when removing non-nullable to-one relationship (#74 by @bertramakers)
1.0.0-alpha.1 - 2023-06-21
-
New class-based API. More ergonomic for managing large resource definitions and inheriting/overriding behavior. Complex fields can be extracted into their own classes and reused across resources.
-
Typed attributes. Implementations of typed attributes are provided to match the data types in the OpenAPI specification. Attributes can be marked as required and nullable.
-
Customizable endpoints. Each endpoint is now opt-in for each resource and can be configured and implemented separately. Also adds the ability for custom endpoints to be added.
-
Restructured internals. The codebase is cleaner and easier to reason about, especially the serialization process.
Still to come:
- Implementation of Laravel stuff (currently it is documented but not implemented)
- Ability to generate OpenAPI definitions
- Additional attribute types (array, object)
- Benchmarks
0.2.0 - 2022-06-21
- Fix
EloquentAdapter::filterByIds()
getting key name from query model instead of adapter model - Fix deprecation notice on PHP 8.1
0.2.0-beta.6 - 2022-04-22
- Add support for
doctrine/inflector:^2.0
0.2.0-beta.5 - 2022-01-03
Context::getBody()
method to retrieve the parsed JSON:API payload from the requestContext::sortRequested()
method to determine if a sort field has been requested
Laravel\rules()
: Fix regression disallowing use of advanced validation rules like callbacks andRule
instances. (@SychO9)
0.2.0-beta.4 - 2021-09-05
Laravel\rules()
: Replace{id}
placeholder in rules with the model's key.- This is useful for the
unique
rule, for example:unique:users,email,{id}
- This is useful for the
Laravel\can()
: Pass through additional arguments to Gate check.- This is needed to use policy methods without models, for example:
can('create', Post::class)
- This is needed to use policy methods without models, for example:
- Get a fresh copy of the model to display after create/update to ensure consistency
- Respond with
400 Bad Request
when attempting to filter on an attribute of a polymorphic relationship
0.2.0-beta.3 - 2021-09-03
- Fix dependency on
http-accept
now that a version has been tagged - Change
EloquentAdapter
to load relationships usingload
instead ofloadMissing
, as they may need API-specific scopes applied
0.2.0-beta.2 - 2021-09-01
- Content-Type validation and Accept negotiation
- Include
jsonapi
object withversion
member in response - Validate implementation-specific query parameters according to specification
- Added
Location
header to201 Created
responses - Improved error responses when creating and updating resources
Context::filter()
method to get the value of a filterResourceType::applyScope()
,applyFilter()
andapplySort()
methodsResourceType::url()
method to get the URL for a modelForbidden
error details for CRUD actions, useful when running Atomic OperationsJsonApi::getExtensions()
method to get all registered extensionsConflictException
class
- Renamed
$linkage
parameter inAdapterInterface
methods to$linkageOnly
- Renamed
Type::newModel()
tomodel()
to be consistent with Adapter
- Properly respond with meta information added to
Context
instance
0.2.0-beta.1 - 2021-08-27
- Preliminary support for Extensions
- Support filtering by nested relationships/attributes (eg.
filter[relationship.attribute]=value
) - Add new methods to Context object:
getApi
,getPath
,fieldRequested
,meta
- Eloquent adapter: apply scopes when including polymorphic relationships
- Laravel validation helper: support nested validation messages
- Allow configuration of sort and filter visibility
- Add new
setId
method toAdapterInterface
- Change paradigm for eager loading relationships; allow fields to return
Deferred
values to be evaluated after all other fields, so that resource loading can be buffered. - Remove
on
prefix from field event methods
- Removed
load
anddontLoad
field methods
- Fix pagination next link appearing when it shouldn't