Skip to content

Commit cad3739

Browse files
authored
Update README.md (#92)
* Update README.md * Add migration notes for GraphQL.AspNetCore3 v8.0.0 Updated migration notes for version 8.0.0 to include dependency and new feature details. * Update GraphQL.AspNetCore3 package version to 8.0.0
1 parent 618d200 commit cad3739

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![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)
44

5-
This package is designed for ASP.Net Core (2.1 through 9.0) to facilitate easy set-up of GraphQL requests
5+
This package is designed for ASP.Net Core (2.1 through 10.0) to facilitate easy set-up of GraphQL requests
66
over HTTP. The code is designed to be used as middleware within the ASP.Net Core pipeline,
77
serving GET, POST or WebSocket requests. GET requests process requests from the querystring.
88
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.
3636
### Typical configuration with HTTP middleware
3737

3838
First add the `GraphQL.AspNetCore3` nuget package to your application. It requires
39-
`GraphQL` version 8.2.1 or a later.
39+
`GraphQL` version 8.8.0 or a later.
4040

4141
Then update your `Program.cs` or `Startup.cs` to register the schema, the serialization engine,
4242
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
5757
</PropertyGroup>
5858

5959
<ItemGroup>
60-
<PackageReference Include="GraphQL.AspNetCore3" Version="5.0.0" />
60+
<PackageReference Include="GraphQL.AspNetCore3" Version="8.0.0" />
6161
</ItemGroup>
6262

6363
</Project>

migration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 8.0.0
44

5+
GraphQL.AspNetCore3 v8 requires GraphQL.NET v8.8.0 or newer.
6+
57
### New features
68

79
- Response content type negotiation now properly handles the `Accept` header, supporting

0 commit comments

Comments
 (0)