Skip to content

Releases: shmax/graphql-php-validation-toolkit

v2.2.1

28 Aug 23:42
4129a86

Choose a tag to compare

What's Changed

  • Fix false error while iterating over fields by @shmax in #16

Full Changelog: v2.2...v2.2.1

v2.2: Remove 'partial' property, and support callable for 'required' (#15)

20 Aug 02:34
21e961d

Choose a tag to compare

  • remove the partial idea
  • required can now be a callable that returns bool|array<int, string>

v2.1: Support for required and partial (#14)

18 Aug 19:27
9807335

Choose a tag to compare

Add 'required' and partial properties

v2.0

03 May 21:25
9edac31

Choose a tag to compare

With this release, we begin to introduce PHP 8.0 features, such as type-hinted class members. We also no longer short-circuit when validating lists of things, or when validating an InputObject with its own self-validation behavior (the fields will be validated either way).

v1.0.0

10 Mar 01:11
10b2056

Choose a tag to compare

This fixes a issue around getting the wrapped type from a ListOfType.

v0.4.2

08 Oct 00:44

Choose a tag to compare

Merge branch 'master' of https://github.com/shmax/graphql-php-validat…

v0.4.1

28 Oct 07:02
7d00f39

Choose a tag to compare

v0.4.1 Pre-release
Pre-release
  • fix an issue where callable types on InputObjectType can sometimes be unresolved (this may be a bug on the main graphql library)

v0.4.0

23 Aug 05:34
f959c0d

Choose a tag to compare

v0.4.0 Pre-release
Pre-release

Huge optimization: generated types are now closures, so they can be lazy loaded by the graphql-php library.

v0.3.0

13 Oct 23:57
1764db5

Choose a tag to compare

v0.3.0 Pre-release
Pre-release
  • Optimized creation of suberrors on InputObjectType
  • Fixed validation of ListOfType wrapped type

v0.2.0

07 Oct 15:12
820d88c

Choose a tag to compare

v0.2.0 Pre-release
Pre-release
  • simplified listOf error types
  • added complex sample