From c723c15fa093fdfe835ecc9ca2810a4f63c1daf2 Mon Sep 17 00:00:00 2001 From: zhiyuanliang Date: Thu, 24 Jul 2025 00:33:12 +0800 Subject: [PATCH 1/2] release note 8.3.0 --- .../MicrosoftAzureAppConfigurationAspNetCore.md | 3 +++ .../MicrosoftAzureAppConfigurationFunctionsWorker.md | 3 +++ ...ftExtensionsConfigurationAzureAppConfiguration.md | 12 ++++++++++++ 3 files changed, 18 insertions(+) diff --git a/releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md b/releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md index 5ce629c8..4bf73177 100644 --- a/releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md +++ b/releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md @@ -1,6 +1,9 @@ # Microsoft.Azure.AppConfiguration.AspNetCore [Source code][source_code] | [Package (NuGet)][package] +## 8.3.0 - July 24th, 2025 +* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.3.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. + ## 8.2.0 - May 14th, 2025 * Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.2.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. diff --git a/releaseNotes/MicrosoftAzureAppConfigurationFunctionsWorker.md b/releaseNotes/MicrosoftAzureAppConfigurationFunctionsWorker.md index ffe11410..99f9698f 100644 --- a/releaseNotes/MicrosoftAzureAppConfigurationFunctionsWorker.md +++ b/releaseNotes/MicrosoftAzureAppConfigurationFunctionsWorker.md @@ -1,6 +1,9 @@ # Microsoft.Azure.AppConfiguration.Functions.Worker [Source code][source_code] | [Package (NuGet)][package] +## 8.3.0 - July 24th, 2025 +* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.3.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. + ## 8.2.0 - May 14th, 2025 * Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.2.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. diff --git a/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md b/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md index cf02f206..bd9053cd 100644 --- a/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md +++ b/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md @@ -1,6 +1,18 @@ # Microsoft.Extensions.Configuration.AzureAppConfiguration [Source code][source_code] | [Package (NuGet)][package] +## 8.3.0 - July 24th, 2025 +### Enhancements +* Added health check integration for `Microsoft.Extensions.Diagnostic.HealthChecks`. You can call `AddAzureAppConfiguration` on `IHealthCheckBuilder` to register a health check for the Azure App Configuration provider. [#644](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/644) + + ```cs + builder.Services + .AddHealthChecks() + .AddAzureAppConfiguration(); + ``` + +* Introduced a new environment variable `AZURE_APP_CONFIGURATION_FM_SCHEMA_COMPATIBILITY_DISABLED` to enable processing and outputting feature flags using the [Microsoft schema](https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureFlag.v2.0.0.schema.json). [#676](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/676) + ## 8.2.0 - May 14th, 2025 ### Enhancements * Updated the existing `Select` APIs with the new parameter `tagFilters` to support filtering key-values and feature flags by tags. From f573910e97005cede89ea840b98d063503315348 Mon Sep 17 00:00:00 2001 From: zhiyuanliang Date: Thu, 24 Jul 2025 19:35:29 +0800 Subject: [PATCH 2/2] update --- .../MicrosoftExtensionsConfigurationAzureAppConfiguration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md b/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md index bd9053cd..c8e326ec 100644 --- a/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md +++ b/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md @@ -11,7 +11,7 @@ .AddAzureAppConfiguration(); ``` -* Introduced a new environment variable `AZURE_APP_CONFIGURATION_FM_SCHEMA_COMPATIBILITY_DISABLED` to enable processing and outputting feature flags using the [Microsoft schema](https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureFlag.v2.0.0.schema.json). [#676](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/676) +* Introduced a new environment variable `AZURE_APP_CONFIGURATION_FM_SCHEMA_COMPATIBILITY_DISABLED` to force processing and outputting feature flags using the [Microsoft schema](https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureFlag.v2.0.0.schema.json). [#676](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/676) ## 8.2.0 - May 14th, 2025 ### Enhancements