Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 2.0.0 Release Notes #1003

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions releaseNotes/AzureAppConfigurationProviderPython.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

[Source code][source_code] | [Package (Pypi)][package] | [Samples][samples]

## 2.0.0 - January 6, 2025

* Added support for load balancing mode, which enables your workloads to distribute requests to App Configuration across all available replicas. This enhancement improves the scalability of applications that typically experience high request volumes to App Configuration, ensuring they remain within quota limits. Load balancing mode is disabled by default and can be activated by setting `load_balancing_enabled` to `true`.
* Added support for including FeatureFlagReference, FeatureFlagId, Etag to feature flag telemetry metadata when telemetry is enabled.

## 2.0.0b3 - November 14, 2024

### Bug Fixes
Expand Down
12 changes: 12 additions & 0 deletions releaseNotes/PythonFeatureManagement.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

[Source code][source_code] | [Samples][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](https://learn.microsoft.com/azure/azure-app-configuration/feature-management-python-reference#variants).

* Added support for telemetry in feature flags. Telemetry allows you to track how your feature 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.
mrm9084 marked this conversation as resolved.
Show resolved Hide resolved

An example is available to demonstrate how to use the new Telemetry in Python See [the example](https://github.com/microsoft/FeatureManagement-Python/blob/main/samples/feature_variant_sample_with_telemetry.py) in the examples folder.

## 2.0.0b3 - November 14, 2024

### Bug Fixes
Expand Down
Loading