diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b92d2..d2e83f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/). +## Unreleased + +### Added + +- [#65](https://github.com/laravel-json-api/laravel/issues/65) **BREAKING** The `fill()` method on Eloquent fields has + been updated to receive all the validated data as its third argument. This change was made to allow fields to work out + the value to fill into the model based on other JSON:API field values. If you have written any custom fields, you will + need to update the `fill()` method on your field class. +- [#58](https://github.com/laravel-json-api/laravel/issues/58) Schema model classes can now be a parent class or an + interface. + ## [1.0.0-beta.1] - 2021-03-30 ### Added diff --git a/composer.json b/composer.json index 076dc0b..1378d8a 100644 --- a/composer.json +++ b/composer.json @@ -25,8 +25,8 @@ "require": { "php": "^7.4|^8.0", "ext-json": "*", - "laravel-json-api/core": "^1.0.0-beta.1", - "laravel-json-api/eloquent": "^1.0.0-beta.1", + "laravel-json-api/core": "^1.0.0-beta.2", + "laravel-json-api/eloquent": "^1.0.0-beta.2", "laravel-json-api/encoder-neomerx": "^1.0.0-beta.1", "laravel-json-api/exceptions": "^1.0.0-beta.1", "laravel-json-api/spec": "^1.0.0-beta.1", @@ -34,7 +34,7 @@ "laravel/framework": "^8.0" }, "require-dev": { - "laravel-json-api/hashids": "^1.0.0-beta.1", + "laravel-json-api/hashids": "^1.0.0-beta.2", "laravel-json-api/testing": "^1.0.0-beta.1", "orchestra/testbench": "^6.9", "phpunit/phpunit": "^9.5"