Add support to load enhanced feature flag - #48668
Open
Yuan Qu (yuanqu72) wants to merge 3 commits into
Open
Conversation
…in the provider Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Yuan Qu (yuanqu72)
requested review from
Avani Gupta (avanigupta),
Jimmy Campbell (jimmyca15) and
Matthew Metcalf (mrm9084)
as code owners
August 20, 2026 21:37
|
Azure Pipelines: 10 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
Member
Author
|
/azp run python - appconfiguration |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for loading enhanced feature flags (created via the dedicated feature flag resource endpoint) in the Azure App Configuration Provider, alongside several related improvements and breaking changes. Enhanced feature flags are now merged automatically with key-value based feature flags, and new selector types are introduced for flexible filtering. The minimum supported Python version and dependencies have also been updated.
Enhanced Feature Flag Support
Enhanced feature flags created via the dedicated feature flag endpoint (
FeatureFlagClient/FeatureFlag) are now automatically loaded and merged into thefeature_management.feature_flagslist whenfeature_flag_enabled=True. Enhanced feature flags take precedence over key-value based ones with the same name. No new options are required to opt in, and existing selectors filter both kinds. [1] [2] [3] [4] [5]Introduced the
FeatureFlagSelectortype for filtering enhanced feature flags by name, label, or tags. Thefeature_flag_selectorsargument now accepts either a list ofSettingSelectororFeatureFlagSelectorinstances (but not both), and this is reflected in the public API and documentation. [1] [2] [3] [4] [5] [6] [7]Documentation and Usage
README.mdwith usage examples and explanations for enhanced feature flags, including how to use selectors and how merging works. Added a section for package developers on running tests. [1] [2]Dependency and Compatibility Updates
azure-appconfigurationto>=1.10.0b1for enhanced feature flag support. [1] [2]Internal Implementation
Other
assets.jsonto reflect the new release.