Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion releaseNotes/Microsoft.Featuremanagement.AspNetCore.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

[Source code][source_code] | [Package (NuGet)][package] | [Samples][samples] | [Product documentation][docs]

## 4.5.0 - April 23, 2026

* Updated `Microsoft.FeatureManagement` reference to `4.5.0`. See the [release notes](./Microsoft.Featuremanagement.md) for more information on the changes.

## 4.4.0 - December 18, 2025

* Updated `Microsoft.FeatureManagement` reference to `4.4.0`. See the [release notes](./Microsoft.Featuremanagement.md) for more information on the changes.
Expand Down Expand Up @@ -90,4 +94,4 @@ This release has been delisted due to the enhancement below resulting in an unin
[docs]: https://github.com/microsoft/FeatureManagement-Dotnet
[package]: https://www.nuget.org/packages/Microsoft.FeatureManagement.AspNetCore
[samples]: https://github.com/microsoft/FeatureManagement-Dotnet/tree/master/examples/FeatureFlagDemo
[source_code]: https://github.com/microsoft/FeatureManagement-Dotnet/tree/master/src/Microsoft.FeatureManagement.AspNetCore
[source_code]: https://github.com/microsoft/FeatureManagement-Dotnet/tree/master/src/Microsoft.FeatureManagement.AspNetCore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

[Source code][source_code] | [Package (NuGet)][package] | [Samples][samples] | [Product documentation][docs]

## 4.5.0 - April 23, 2026

* Updated `Microsoft.FeatureManagement` reference to `4.5.0`. See the [release notes](./Microsoft.Featuremanagement.md) for more information on the changes.

## 4.4.0 - December 18, 2025

* Updated `Microsoft.FeatureManagement` reference to `4.4.0`. See the [release notes](./Microsoft.Featuremanagement.md) for more information on the changes.
Expand Down
11 changes: 11 additions & 0 deletions releaseNotes/Microsoft.Featuremanagement.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

[Source code][source_code] | [Package (NuGet)][package] | [Samples][samples] | [Product documentation][docs]

## 4.5.0 - April 23, 2026

### Enhancements

* Added support for custom feature definition providers to pass filter settings directly by using `ParametersObject`, reducing configuration-conversion overhead for non-configuration-backed sources. [#589](https://github.com/microsoft/FeatureManagement-Dotnet/pull/589)
Copy link

Copilot AI Apr 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor wording issue: “pass … directly by using” is redundant and reads awkwardly. Consider rephrasing to something like “pass filter settings directly using ParametersObject …” (or equivalent) to improve readability.

Suggested change
* Added support for custom feature definition providers to pass filter settings directly by using `ParametersObject`, reducing configuration-conversion overhead for non-configuration-backed sources. [#589](https://github.com/microsoft/FeatureManagement-Dotnet/pull/589)
* Added support for custom feature definition providers to pass filter settings directly using `ParametersObject`, reducing configuration-conversion overhead for non-configuration-backed sources. [#589](https://github.com/microsoft/FeatureManagement-Dotnet/pull/589)

Copilot uses AI. Check for mistakes.
* Improved filter parameter caching behavior for custom feature definition providers that wrap the built-in `ConfigurationFeatureDefinitionProvider`. [#367](https://github.com/microsoft/FeatureManagement-Dotnet/issues/367)

### Bug Fixes

* Fixed a bug where evaluating features with `RequirementType.All` and `IgnoreMissingFeatureFilters` could throw instead of treating missing filters as disabled. [#586](https://github.com/microsoft/FeatureManagement-Dotnet/issues/586)

## 4.4.0 - December 18, 2025

### Enhancements
Expand Down
Loading