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
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Optimizely Flutter SDK Changelog

## 3.6.0
July 9th, 2026

### Dependency Updates

* Bumped iOS OptimizelySwiftSDK from 5.3.0 to 5.4.2 and Android android-sdk from 5.2.0 to 5.3.0 ([#113](https://github.com/optimizely/optimizely-flutter-sdk/pull/113))

The native SDK bump includes the following changes:

### New Features

* **Local Holdouts**: Added support for Local Holdouts, enabling holdout experiments to be scoped to specific feature flags rather than applied globally. Local Holdouts let you measure the true incremental impact of individual features by holding out a subset of users from specific rollouts while still serving them other experiences. See [Holdouts docs](https://support.optimizely.com/hc/en-us/articles/38941939408269-Global-holdouts) for more information.

### Enhancements

* Block ODP identify event for single identifier
* Use attribute id instead of key for CMAB prediction requests

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be in bug fixes?


### Bug Fixes

* Defer NWPathMonitor creation to avoid crash during multi-SDK startup
* Prevent EXC_BAD_ACCESS from premature URLSession deallocation
* Replace non-numeric holdout placeholder IDs in event-construction tests
* Normalize campaign_id, variation_id, and entity_id on decision events

## 3.5.0
May 13, 2026

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Other Flutter platforms are not currently supported by this SDK.
To add the flutter-sdk to your project dependencies, include the following in your app's pubspec.yaml:

```
optimizely_flutter_sdk: ^3.5.0
optimizely_flutter_sdk: ^3.6.0
```

Then run
Expand Down
2 changes: 1 addition & 1 deletion lib/package_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class PackageInfo {
static const String name = 'optimizely_flutter_sdk';
static const String version = '3.5.0';
static const String version = '3.6.0';
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: optimizely_flutter_sdk
description: This repository houses the Flutter SDK for use with Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts.
version: 3.5.0
version: 3.6.0
homepage: https://github.com/optimizely/optimizely-flutter-sdk

environment:
Expand Down
Loading