Releases: graphql-dotnet/conventions
Releases · graphql-dotnet/conventions
Version 1.3.9
- Add option for ignoring types from unwanted namespaces. Thanks @adebisi-fa for #79.
Version 1.3.8
- Ignore methods and properties returning
void
as reported in #75. Thanks @adebisi-fa for reporting.
Version 1.3.7
Version 1.3.6
- Make it possible to use profiler and field middleware when performing pre-validation
Version 1.3.5
- Set
Response.IsValid
tofalse
if query string is empty - Add
extra
field on response, allowing plugins and extensions to enrich the output - Add
ChaosAttribute
for intentionally failing a set percentage of field resolvers at random (for testing) - Add
NameNormalizerAttribute
to stripDto
suffices from type names - Add
Response.EnrichWithProfilingInformation()
to append profiling information to the response (use in conjunction withRequestHandlerBuilder.WithProfiling()
Version 1.3.4
- Use JSON.NET v5.0.6 when targeting .NET Framework 4.5
- Use JSON.NET v9.0.1 when targeting .NET Standard 1.5
Version 1.3.3
- Make descriptions and deprecation reasons toggleable in schema printer
- Add query, mutation and subscription types dynamically in
RequestHandler
Version 1.3.2
- Limit
[RelayMutation]
to only work on fields - Add
[RelayMutationType]
, applicable to types; will automatically add theRelayMutationAttribute
to all fields
Version 1.3.1
- Make
Metrics
thread-safe - Include unit tests from
parser
andgraphql-dotnet
Version 1.3.0
- Add preliminary support for
null
literals (creds to @AndyBan)