Skip to content

Commit

Permalink
[FSSDK-10844] Prep for release (#297)
Browse files Browse the repository at this point in the history
* [FSSDK-10844] Prep for release

* [FSSDK-10844] changelog adjustment
  • Loading branch information
junaed-optimizely authored Nov 22, 2024
1 parent 27425b5 commit ddadd3e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [3.2.3] - Nov 22, 2024

### Bug fixes
- `isClientReady` logic adjustment.([#285](https://github.com/optimizely/react-sdk/pull/285))
- `track` method overrideAttribute bug fix.([#287](https://github.com/optimizely/react-sdk/pull/287))
- "`OptimizelyProvider` resets previously set user" bug fix.([#292](https://github.com/optimizely/react-sdk/pull/292))


## [3.2.2] - Aug 21, 2024

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@optimizely/react-sdk",
"version": "3.2.2",
"version": "3.2.3",
"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
2 changes: 1 addition & 1 deletion src/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ describe('ReactSDKClient', () => {
expect(createInstanceSpy).toHaveBeenCalledWith({
...config,
clientEngine: 'react-sdk',
clientVersion: '3.2.2',
clientVersion: '3.2.3',
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface OnReadyResult extends ResolveResult {
}

const REACT_SDK_CLIENT_ENGINE = 'react-sdk';
const REACT_SDK_CLIENT_VERSION = '3.2.2';
const REACT_SDK_CLIENT_VERSION = '3.2.3';

export const DefaultUser: UserInfo = {
id: null,
Expand Down

1 comment on commit ddadd3e

@github-actions
Copy link

Choose a reason for hiding this comment

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

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.