Skip to content

Latest commit

 

History

History
60 lines (33 loc) · 3.9 KB

PythonFeatureManagement.md

File metadata and controls

60 lines (33 loc) · 3.9 KB

featuremanagement

Source code | Samples

2.0.0 - January 6, 2025

Enhancements

  • Added support for variant feature flags. A variant feature flag is an enhanced feature flag that supports multiple states or variations. While it can still be toggled on or off, it also allows for different configurations, ranging from simple primitives to complex JSON objects. Variant feature flags are particularly useful for feature rollouts, configuration rollouts, and feature experimentation (also known as A/B testing).

    For more information, see the feature reference document.

  • Added support for telemetry in feature flags. Telemetry allows you to track how your features are being used. It provides insights into the effectiveness of your feature flags and helps you make data-driven decisions. Telemetry is particularly useful for feature experimentation (also known as A/B testing) and feature rollouts.

    An example is available to demonstrate how to use the new Telemetry in Python See the example in the examples folder.

2.0.0b3 - November 14, 2024

Bug Fixes

  • Fixed a bug where users exactly at the 100th percentile in allocation were incorrectly assigned a reason of None instead of Allocation in feature evaluation telemetry.

2.0.0b2 - October 14, 2024

Enhancements

  • Added support for including VariantAssignmentPercentage and DefaultWhenEnabled properties to telemetry when telemetry is enabled and published to Azure Monitor.

2.0.0b1 - September 10, 2024

Enhancements

  • Added support for variant feature flags. A variant feature flag is an enhanced feature flag that supports multiple states or variations. While it can still be toggled on or off, it also allows for different configurations, ranging from simple primitives to complex JSON objects. Variant feature flags are particularly useful for feature rollouts, configuration rollouts, and feature experimentation (also known as A/B testing).

For more information, see the feature reference document.

  • Added support for telemetry in feature flags. Telemetry is a powerful feature that allows you to track how your feature flags are being used. It provides insights into the effectiveness of your feature flags and helps you make data-driven decisions. Telemetry is particularly useful for feature experimentation (also known as A/B testing) and feature rollouts.

An example is available to demonstrate how to use the new Telemetry in Python See the example in the examples folder.

1.0.0 - July 01, 2024

GA Release of the feature management support for Python. Note that, version 1.2.0 or later of azure-appconfiguration-provider is required for loading feature flags from Azure App Configuration.

  • Loading of feature flags from a dictionary.
  • Support for basic feature flags with boolean states.
  • Support for feature filters including built-in filters TimeWindowFilter and TargetingFilter.

1.0.0b1 - May 24, 2024

Enhancements

Initial release of the feature management support for Python. Note that, version 1.2.0 or later of azure-appconfiguration-provider is required for loading feature flags from Azure App Configuration.

  • Loading of feature flags from a dictionary.
  • Support for basic feature flags with boolean states.
  • Support for feature filters including built-in filters TimeWindowFilter and TargetingFilter.