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
10 changes: 10 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.3.0] - December 12, 2025

### New Features
- **Holdout Support**: Added holdouts support with datafile parsing and full decision logic for excluding users from experiments ([#422](https://github.com/optimizely/go-sdk/pull/422))
- **Holdout Impression Events**: Added impression event handling for holdouts with proper `rule_type: "holdout"` metadata ([#428](https://github.com/optimizely/go-sdk/pull/428))
- **Prediction Endpoint Configuration**: Exposed prediction endpoint configuration for advanced use cases ([#427](https://github.com/optimizely/go-sdk/pull/427))

### Bug Fixes
- **Holdout Decision Metadata**: Fixed `GetDetailedFeatureDecisionUnsafe` to include holdout experiment and variation info in decision results ([#429](https://github.com/optimizely/go-sdk/pull/429))

## [2.2.1] - October 24, 2025

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion pkg/event/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package event

// Version is the current version of the client
var Version = "2.2.1"
var Version = "2.3.0"

// ClientName is the name of the client
var ClientName = "go-sdk"
Loading