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

## [4.1.0] - July 10, 2026

### New Features
- **Local Holdouts**: Added support for Local Holdouts, enabling holdout experiments
to be scoped to specific feature flag rules 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.

### Changed
- Don't send ODP identify event for single identifier

### Bug Fixes
- Use attribute id instead of key for CMAB prediction requests
- Normalize decision event campaign_id, variation_id, and entity_id

## [4.0.0] - May 18, 2026

v4 is a ground-up rewrite of the React SDK. For a detailed upgrade guide, see [MIGRATION.md](MIGRATION.md). For the official documentation, see the [React SDK Developer Docs](https://docs.developers.optimizely.com/feature-experimentation/docs/javascript-react-sdk).
Expand Down
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@optimizely/react-sdk",
"version": "4.0.0",
"version": "4.1.0",
"description": "React SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts",
"homepage": "https://github.com/optimizely/react-sdk",
"repository": "https://github.com/optimizely/react-sdk",
Expand Down Expand Up @@ -48,7 +48,7 @@
"src/**/*.{js,ts,tsx}": "eslint --fix"
},
"dependencies": {
"@optimizely/optimizely-sdk": "^6.4.0",
"@optimizely/optimizely-sdk": "^6.5.0",
"tslib": "^2.8.1",
"use-sync-external-store": "^1.6.0"
},
Expand Down
Loading