Skip to content

Commit deb5633

Browse files
.NET provider release notes 8.2.0 (#1054)
* add release notes first draft * update notes * mention setclientfactory * mention allocationid * update dates * Update releaseNotes/MicrosoftExtensionsConfigurationAzureAppConfiguration.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent b21ad2b commit deb5633

3 files changed

Lines changed: 29 additions & 0 deletions

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.2.0 - May 14th, 2025
5+
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.2.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes.
6+
47
## 8.1.2 - April 22nd, 2025
58
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.2`. 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.2.0 - May 14th, 2025
5+
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.2.0`. See the [release notes](./MicrosoftExtensionsConfigurationAzureAppConfiguration.md) for more information on the changes.
6+
47
## 8.1.2 - April 22nd, 2025
58
* Updated `Microsoft.Extensions.Configuration.AzureAppConfiguration` reference to `8.1.2`. 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.2.0 - May 14th, 2025
5+
### Enhancements
6+
* Updated the existing `Select` APIs with the new parameter `tagFilters` to support filtering key-values and feature flags by tags.
7+
8+
```cs
9+
public AzureAppConfigurationOptions Select(string keyFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
10+
```
11+
12+
```cs
13+
public FeatureFlagOptions Select(string featureFlagFilter, string labelFilter = LabelFilter.Null, IEnumerable<string> tagFilters = null)
14+
```
15+
* Added an `ActivitySource` called `Microsoft.Extensions.Configuration.AzureAppConfiguration` to support instrumentation. A `Load` activity will start when configuration is initially built and the `Refresh` activity will start when a refresh is triggered. [#645](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/645)
16+
* This is the first stable release of the `AzureAppConfigurationOptions.SetClientFactory` API introduced in 8.2.0-preview. [#380](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/380)
17+
18+
```cs
19+
public AzureAppConfigurationOptions SetClientFactory(IAzureClientFactory<ConfigurationClient> factory)
20+
```
21+
22+
### Other Changes
23+
* Removed the `FeatureFlagId` property from feature flag telemetry. [#655](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/655)
24+
* Shortened default network timeout for requests to App Configuration to improve failover speed and retry responsiveness. [#657](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/657)
25+
* This is the first stable release of `AllocationId` from feature flag telemetry metadata, which was introduced in 8.1.0-preview. [#600](https://github.com/Azure/AppConfiguration-DotnetProvider/pull/600)
26+
427
## 8.1.2 - April 22nd, 2025
528
### Bug Fixes
629
* Calling `IServiceCollection.AddAzureAppConfiguration` now correctly adds an instance of `IConfigurationRefresherProvider` to the service collection only the first time it is called instead of adding an instance on each invocation. [#611](https://github.com/Azure/AppConfiguration-DotnetProvider/issues/611)

0 commit comments

Comments
 (0)