Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -57,7 +57,7 @@ Below is a complete sample of a .NET 6 console app that hosts a GraphQL endpoint
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GraphQL.AspNetCore3" Version="5.0.0" />
<PackageReference Include="GraphQL.AspNetCore3" Version="8.0.0" />
</ItemGroup>

</Project>
Expand Down
2 changes: 2 additions & 0 deletions migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading