From 7cf27cd578f9b4f106465678270917f0c6ee594c Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Thu, 13 Feb 2025 17:21:39 +0100 Subject: [PATCH] Documentation: Add information about removed class, interfaces, methods --- Documentation/MigrateFromv2Tov3.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Documentation/MigrateFromv2Tov3.md b/Documentation/MigrateFromv2Tov3.md index 6287e7e99..1234119b2 100644 --- a/Documentation/MigrateFromv2Tov3.md +++ b/Documentation/MigrateFromv2Tov3.md @@ -17,3 +17,17 @@ We now target `netstandard2.1` and `net472`, allowing Spark to run on .NET 8.0 a - `FhirResponse GetFhirResponse(Entry entry, IKey key = null, IEnumerable parameters = null) where T : Resource` - `FhirResponse GetFhirResponse(Entry entry, IKey key = null, params object[] parameters) where T : Resource` +### Removed classes and interfaces +- `ResourceVisitor` (`Spark.Engine.Core`) +- `FhirPropertyIndex` (`Spark.Engine.Core`) + +### Removed methods +- `AddFhirFormatters(this IServiceCollection, Action)` has been removed, use + `AddFhirFormatters(this IServiceCollection, SparkSettings, Action)` instead. +- ctor `ResourceJsonInputFormatter()` has been removed, use ctor `ResourceJsonInputFormatter(FhirJsonParser, ArrayPool)` + instead. +- ctor `ResourceXmlInputFormatter()` has been removed, use ctor `ResourceJXmlInputFormatter(FhirXmlParser)` instead. +- `ToHttpResponseMessage(this OperationOutcome, ResourceFormat, HttpRequestMessage)` has been removed. +- `ToHttpResponseMessage(this OperationOutcome, ResourceFormat)` has been removed. +- `FhirService(IFhirServiceExtension[], IFhirResponseFactory, ITransfer, ICompositeServiceListener)` has been removed, use + `FhirService(IFhirServiceExtension[], IFhirResponseFactory, ICompositeServiceListener)` instead.