From c6eca0b50cf08b9f7aa5c4563549874bc337be90 Mon Sep 17 00:00:00 2001 From: Shane Krueger Date: Tue, 25 Nov 2025 23:13:21 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c143bce..7ca9caa 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 From 681e5834c58aa13fb34ad9d6767c4aff6834ea83 Mon Sep 17 00:00:00 2001 From: Shane Krueger Date: Tue, 25 Nov 2025 23:14:05 -0500 Subject: [PATCH 2/3] Add migration notes for GraphQL.AspNetCore3 v8.0.0 Updated migration notes for version 8.0.0 to include dependency and new feature details. --- migration.md | 2 ++ 1 file changed, 2 insertions(+) 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 From 98cb53f1caf753d1e66a2440e6099b8178082951 Mon Sep 17 00:00:00 2001 From: Shane Krueger Date: Tue, 25 Nov 2025 23:14:32 -0500 Subject: [PATCH 3/3] Update GraphQL.AspNetCore3 package version to 8.0.0 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ca9caa..5921ed9 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Below is a complete sample of a .NET 6 console app that hosts a GraphQL endpoint - +