Skip to content

Releases: bwaidelich/Wwwision.GraphQL

5.0.0 - Major overhaul

01 Aug 14:16
1229db2
Compare
Choose a tag to compare

Major overhaul

Note: This release is basically a rewrite of this package building upon wwwision/types-graphql.
If you prefer the classical way of writing resolvers, you can still use version 4.x and earlier

What's Changed

  • !!! FEATURE: Major overhaul based on wwwision/types-graphql by @bwaidelich in #18

New Contributors

Full Changelog: 4.0.3...5.0.0

4.0.3

28 Mar 10:20
ed3cb7f
Compare
Choose a tag to compare

What's Changed

  • BUGFIX: Use unique name for middleware configuration to avoid conflict with neos/resdirecthandler by @mficzel in #17

Full Changelog: 4.0.2...4.0.3

4.0.2

28 Mar 10:18
e374439
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.0.0...4.0.2

Bugfix Release

12 Jul 09:39
e374439
Compare
Choose a tag to compare

Fixes a typo in the middleware configuration (see #16)

4.0.0 - Neos 7 compatibility

05 Jul 07:43
d8c4f7e
Compare
Choose a tag to compare
  • FEATURE: Neos 7 compatibility (#15) - Thanks to @mficzel

v3.2.0...v4.0.0

Flow 6 compatibility

06 Jan 13:09
058cb29
Compare
Choose a tag to compare

This release adds compatibility for Flow 6.0+

Thanks a lot to @simstern, @daniellienert and @sbruggmann for your contributions!

NOTE: For projects using older Flow versions (4.x or 5.x) please use the 3.1 version(s):

composer require wwwision/graphql:^3.1

Changelog:
v3.0.2...v3.2.0

graphql-php v0.13.x

04 Apr 13:33
Compare
Choose a tag to compare

Updates the webonyx/graphql-php dependency from ^0.12.0 to ^0.13.0

See project changelog: https://github.com/webonyx/graphql-php/blob/master/CHANGELOG.md

Bugfix Release

04 Apr 13:30
Compare
Choose a tag to compare

BUGFIX: Fix support for endpoints containing slashes (#7) - Thanks to @sunweiye
BUGFIX: Extend AccessibleObject to support \IteratorAggregate properties (#8) - Thanks to @bweinzierl
BUGFIX: Catch and describe work around for types with circular dependencies

Full Changelog: v3.0.1...v3.0.2

Bugfix-Release: Allow endpoints to contain special characters

18 Jan 09:57
694920d
Compare
Choose a tag to compare

Includes a fix for a bug that led to invalid cache keys when defining endpoints that contained disallowed characters (see #6).

Thanks to @sunweiye for providing the fix!

Flow 5.0 Compatibility, GraphQL Playground & GraphQL Schema support

04 Jun 13:51
Compare
Choose a tag to compare

This release adds support for the GraphQL Schema language.
Schemas can now be defined like this:

schema {
    query: Query
}

type Query {
    # some description
    ping(name: String!): String
}

Thanks to @Torsten85 for contributing this feature!

Besides the GraphiQL IDE has been replaced with the more feature complete GraphQL Playground:

playground

Thanks to @dfeyer for contributing this feature!

Further changes and features:

  • FEATURE: Improve README and add (short) schema language example and example Policy configuration
  • TASK: Update webonyx/graphql-php to 0.12.0