andimarek
released this
This is an important release which comes with two new major features and a bunch of performance improvements:
#1764 New Feature: Interfaces can implement other interfaces
This change allows interfaces to be implement by other interfaces instead of just objects.
This post explains the motivation and the background for it
#1772 New Feature: Custom Scalar specification URL
This lets you define a specification URL for a custom Scalar, which documents how this Scalar works.
This talk explains some background.
Performance improvements
We have a lot of performance improvements in this release. Some of them are significant improvements for systems at high scale.
#1815 More efficient DataFetcher
#1891 Improve ExecutionPath performance
#1792 Reduce NonNullable Exception overhead
Directives on variable declaration
It is now allowed to use directives on variable declaration.
Subscription improvements
#1804 DataFethcerResult can now be returned from subscription fetchers
#1801 Fixes the Subscription publisher so that it does not drop values at scale.
Non standard Scalar handling (Breaking change)
Any special handling for non standard Scalars got removed. This means you have to declare any Long, Char, etc Scalar explicitly in your SDL and provide an implementation.
The implementation for these non standard Scalars are still available in GraphQL Java itself (in the Scalars class) but they will be removed in the next release. The extended scalars project is the recommend way to migrate.
All breaking changes
All PRs for 15.0
Assets
2
andimarek
released this
Overview
This is a big release after more than 6 months without a new major version. It consists of over 70 PRs which is mainly smaller bugfixes and improvements from all over the place.
The "biggest" feature in terms of work was the new SchemaTransformer and FieldVisibilitySchemaTransformation: it allows you to transform a GraphQLSchema and more specifically to remove one or more fields from a GraphQLSchema. While implementing this we refactored the GraphQLType hierarchy. If you are doing advanced GraphQLSchema processing you might be affected by it.
The most impactful changes for normal users are probably:
- The
IDscalar was changed to serialize all objects (#1693) - There is a new
java.util.Localeavailable on theDataFetcherEnvironmentset when you start executing a query (#1576) - Support of all unicode characters (#1603)
- add
getArgumentOrDefaulttoDataFetcherEnvironment(#1659) - Correctly support additional optional arguments in fields defined by interfaces (#1694)
- add hook to allow for custom value unboxing (#1684)
But the impact really depends on your specific use, so please have a look at the complete list below.
List of all Features and Bugfixes
#1576: New java.util.Locale on DataFetcherEnvironment
#1589: Bugfix: Non-null input object fields with default values should be valid
#1589: Allow "special" names like true or fragment to be used as names
#1585: Introduce privacy safe logger prefix
#1601 and #1602: Improve Lexer errors
#1603: Allow full range of unicode characters
#1607: Add unique fragment names validation
#1609: Schema printing now prints description by default
#1610: Improved schema diff
#1637: Bugfix: SchemaPrinter print directive arguments only when there is a value
#1638: Bugfix: QueryTraverser can visit fields when the scalar value is an AST object
#1643: Parse a inputStream of schema definitions
#1645: Capture extend ast definitions in the GraphQLSchema
#1648: Fix if strategy is updated during instrumenting execution context
#1651: Upgrade DataLoader and fix lazy date loader support
#1659: add getArgumentOrDefault to DataFetcherEnvironment
#1668: Enhanced execution input (and hence data loader registry) is now captured before use
#1676: Will not override error classification extensions if they are already present
#1684: add hook to allow for custom value unboxing
#1685: local context is now null by default on top level fields
#1689: add support for extend schema notation
#1691: Add negative cache for PropertyDataFetcher
#1692: Improve Introspection performance
#1693: ID scalar now serialize all objects via String.valueOf
#1694: Bugfix: Correctly support additional optional arguments in fields defined by interfaces
#1702: Add FieldVisibilitySchemaTransformation which allows you to remove specific fields from a schema
#1720: Bugfix: QueryTraverser: fix NPE for directive arguments
#1721: Fine grained directive filtering in printing
#1722: Bugfix: description of directives arguments are captured correctly from SDL
#1723: Bugfix: capture directive definition when building a GraphQLSchema from SDL
#1725: Allows the messages from a scalar validation to be sent back to the user
#1735: Bugfix: comments on interface arguments cause wrong error for schema validation
#1737: Improve PropertyDataFetcher: search private getter up the class hierarchy
Breaking changes
#1685: We changed the default behaviour for the local context property: It is now null by default on top
level fields.
#1605 and other: We refined the type system for GraphQLSchema objects (classes implementing GraphQLType) and introduced a general SchemaTransformer class which lets you transform a GraphQLSchema object.
#1734: The SDL PostProcessor hook was renamed from SchemaTransformer to SchemaGeneratorPostProcessing to make the purpose more clear but also to make the name SchemaTransformer available.
Details
All PRs merged for 14.0:
https://github.com/graphql-java/graphql-java/pulls?utf8=%E2%9C%93&q=is%3Apr+milestone%3A14.0+
All PRs with breaking changes:
https://github.com/graphql-java/graphql-java/pulls?utf8=%E2%9C%93&q=is%3Apr+milestone%3A14.0+label%3A%22breaking+change%22
Assets
2
andimarek
released this
Version 9.7 is a bugfix release for our LTS Version 9.x.
It contains the following bugfixes:
#1753 multiple GraphQL sub types printing
#1752 additional optional arguments fields defined by interfaces
#1751 capture directive definition when building Schema
#1750 description of directives arguments are captured
#1749 Strategy update didn't take effect
#1748 Print directive argument only when it has a value
#1747 Non-null input object fields with default values should be valid
https://github.com/graphql-java/graphql-java/pulls?q=is%3Apr+milestone%3A9.7
Assets
2
bbakerman
released this
Breaking changes
#1221 @deferred behavior now includes field path
This is breaking in the sense that data that was not there before is now present and hence the behaviour has changed.
Some would argue that this is not a breaking change but we are being conservative here.
#1460 @defer is no longer a default directive
You now have to opt in to getting @defer behavior whereas before it as the default
#1483 PreparsedDocumentProvider now has full input
Previously only the query string was passed to the PreparsedDocumentProvider but now it receives the full execution input
#1495 ErrorClassification can now contribute to the extensions map of the error
This is breaking in the sense that new data will arrive on error object that was not present before.
Some would argue that this is not a breaking change but we are being conservative here.
#1536 Directive Wiring will be called for all directives
Previously a directive schema wiring would only be called back if the element had the named directive on it. This has been changed to that there is not a class of registration where a directive schema wiring can be called back for all elements regardless of whether they have a directive or not
The breaking change is now that the arguments passed into a SchemaDirectiveWiring can now be null at certain times whereas before it could never be null
#1540 DirectivesContainer no longer inherits from NamedNode
Not all AST elements that can have directives are actually NamedNodes so this has been changed
#1546 Pluggable type comparators
SchemaPrinterComparatorRegistry has been renamed as GraphqlTypeComparatorRegistry and applies to a wider aspect than just in schema printing.
You can now have one on at the schema level and decide how types get sorted in all contexts including Introspection and Schema printing.
All breaking changes
Other changes
#1567 A list of DataFetcherResult can now be returned
Previously one could return a DataFetcherResult (with data, local context and possible errors) from a field fetch call
Now you return a List of DataFetcherResult objects (for list types) so that each item in the list gets its own data, local context and possible errors.
#1513 Line numbers are off by one
Previously syntax errors ;line numbers might be off by one. This was due to confusion between zero based offsets and ones based offsets in ANTLR - this has been fixed
#1493 A CacheControl instance is always seeded into ExecutionInput
#1487 containsAllOf and containsAnyOf has been added to DataFetcherSeletionSet
This makes it a bit easier to decide if sub selected fields are present
#1491 ExecutionResult can now programmatically tell you if a data element is present
#1393 You can get the runtime directives that are present on a query field
We now generate filled outgraphql.schema.GraphQLDirective objects for the directives on a field at fetch time.
All changes
Assets
2
bbakerman
released this
This is the next stable release of graphql-java
There are two fixes applied
Assets
2
andimarek
released this
Breaking changes
#1335 Immutable Ast
This is a change we actually started a few months ago with making nearly all Nodes immutable.
This PR makes now all Nodes immutable and also provides a convenient way of changing Nodes in a Tree.
See #1335 (comment) for more details how to do that.
It contains also a change for the general tree TraverserContext: the result per Context is gone in favour of a accumulate property which lets you implement a general tree reduce logic.
Special thanks to @felipe-gdr for this PR.
#1308 GraphQLCodeRegistry
A new CodeRegistry was introduced which separates "code" (DataFetcher and TypeResolver) from the actual GraphQLSchema.
As a consequence you can't read the DataFetcher or TypeResolver anymore from a GraphQL object. (Adding a DataFetcher and TypeResolver when creating a GraphQLSchema is deprecated but still works as before. This was done for backwards compatibility but will be removed in a future version and hence the only way t associate data fetcher code with fields will be via the CodeRegistry)
#1313 Default Context object
GraphQL Java now offers a default context object if nothing was set.
The small breaking change is that the default context value is not null any more. We dont expect this to be a problem in practice.
#1387 removed ExecutionContext from DataFetcherEnvironment
ExecutionContext was removed from DataFetcherEnvironment in favour of adding more properties to the DataFetcherEnvironment directly.
#1415 General Purpose Error Builder
The breaking change is regarding mapping or errors returned from a DataFetcher. DataFetcherResult has a new property isMapRelativeErrors which is false by default. Previously it was like it was true by default . When it is true, the data fetching code will map this error as being a relative error from the existing field. If it is false then any errors returned will be passed on unchanged.
All breaking changes PRs
Other changes
#1416 SchemaDirectiveWiring is now done after the full set of graphql elements are built
This makes the schema directive wiring occur after the type has been built and hence the callback gets full access to the type hierarchy
#1376 Passing local context objects from data fetchers to child fields
This uses DataFetcherResult as the mechanism for a DataFetcher to pass local context objects down to child fetchers. This allows parent fields to pass down information to lower layers. If a field does not pass any local context down, then the local context from the previous parent is used.
#1355 Added the ability to instrument document and variables
#1285 PropertyDataFetcher: Added the ability to not use setAccessible for non public access
All changes:
Assets
2
andimarek
released this
Maintenance release for the stable branch 9.x with:
- Update antlr4 from 4.7.1 to 4.7.2
- Fix NPE in AstPrinter for inline fragments without type condition
- ClassCastException when using a fragment with wrong input type condition and overlapping fields are being merged.
- Floats can have positive exponents
Full list of PRS:
https://github.com/graphql-java/graphql-java/pulls?utf8=%E2%9C%93&q=milestone%3A%229.5%22