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
39 changes: 1 addition & 38 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,3 @@
# Release History

## 2.0.0 (11/19/2024)

* GA release of Feature Management supporting Feature Variants.
* GA release of Telemetry support.
* `publish_telemetry` sends: feature name, enabled, telemetry version, reason, variant name, targeting id, and additionally provided metadata.
* `publish_telemetry` can be added as a callback when creating `FeatureManager` with `on_feature_evaluated=publish_telemetry`
& `track_event` a custom event logger that adds the targeting id to the event.

## 2.0.0b3 (11/14/2024)

* Fixes a bug where no allocation reason is set if a user is allocated to exactly 100.
* Fixes a bug where VariantAssignmentPercentage wasn't correct for default when enabled.

## 2.0.0b2 (10/11/2024)

* Adds VariantAssignmentPercentage, DefaultWhenEnabled, and AllocationId to telemetry.
* Allocation seed value is now None by default, and only defaults to `allocation\n<feature.id>` when assigning variants.

## 2.0.0b1 (09/10/2024)

* Adds support for Feature Variants.
* Adds support for Telemetry.

## 1.0.0 (06/26/2024)

Updated version to 1.0.0.

## 1.0.0b1 (05/22/2024)

New Feature Management library.

Provides the ability to manage feature flags in a project. Enables:

* Loading of feature flags from a file, see: https://github.com/Azure/AppConfiguration/blob/main/docs/FeatureManagement/FeatureManagement.v2.0.0.schema.json
* Loading of feature flags from Azure App Configuration.
* Checking if a feature is enabled.
* Default feature filters: TimeWindowFilter, TargetingFilter.
* Custom feature filters.
See [Release Notes](https://github.com/Azure/AppConfiguration/blob/main/releaseNotes/PythonFeatureManagement.md) for the full release history.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "FeatureManagement"
version = "2.0.0b3"
version = "2.0.0"
authors = [
{ name="Microsoft Corporation", email="appconfig@microsoft.com" },
]
Expand Down
Loading