diff --git a/releaseNotes/GoFeatureManagement.md b/releaseNotes/GoFeatureManagement.md index 4729a7b9..dff81703 100644 --- a/releaseNotes/GoFeatureManagement.md +++ b/releaseNotes/GoFeatureManagement.md @@ -2,6 +2,12 @@ [Source code][source_code] | [Package][package] | [Samples][samples] +## v1.1.0 - August 20, 2025 + +### Enhancement + +* 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). [#16](https://github.com/microsoft/FeatureManagement-Go/pull/16) + ## 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. diff --git a/releaseNotes/GoProvider.md b/releaseNotes/GoProvider.md index b42f5578..442840f1 100644 --- a/releaseNotes/GoProvider.md +++ b/releaseNotes/GoProvider.md @@ -2,6 +2,15 @@ [Source code][source_code] | [Package][package] | [Samples][samples] +## v1.2.0 - August 20, 2025 + +### Enhancement + +* Added support for replica auto-discovery. For App Configuration stores with geo-replication enabled, the Go provider will now automatically discover replicas and attempt to connect to them when it fails to connect to user-provided endpoint. This capability allows workloads to leverage geo-replication for enhanced resiliency without redeployment. Replica discovery is enabled by default and can be disabled by setting `azureappconfiguration.Options.ReplicaDiscoveryEnabled` to false. [#39](https://github.com/Azure/AppConfiguration-GoProvider/pull/39) +* 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 `azureappconfiguration.Options.LoadBalancingEnabled` to true. [#42](https://github.com/Azure/AppConfiguration-GoProvider/pull/42) +* Added support for parsing JSON values with comments. [#43](https://github.com/Azure/AppConfiguration-GoProvider/pull/43) +* Upgraded dependent packages. [#44](https://github.com/Azure/AppConfiguration-GoProvider/pull/44) + ## v1.1.0 - August 01, 2025 This is the first stable release that includes support for loading feature flags from Azure App Configuration.