diff --git a/README.md b/README.md index c143bce..5921ed9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![NuGet](https://img.shields.io/nuget/v/GraphQL.AspNetCore3.svg)](https://www.nuget.org/packages/GraphQL.AspNetCore3) [![Coverage Status](https://coveralls.io/repos/github/Shane32/GraphQL.AspNetCore3/badge.svg?branch=master)](https://coveralls.io/github/Shane32/GraphQL.AspNetCore3?branch=master) -This package is designed for ASP.Net Core (2.1 through 9.0) to facilitate easy set-up of GraphQL requests +This package is designed for ASP.Net Core (2.1 through 10.0) to facilitate easy set-up of GraphQL requests over HTTP. The code is designed to be used as middleware within the ASP.Net Core pipeline, serving GET, POST or WebSocket requests. GET requests process requests from the querystring. POST requests can be in the form of JSON requests, form submissions, or raw GraphQL strings. @@ -36,7 +36,7 @@ for changes from previous versions. ### Typical configuration with HTTP middleware First add the `GraphQL.AspNetCore3` nuget package to your application. It requires -`GraphQL` version 8.2.1 or a later. +`GraphQL` version 8.8.0 or a later. Then update your `Program.cs` or `Startup.cs` to register the schema, the serialization engine, and optionally the HTTP middleware and WebSocket services. Configure WebSockets and GraphQL @@ -57,7 +57,7 @@ Below is a complete sample of a .NET 6 console app that hosts a GraphQL endpoint - + diff --git a/migration.md b/migration.md index d7b3057..329071c 100644 --- a/migration.md +++ b/migration.md @@ -2,6 +2,8 @@ ## 8.0.0 +GraphQL.AspNetCore3 v8 requires GraphQL.NET v8.8.0 or newer. + ### New features - Response content type negotiation now properly handles the `Accept` header, supporting