2017-08-20 19:15:22 +03:00
# Changelog
2019-06-10 23:30:25 +03:00
## Unreleased
- Add schema validation: Input Objects must not contain non-nullable circular references (#492)
2019-06-12 10:16:37 +03:00
#### v0.13.5
- Fix coroutine executor when using with promise (#486)
2019-05-13 10:12:05 +03:00
#### v0.13.4
- Force int when setting max query depth (#477)
2019-05-11 10:48:12 +03:00
#### v0.13.3
- Reverted minor possible breaking change (#476)
2019-05-10 09:03:54 +03:00
#### v0.13.2
- Added QueryPlan support (#436)
- Fixed an issue with NodeList iteration over missing keys (#475)
2019-03-09 18:34:29 +03:00
#### v0.13.1
- Better validation of field/directive arguments
- Support for apollo client/server persisted queries
- Minor tweaks and fixes
2018-11-27 13:23:58 +03:00
## v0.13.0
2018-11-27 11:39:20 +03:00
This release brings several breaking changes. Please refer to [UPGRADE ](UPGRADE.md ) document for details.
New features and notable changes:
2018-11-27 13:23:58 +03:00
- PHP version required: 7.1+
- Spec compliance: error `category` and extensions are displayed under `extensions` key when using default formatting (#389)
2018-11-27 11:51:53 +03:00
- New experimental executor with improved performance (#314).< br >
It is a one-line switch: `GraphQL::useExperimentalExecutor()` .< br >
< br >
**Please try it and post your feedback at https://github.com/webonyx/graphql-php/issues/397**
(as it may become the default one in future)
< br >
< br >
2018-11-27 13:23:58 +03:00
- Ported `extendSchema` from the reference implementation under `GraphQL\Utils\SchemaExtender` (#362)
2018-11-27 11:51:53 +03:00
- Added ability to override standard types via `GraphQL::overrideStandardTypes(array $types)` (#401)
2018-11-27 13:23:58 +03:00
- Added flag `Debug::RETHROW_UNSAFE_EXCEPTIONS` which would only rethrow app-specific exceptions (#337)
- Several classes were renamed (see [UPGRADE.md ](UPGRADE.md ))
- Schema Validation improvements
#### v0.12.6
- Bugfix: Call to a member function getLocation() on null (#336)
- Fixed several errors discovered by static analysis (#329)
2018-08-07 19:20:39 +03:00
#### v0.12.5
- Execution performance optimization for lists
#### v0.12.4
- Allow stringeable objects to be serialized by StringType (#303)
#### v0.12.3
- StandardServer: add support for the multipart/form-data content type (#300)
#### v0.12.2
- SchemaPrinter: Use multi-line block for trailing quote (#294)
#### v0.12.1
- Fixed bug in validation rule OverlappingFieldsCanBeMerged (#292)
- Added one more breaking change note in UPGRADE.md (#291)
- Spec compliance: remove `data` entry from response on top-level error (#281)
2018-05-27 15:42:05 +03:00
## v0.12.0
- RFC: Block String (multi-line strings via triple-quote """string""")
- GraphQL Schema SDL: Descriptions as strings (including multi-line)
- Changed minimum required PHP version to 5.6
Improvements:
- Allow extending GraphQL errors with additional properties
- Fixed parsing of default values in Schema SDL
- Handling several more cases in findBreakingChanges
- StandardServer: expect `operationName` (instead of `operation` ) in input
2017-12-12 12:03:21 +03:00
#### v0.11.5
- Allow objects with __toString in IDType
2017-08-20 19:15:22 +03:00
2017-11-28 16:27:06 +03:00
#### v0.11.4
- findBreakingChanges utility (see #199 )
2017-11-28 08:38:56 +03:00
#### v0.11.3
- StandardServer: Support non pre-parsed PSR-7 request body (see #202 )
#### v0.11.2
- Bugfix: provide descriptions to custom scalars (see #181 )
2017-09-22 19:16:34 +03:00
#### v0.11.1
- Ability to override internal types via `types` option of the schema (see #174 ).
2017-09-20 15:50:23 +03:00
## v0.11.0
2017-09-22 19:16:34 +03:00
This release brings little changes but there are two reasons why it is released as major version:
2017-09-20 15:50:23 +03:00
1. To follow reference implementation versions (it matches 0.11.x series of graphql-js)
2. It may break existing applications because scalar input coercion rules are stricter now:< br >
In previous versions sloppy client input could leak through with unexpected results.
For example string `"false"` accidentally sent in variables was converted to boolean `true`
2017-09-22 19:16:34 +03:00
and passed to field arguments. In the new version, such input will produce an error
2017-09-20 15:50:23 +03:00
(which is a spec-compliant behavior).
Improvements:
- Stricter input coercion (see #171 )
2017-09-22 19:16:34 +03:00
- Types built with `BuildSchema` now have reference to AST node with corresponding AST definition (in $astNode property)
- Account for query offset for error locations (e.g. when query is stored in `.graphql` file)
2017-09-20 15:50:23 +03:00
2017-08-30 19:33:58 +03:00
#### v0.10.2
- StandardServer improvement: do not raise an error when variables are passed as empty string (see #156 )
2017-08-20 21:27:20 +03:00
#### v0.10.1
- Fixed infinite loop in the server (see #153 )
2017-08-20 19:15:22 +03:00
## v0.10.0
This release brings several breaking changes. Please refer to [UPGRADE ](UPGRADE.md ) document for details.
New features and notable changes:
- Changed minimum PHP version from 5.4 to 5.5
2017-08-20 19:25:48 +03:00
- Lazy loading of types without separate build step (see #69 , see [docs ](http://webonyx.github.io/graphql-php/type-system/schema/#lazy-loading-of-types ))
- PSR-7 compliant Standard Server (see [docs ](http://webonyx.github.io/graphql-php/executing-queries/#using-server ))
- New default error formatting, which does not expose sensitive data (see [docs ](http://webonyx.github.io/graphql-php/error-handling/ ))
- Ability to define custom error handler to filter/log/re-throw exceptions after execution (see [docs ](http://webonyx.github.io/graphql-php/error-handling/#custom-error-handling-and-formatting ))
- Allow defining schema configuration using objects with fluent setters vs array (see [docs ](http://webonyx.github.io/graphql-php/type-system/schema/#using-config-class ))
- Allow serializing AST to array and re-creating AST from array lazily (see [docs ](http://webonyx.github.io/graphql-php/reference/#graphqlutilsast ))
- [Apollo-style ](https://dev-blog.apollodata.com/query-batching-in-apollo-63acfd859862 ) query batching support via server (see [docs ](http://webonyx.github.io/graphql-php/executing-queries/#query-batching ))
- Schema validation, including validation of interface implementations (see [docs ](http://webonyx.github.io/graphql-php/type-system/schema/#schema-validation ))
- Ability to pass custom config formatter when defining schema using [GraphQL type language ](http://graphql.org/learn/schema/#type-language ) (see [docs ](http://webonyx.github.io/graphql-php/type-system/type-language/ ))
2017-08-20 19:15:22 +03:00
Improvements:
- Significantly improved parser performance (see #137 and #128 )
- Support for PHP7 exceptions everywhere (see #127 )
- Improved [documentation ](http://webonyx.github.io/graphql-php/ ) and docblock comments
Deprecations and breaking changes - see [UPGRADE ](UPGRADE.md ) document.
#### v0.9.14
- Minor change to assist DataLoader project in fixing #150
#### v0.9.13
- Fixed PHP notice and invalid conversion when non-scalar value is passed as ID or String type (see #121 )
#### v0.9.12
- Fixed bug occurring when enum `value` is bool, null or float (see #141 )
#### v0.9.11
- Ability to disable introspection (see #131 )
#### v0.9.10
- Fixed issue with query complexity throwing on invalid queries (see #125 )
- Fixed "Out of memory" error when `resolveType` returns unexpected result (see #119 )
#### v0.9.9
- Bugfix: throw UserError vs InvariantViolationError for errors caused by client (see #123 )
#### v0.9.8
- Bugfix: use directives when calculating query complexity (see #113 )
- Bugfix: `AST\Node::__toString()` will convert node to array recursively to encode to json without errors
#### v0.9.7
- Bugfix: `ResolveInfo::getFieldSelection()` now correctly merges fragment selections (see #98 )
#### v0.9.6
- Bugfix: `ResolveInfo::getFieldSelection()` now respects inline fragments
#### v0.9.5
- Fixed SyncPromiseAdapter::all() to not change the order of arrays (see #92 )
#### v0.9.4
- Tools to help building schema out of Schema definition language as well as printing existing
schema in Schema definition language (see #91 )
#### v0.9.3
- Fixed Utils::assign() bug related to detecting missing required keys (see #89 )
#### v0.9.2
- Schema Definition Language: element descriptions can be set through comments (see #88 )
#### v0.9.1
- Fixed: `GraphQL\Server` now properly sets promise adapter before executing query
## v0.9.0
- Deferred resolvers (see #66 , see [docs ](docs/data-fetching.md#solving-n1-problem ))
- New Facade class with fluid interface: `GraphQL\Server` (see #82 )
- Experimental: ability to load types in Schema lazily via custom `TypeResolutionStrategy` (see #69 )
## v0.8.0
This release brings several minor breaking changes. Please refer to [UPGRADE ](UPGRADE.md ) document for details.
New features:
- Support for `null` value (as required by latest GraphQL spec)
- Shorthand definitions for field and argument types (see #47 )
- `path` entry in errors produced by resolvers for better debugging
- `resolveType` for interface/union is now allowed to return string name of type
- Ability to omit name when extending type class (vs defining inline)
Improvements:
- Spec compliance improvements
- New docs and examples
## Older versions
2018-04-15 11:38:16 +03:00
Look at [GitHub Releases Page ](https://github.com/webonyx/graphql-php/releases ).