Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ddadd3e

Browse files
authoredNov 22, 2024··
[FSSDK-10844] Prep for release (#297)
* [FSSDK-10844] Prep for release * [FSSDK-10844] changelog adjustment
1 parent 27425b5 commit ddadd3e

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed
 

‎CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [3.2.3] - Nov 22, 2024
4+
5+
### Bug fixes
6+
- `isClientReady` logic adjustment.([#285](https://github.com/optimizely/react-sdk/pull/285))
7+
- `track` method overrideAttribute bug fix.([#287](https://github.com/optimizely/react-sdk/pull/287))
8+
- "`OptimizelyProvider` resets previously set user" bug fix.([#292](https://github.com/optimizely/react-sdk/pull/292))
9+
10+
311
## [3.2.2] - Aug 21, 2024
412

513
### Bug fixes

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "3.2.2",
3+
"version": "3.2.3",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ describe('ReactSDKClient', () => {
178178
expect(createInstanceSpy).toHaveBeenCalledWith({
179179
...config,
180180
clientEngine: 'react-sdk',
181-
clientVersion: '3.2.2',
181+
clientVersion: '3.2.3',
182182
});
183183
});
184184

‎src/client.ts

Lines changed: 1 addition & 1 deletion
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.2';
50+
const REACT_SDK_CLIENT_VERSION = '3.2.3';
5151

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

1 commit comments

Comments
 (1)

github-actions[bot] commented on Nov 22, 2024

@github-actions[bot]

Jest Coverage Report

St.
Category Percentage Covered / Total
🟢 Statements 98.95% 849/858
🟢 Branches 91.44% 342/374
🟢 Functions 97.52% 157/161
🟢 Lines 99.1% 767/774

Test suite run success

265 tests passing in 10 suites.

Report generated by 🧪jest coverage report action from ddadd3e

Please sign in to comment.