Skip to content

Releases: graphql-dotnet/conventions

Version 1.3.9

26 Oct 12:56
Compare
Choose a tag to compare
  • Add option for ignoring types from unwanted namespaces. Thanks @adebisi-fa for #79.

Version 1.3.8

24 Oct 20:37
Compare
Choose a tag to compare
  • Ignore methods and properties returning void as reported in #75. Thanks @adebisi-fa for reporting.

Version 1.3.7

24 Oct 20:34
Compare
Choose a tag to compare
  • Handle null inputs for field parameters properly (#73). Thanks to @amay for reporting

Version 1.3.6

22 Aug 14:38
Compare
Choose a tag to compare
  • Make it possible to use profiler and field middleware when performing pre-validation

Version 1.3.5

22 Aug 09:25
Compare
Choose a tag to compare
  • Set Response.IsValid to false 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 strip Dto suffices from type names
  • Add Response.EnrichWithProfilingInformation() to append profiling information to the response (use in conjunction with RequestHandlerBuilder.WithProfiling()

Version 1.3.4

20 Aug 10:41
Compare
Choose a tag to compare
  • 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

18 Aug 11:01
Compare
Choose a tag to compare
  • Make descriptions and deprecation reasons toggleable in schema printer
  • Add query, mutation and subscription types dynamically in RequestHandler

Version 1.3.2

17 Aug 11:08
Compare
Choose a tag to compare
  • Limit [RelayMutation] to only work on fields
  • Add [RelayMutationType], applicable to types; will automatically add the RelayMutationAttribute to all fields

Version 1.3.1

17 Aug 11:07
Compare
Choose a tag to compare
  • Make Metrics thread-safe
  • Include unit tests from parser and graphql-dotnet

Version 1.3.0

16 Aug 22:11
Compare
Choose a tag to compare
  • Add preliminary support for null literals (creds to @AndyBan)