Skip to content

Releases: hexium-agency/symfony-serializer-for-laravel

v0.0.6 - Add AttributeLoader

15 May 06:29
Compare
Choose a tag to compare

What's Changed

  • fix: add missing attribute loader (originally set by the framework extension in the Symfony world)
  • chore(deps): bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 by @dependabot in #6

Full Changelog: v0.0.5...v0.0.6

v0.0.5

20 Apr 10:54
b48d13d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.4...v0.0.5

v0.0.4

20 Apr 09:56
5de63ff
Compare
Choose a tag to compare

Bump Laravel compatibility to add support for Laravel 11

What's Changed

  • chore(deps): bump aglipanci/laravel-pint-action from 2.3.1 to 2.4 by @dependabot in #3

Full Changelog: v0.0.3...v0.0.4

Fix the typeExtractor list

15 Mar 08:26
Compare
Choose a tag to compare

Full Changelog: v0.0.2...v0.0.3

Add the PhpDocExtractor as priority in the typeExtractors so that this kind of array are properly deserialized:

readonly class FeatureCollection
{
    /**
     * @param  Feature[]  $features
     */
    public function __construct(
        public ResponseType $type,
        public string $version,
        public array $features,
        public string $attribution,
        public string $licence,
        public string $query,
        public int $limit,
    ) {
    }
}

v0.0.2

12 Mar 21:24
Compare
Choose a tag to compare

What's Changed

  • feat: install symfony cache
  • chore(deps): bump ramsey/composer-install from 2 to 3 by @dependabot in #1

New Contributors

Full Changelog: v0.0.1...v0.0.2

Initial release

20 Feb 21:32
Compare
Choose a tag to compare
  • Provide an integration of the Symfony serializer component to a Laravel application