Skip to content

Commit c16ea02

Browse files
[3.2.1] Prep for release (#275)
* [3.2.1] Prep for release * [3.2.1] PR ref update
1 parent 023d301 commit c16ea02

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [3.2.1] - Aug 15, 2024
4+
5+
### Bug fixes
6+
- `clientReady` is true even though internal client promise returns `success == false` bug fix([#273](https://github.com/optimizely/react-sdk/pull/273))
7+
- `useDecision` hook set the update listener on overy render bug fix([#273](https://github.com/optimizely/react-sdk/pull/273))
8+
- `setForcedDecision` does not reflect the changes in optmizely instance and `useDecision` hook bug fix([#274](https://github.com/optimizely/react-sdk/pull/274))
9+
10+
### Changed
11+
- Performance improvements in both hooks and client instance([#273](https://github.com/optimizely/react-sdk/pull/273), [#274](https://github.com/optimizely/react-sdk/pull/274))
12+
313
## [3.2.0] - July 10, 2024
414

515
### New Features

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "React SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts",
55
"homepage": "https://github.com/optimizely/react-sdk",
66
"repository": "https://github.com/optimizely/react-sdk",

src/client.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ describe('ReactSDKClient', () => {
128128
expect(createInstanceSpy).toBeCalledWith({
129129
...config,
130130
clientEngine: 'react-sdk',
131-
clientVersion: '3.2.0',
131+
clientVersion: '3.2.1',
132132
});
133133
});
134134

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface OnReadyResult extends ResolveResult {
4747
}
4848

4949
const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
50-
const REACT_SDK_CLIENT_VERSION = '3.2.0';
50+
const REACT_SDK_CLIENT_VERSION = '3.2.1';
5151

5252
export const DefaultUser: UserInfo = {
5353
id: null,

0 commit comments

Comments
 (0)