Releases: bwaidelich/Wwwision.GraphQL
5.0.0 - Major overhaul
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
- @bwaidelich made their first contribution in #18
Full Changelog: 4.0.3...5.0.0
4.0.3
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
Bugfix Release
Fixes a typo in the middleware configuration (see #16)
4.0.0 - Neos 7 compatibility
Flow 6 compatibility
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
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
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
Flow 5.0 Compatibility, GraphQL Playground & GraphQL Schema support
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:
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