Skip to content

Commit df4eb60

Browse files
[FSSDK-11938] release prep
1 parent a169d5d commit df4eb60

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

CHANGELOG.md

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

3+
## [3.3.0] - Oct 13, 2025
4+
5+
### New Features
6+
- Added `customHeaders` option to `datafileOptions` for passing custom HTTP headers in datafile requests.
7+
8+
### Bug Fixes
9+
- Fix the EventTags type to allow event properties.
10+
- Fix typo in event.experimentIds field in project config.
11+
312
## [3.2.4] - May 15, 2025
413
### Bug fixes
514
- `client.onReady()` always returns false when ODP is off and user id is null bug fix.([#302](https://github.com/optimizely/react-sdk/pull/285))

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/react-sdk",
3-
"version": "3.2.4",
3+
"version": "3.3.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",
@@ -41,7 +41,7 @@
4141
]
4242
},
4343
"dependencies": {
44-
"@optimizely/optimizely-sdk": "^5.3.4",
44+
"@optimizely/optimizely-sdk": "^5.4.0",
4545
"hoist-non-react-statics": "^3.3.2"
4646
},
4747
"peerDependencies": {

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.4',
181+
clientVersion: '3.3.0',
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.4';
50+
const REACT_SDK_CLIENT_VERSION = '3.3.0';
5151

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

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -614,10 +614,10 @@
614614
"@nodelib/fs.scandir" "2.1.5"
615615
fastq "^1.6.0"
616616

617-
"@optimizely/optimizely-sdk@^5.3.4":
618-
version "5.3.4"
619-
resolved "https://registry.yarnpkg.com/@optimizely/optimizely-sdk/-/optimizely-sdk-5.3.4.tgz#3d5cb2848fba1783439b1ff25c74013c78d17364"
620-
integrity sha512-N9BVFBoWY//cgrZu4dnUCXbbvFtx8bJURvsvQurCqdKn0pqAawDbWpm4mDTl8H3W5J4fXC5s+8xlDywiGHCY6Q==
617+
"@optimizely/optimizely-sdk@^5.4.0":
618+
version "5.4.0"
619+
resolved "https://registry.yarnpkg.com/@optimizely/optimizely-sdk/-/optimizely-sdk-5.4.0.tgz#6acfb5011faff881b519b9c5147ac733a52cdbfe"
620+
integrity sha512-hqGGgBxYkHIgiiH6RAMU0pbbj1NXYYne3vAUMtyai8godTu9w+OLZcsIGZX8FjB2UnESOE3TLL4+szLkQzZ8yg==
621621
dependencies:
622622
decompress-response "^4.2.1"
623623
json-schema "^0.4.0"

0 commit comments

Comments
 (0)