Skip to content

Commit 1c2365b

Browse files
.NET Provider 8.1.0 release notes (#1016)
* update release notes for 8.1.0 * add missing issue link * fix mistake in aspnetcore file * reword feature flag bug fix * reword cache bug fix * fix wording * Update releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md Co-authored-by: Avani Gupta <[email protected]> * use issue with better desc --------- Co-authored-by: Avani Gupta <[email protected]>
1 parent 0bce3e0 commit 1c2365b

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

releaseNotes/MicrosoftAzureAppConfigurationAspNetCore.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Microsoft.Azure.AppConfiguration.AspNetCore
22
[Source code][source_code] | [Package (NuGet)][package]
33

4+
## 8.1.0 - February 13th, 2025
5+
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes.
6+
47
## 8.1.0-preview - October 24th, 2024
58
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.0-preview`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes.
69

releaseNotes/MicrosoftAzureAppConfigurationFunctionsWorker.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Microsoft.Azure.AppConfiguration.Functions.Worker
22
[Source code][source_code] | [Package (NuGet)][package]
33

4+
## 8.1.0 - February 13th, 2025
5+
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes.
6+
47
## 8.1.0-preview - October 24th, 2024
58
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.0-preview`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes.
69

releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
# Microsoft.Extensions.Configuration.AzureAppConfiguration
22
[Source code][source_code] | [Package (NuGet)][package]
33

4+
## 8.1.0 - February 13th, 2025
5+
### Enhancements
6+
* Added the ability to monitor all selected key-values for refresh with the following new API. [#536](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/536)
7+
8+
```cs
9+
public AzureAppConfigurationRefreshOptions RegisterAll()
10+
```
11+
12+
When this API is called, changes to any selected key-values will cause a reload of the configuration.
13+
* Added the ability to check if the type of an `IConfigurationSource` is `AzureAppConfigurationSource` with the following new extension. [#456](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/456)
14+
15+
```cs
16+
public static bool IsAzureAppConfigurationSource(this IConfigurationSource source)
17+
```
18+
19+
### Bug Fixes
20+
* Fixed a bug where changing a feature flag would always override an already loaded feature flag with the same key but different label on refresh. As part of this change, feature flags are now always refreshed as a collection, meaning a change in any selected flag will result in a reload of all selected feature flags on refresh. [#317](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/317)
21+
* Fixed a bug where an unnecessary refresh could occur when a request to App Configuration was served from the cache. [#588](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/588)
22+
23+
### Other Changes
24+
* Removed support for the `configuration_reference` property in feature flags. [#614](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/614)
25+
* `AllocationId` from feature flag telemetry metadata, which was introduced in 8.1.0-preview version, has been removed in this stable version. [#600](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/600)
26+
427
## 8.1.0-preview - October 24th, 2024
528
### Enhancements
629
* Added support for injecting additional telemetry metadata to feature flags if telemetry is enabled

0 commit comments

Comments
 (0)