diff --git a/releaseNotes/GoFeatureManagement.md b/releaseNotes/GoFeatureManagement.md index bb425721..4729a7b9 100644 --- a/releaseNotes/GoFeatureManagement.md +++ b/releaseNotes/GoFeatureManagement.md @@ -2,6 +2,18 @@ [Source code][source_code] | [Package][package] | [Samples][samples] +## v1.0.0 - August 01, 2025 + +This is the first stable release of Feature Management for Go, including support for the following capabilities. Note that, version `1.1.0-beta.1` or later of [`azureappconfiguration`](https://pkg.go.dev/github.com/Azure/AppConfiguration-GoProvider/azureappconfiguration) is required for loading feature flags from Azure App Configuration. + + +### Supported features +- Built-in functionality for consuming feature flags defined in Azure App Configuration, as well as an extensibility point via the `FeatureFlagProvider` interface to consume feature flags defined by other providers. +- Basic feature flags, as well as feature filters, including: + - [`Microsoft.TimeWindow`](https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureFilters/Microsoft.TimeWindow.v1.0.0.schema.json) + - [`Microsoft.Targeting`](https://github.com/microsoft/FeatureManagement/blob/main/Schema/FeatureFilters/Microsoft.Targeting.v1.0.0.schema.json) + - Custom filters + ## 1.0.0-beta.2 - July 18, 2025 ### Bug Fixes diff --git a/releaseNotes/GoProvider.md b/releaseNotes/GoProvider.md index 367ae8fa..b42f5578 100644 --- a/releaseNotes/GoProvider.md +++ b/releaseNotes/GoProvider.md @@ -2,6 +2,10 @@ [Source code][source_code] | [Package][package] | [Samples][samples] +## v1.1.0 - August 01, 2025 + +This is the first stable release that includes support for loading feature flags from Azure App Configuration. + ## v1.1.0-beta.1 - July 01, 2025 ### Enhancement