Skip to content

Commit 3389cd6

Browse files
mikechu-optimizelyMike Chu
and
Mike Chu
authored
[FSSDK-9984] chore: prepare for release v3.1.0 (#257)
* build: increment the semantic version * docs: update changelog.md * docs: PR review adjustment to CHANGELOG --------- Co-authored-by: Mike Chu <[email protected]>
1 parent fae169f commit 3389cd6

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [3.1.0] - April 9, 2024
4+
5+
### Bug Fixes
6+
- Error initializing client. The core client or user promise(s) rejected.
7+
([#255](https://github.com/optimizely/react-sdk/pull/255))
8+
- Unable to determine if feature "{your-feature-key}" is enabled because User ID is not set([#255](https://github.com/optimizely/react-sdk/pull/255))
9+
10+
### Changed
11+
- Bumped Optimizely JS SDK version in use ([#255](https://github.com/optimizely/react-sdk/pull/255))
12+
- Resolve dependabot dependency vulnerabilities ([#245](https://github.com/optimizely/react-sdk/pull/245), [#247](https://github.com/optimizely/react-sdk/pull/247), [#248](https://github.com/optimizely/react-sdk/pull/248), [#251](https://github.com/optimizely/react-sdk/pull/251), [#253](https://github.com/optimizely/react-sdk/pull/253))
13+
- Add node versions during testing ([#249](https://github.com/optimizely/react-sdk/pull/249))
14+
315
## [3.0.1] - February 27, 2024
416

517
### Changed

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.0.1",
3+
"version": "3.1.0",
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
@@ -127,7 +127,7 @@ describe('ReactSDKClient', () => {
127127
expect(createInstanceSpy).toBeCalledWith({
128128
...config,
129129
clientEngine: 'react-sdk',
130-
clientVersion: '3.0.1',
130+
clientVersion: '3.1.0',
131131
});
132132
});
133133

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.0.1';
50+
const REACT_SDK_CLIENT_VERSION = '3.1.0';
5151

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

0 commit comments

Comments
 (0)