Skip to content

Releases: josephwoodward/graphiql-dotnet

v2.0.0 Release

27 Mar 19:26
b420013
Compare
Choose a tag to compare
  • #44 - Upgraded to the latest version of GraphiQL which includes some new features.
  • GraphQL API route and/or GraphiQL UI address can now be configured via Options using the IoC container
  • #42 - Added a delegate that's executed before a request is resolved enabling options such as authentication, see these test for an example.
services.AddGraphiQl(x => x.IsAuthenticated = context =>
{
    context.Response.Clear();
    context.Response.StatusCode = 400;
    context.Response.WriteAsync("This page requires authentication");

    return Task.FromResult(false);
});

1.2.0

19 Oct 19:58
a10d137
Compare
Choose a tag to compare

#23 - Add ability to set the graphql path (thanks to @pouladpld for his PR to get this moving)
#26 - Update FileProviders and StaticFiles packages

1.2.0-beta

20 Aug 21:07
571732a
Compare
Choose a tag to compare
1.2.0-beta Pre-release
Pre-release

#23 - Add ability to set the graphql path (thanks to @pouladpld for his PR to get this moving)

1.1.0 Release

30 Nov 23:12
Compare
Choose a tag to compare

This update allows adds support for .NET Standard 2.0 and netcoreapp2.0