Skip to content

Releases: rebing/graphql-laravel

GraphQL Laravel 5.1.2 released

02 Jul 16:54
@mfn mfn
255047c
Compare
Choose a tag to compare

Added

  • Readded support for validation in field arguments (with breaking change fix) #630 / crissi

As always, we would like to thank all the contributors that opened issues, created pull requests or updated the documentation!

Hotfix: GraphQL Laravel 5.1.1 released

23 Apr 09:36
@mfn mfn
c3b4a38
Compare
Choose a tag to compare

Unfortunately the 5.1.0 release introduced a regression which is now fixed

Fixed

Sorry for the angst 😱

GraphQL Laravel 5.1.0 released

22 Apr 19:21
@mfn mfn
7cb2b3e
Compare
Choose a tag to compare

Added


As always, we would like to thank all the contributors that opened issues, created pull requests or updated the documentation!

GraphQL Laravel 5.0.0 released

03 Apr 14:31
@mfn mfn
ffe0cb9
Compare
Choose a tag to compare

Long delay for a new release for no particular reason 🎉

Some internal changes might cause breaks, depending of your level of customization thus we bump the major number to not cause troubles.

Many thanks to all the contributors 🙇

Added

Fixed

  • Fix the infinite loop as well as sending the correct matching input data to the rule-callback #579 / crissi
  • Fix selecting not the correct columns for interface fields #607 / illambo

Changed

  • Refactor route files with the goal of making adding subscription support easier #575 / crissi

Removed

  • Official support for Laravel 5.8 has been removed #596 / mfn

5.0.0-rc2

07 Mar 19:55
@mfn mfn
956a9e8
Compare
Choose a tag to compare
5.0.0-rc2 Pre-release
Pre-release

Note: we're already bumping the major version as some of the contributions did internal refactoring, making it incompatible with the semver promise.

Added

Fixed

  • Fix the infinite loop as well as sending the correct matching input data to the rule-callback #579 / crissi

Changed

  • Refactor route files with the goal of making adding subscription support easier #575 / crissi

Removed

  • Official support for Laravel 5.8 has been removed #596 / mfn

5.0.0-rc1

02 Feb 15:04
@mfn mfn
1eaf041
Compare
Choose a tag to compare
5.0.0-rc1 Pre-release
Pre-release

Note: we're already bumping the major version as some of the contributions did internal refactoring, making it incompatible with the semver promise.

Added

Fixed

  • Fix the infinite loop as well as sending the correct matching input data to the rule-callback #579 / crissi

Changed

  • Refactor route files with the goal of making adding subscription support easier #575 / crissi

GraphQL Laravel 4.0.0 released

09 Dec 19:23
@mfn mfn
2f0dfff
Compare
Choose a tag to compare

Since 3.1.0 we've had a lot of contributions, some are breaking changes with semver thus we start off with a new major version 🎉

Although past released already were, 4.0.0 is now officially compatible with the latest and greatest PHP 7.4 release.

Added

  • Allow passing through an instance of a Field #521 / georgeboot
  • Add the ability to alias query and mutations arguments as well as input objects #517 / crissi
  • Classes can now be injected in the Resolve method from the query/mutation similarly to Laravel controller methods #520 / crissi

Fixed

  • Fix validation rules for non-null list of non-null objects #511 / crissi
  • Add morph type to returned models #503 / crissi
  • Querying same field multiple times causes an error (e.g. via fragments) #537 / edgarsn
  • Fixed the custom query not being handled by interface's relations #486 / EdwinDayot

Changed

4.0.0-rc1

28 Nov 09:58
@mfn mfn
f6c8244
Compare
Choose a tag to compare
4.0.0-rc1 Pre-release
Pre-release

Since 3.1.0 we've had a lot of contributions, some are breaking changes with semver thus we start off with a new major version.

Added

  • Allow passing through an instance of a Field #521 / georgeboot
  • Add the ability to alias query and mutations arguments as well as input objects #517 / crissi
  • Classes can now be injected in the Resolve method from the query/mutation similarly to Laravel controller methods #520 / crissi

Fixed

  • Fix validation rules for non-null list of non-null objects #511 / crissi
  • Add morph type to returned models #503 / crissi
  • Querying same field multiple times causes an error (e.g. via fragments) #537 / edgarsn
  • Fixed the custom query not being handled by interface's relations #486 / EdwinDayot

Changed

GraphQL Laravel 3.1.0 released

22 Oct 23:03
@mfn mfn
5985031
Compare
Choose a tag to compare

Full ChangeLog for 3.1.0

Added


As always, we would like to thank all the contributors that opened issues, created pull requests or updated the documentation!

GraphQL Laravel 3.0.0 released

20 Oct 18:53
@mfn mfn
4f796f9
Compare
Choose a tag to compare

Full ChangeLog for 3.0.0

We're bumping the major version as this release contains two breaking changes:

Added

  • Add wrapType(), allowing to add more information for queries/mutations #496 / albertcito

Changed

  • The signature of authorize changed, receiving not the exact same argumenst the resolver would #489 / mfn
    • before: public function authorize(array $args)
    • after: public function authorize($root, array $args, $ctx, ResolveInfo $resolveInfo = null, Closure $getSelectFields = null): bool
  • Forward PHP engine errors to the application error handler #487 / mfn

As always, we would like to thank all the contributors that opened issues, created pull requests or updated the documentation!