From 9e281c6635b8e7c3620fe3e77c0e2adbab572c14 Mon Sep 17 00:00:00 2001 From: Wade Pickett Date: Thu, 30 Apr 2026 12:46:31 -0700 Subject: [PATCH 1/2] Remove JsonPatch support mention from APIs doc Contributes to #36419 --- aspnetcore/fundamentals/apis.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/aspnetcore/fundamentals/apis.md b/aspnetcore/fundamentals/apis.md index 37ce2a5ff4ae..a1156f05029d 100644 --- a/aspnetcore/fundamentals/apis.md +++ b/aspnetcore/fundamentals/apis.md @@ -88,7 +88,6 @@ Both API projects refer to the following class: * Model binding extensibility (, ) * Advanced validation features () * [Application parts](xref:mvc/extensibility/app-parts) or the [application model](xref:mvc/controllers/application-model) -* [JsonPatch](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/) support * [OData](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/) support Most of these features can be implemented in Minimal APIs with custom solutions, but controllers provide them out of the box. @@ -151,7 +150,6 @@ Both API projects refer to the following class: * Form binding support, including * Advanced validation features () * [Application parts](xref:mvc/extensibility/app-parts) or the [application model](xref:mvc/controllers/application-model) -* [JsonPatch](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/) support * [OData](https://www.nuget.org/packages/Microsoft.AspNetCore.OData/) support ## See also From 405a273f44d8ad0d7e636ac18618b2500241978c Mon Sep 17 00:00:00 2001 From: Wade Pickett Date: Thu, 30 Apr 2026 12:54:55 -0700 Subject: [PATCH 2/2] Apply suggestion from @wadepickett --- aspnetcore/fundamentals/apis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/apis.md b/aspnetcore/fundamentals/apis.md index a1156f05029d..b3b7d99a3040 100644 --- a/aspnetcore/fundamentals/apis.md +++ b/aspnetcore/fundamentals/apis.md @@ -4,7 +4,7 @@ author: JeremyLikness description: Learn how to build fast HTTP APIs with ASP.NET Core using Minimal APIs, the recommended approach for new projects. ai-usage: ai-assisted ms.author: jeliknes -ms.date: 08/15/2025 +ms.date: 04/30/2026 monikerRange: '>= aspnetcore-6.0' uid: fundamentals/apis ---