From c97a96cbfcf0cb15060f9374e46475186bcc897b Mon Sep 17 00:00:00 2001 From: Sami Sadfa Date: Fri, 21 Mar 2025 12:44:56 -0700 Subject: [PATCH] add release notes --- releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md | 3 +++ .../MicrosoftAzureAppConfigurationFunctionsWorker.md | 3 +++ ...crosoftExtensionsConfigurationAzureAppConfiguration.md | 8 ++++++++ 3 files changed, 14 insertions(+) diff --git a/releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md b/releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md index 30062d9d..9cd8acc0 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.2.0-preview - March 21st, 2025 +* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.2.0-preview`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. + ## 8.1.1 - February 26th, 2025 * Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.1`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. diff --git a/releaseNotes/MicrosoftAzureAppConfigurationFunctionsWorker.md b/releaseNotes/MicrosoftAzureAppConfigurationFunctionsWorker.md index cb06bf8a..c840cf9f 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.2.0-preview - March 21st, 2025 +* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.2.0-preview`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. + ## 8.1.1 - February 26th, 2025 * Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.1`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes. diff --git a/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md b/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md index c8de25d0..7fc82519 100644 --- a/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md +++ b/releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md @@ -1,6 +1,14 @@ # Microsoft.Extensions.Configuration.AzureAppConfiguration [Source code][source_code] | [Package (NuGet)][package] +## 8.2.0-preview - March 21st, 2025 +### Enhancements +* Added the ability to set a client factory used for creating ConfigurationClient instances. [#380](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/380) + + ```cs + public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory factory) + ``` + ## 8.1.1 - February 26th, 2025 ### Bug Fixes * Fixed a bug introduced in the 8.1.0 release where calls to `FeatureFlagOptions.Select` were ignored if they were followed by a call to either `AzureAppConfigurationOptions.Select` or `AzureAppConfigurationOptions.SelectSnapshot`. [#628](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/628)