Skip to content

Commit 48f5a8f

Browse files
authored
[FSSDK-10464] prepare for release 4.10.1 (#963)
1 parent bfcdc49 commit 48f5a8f

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

packages/optimizely-sdk/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
## [Unreleased]
99
- Nothing yet!
1010

11+
## [4.10.1] - November 18, 2024
12+
13+
### Changed
14+
- update uuid module improt and usage ([#961](https://github.com/optimizely/javascript-sdk/pull/961))
15+
1116
## [4.10.0] - October 11, 2023
1217

1318
### New Features

packages/optimizely-sdk/lib/index.browser.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ describe('javascript-sdk', function () {
148148
optlyInstance.onReady().catch(function () { });
149149

150150
assert.instanceOf(optlyInstance, Optimizely);
151-
assert.equal(optlyInstance.clientVersion, '4.10.0');
151+
assert.equal(optlyInstance.clientVersion, '4.10.1');
152152
});
153153

154154
it('should set the JavaScript client engine and version', function () {

packages/optimizely-sdk/lib/index.lite.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ describe('optimizelyFactory', function () {
7676
optlyInstance.onReady().catch(function () { });
7777

7878
assert.instanceOf(optlyInstance, Optimizely);
79-
assert.equal(optlyInstance.clientVersion, '4.10.0');
79+
assert.equal(optlyInstance.clientVersion, '4.10.1');
8080
});
8181
});
8282
});

packages/optimizely-sdk/lib/index.node.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('optimizelyFactory', function () {
9090
optlyInstance.onReady().catch(function () { });
9191

9292
assert.instanceOf(optlyInstance, Optimizely);
93-
assert.equal(optlyInstance.clientVersion, '4.10.0');
93+
assert.equal(optlyInstance.clientVersion, '4.10.1');
9494
});
9595

9696
describe('event processor configuration', function () {

packages/optimizely-sdk/lib/index.react_native.tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('javascript-sdk/react-native', function () {
8989
optlyInstance.onReady().catch(function () {});
9090

9191
assert.instanceOf(optlyInstance, Optimizely);
92-
assert.equal(optlyInstance.clientVersion, '4.10.0');
92+
assert.equal(optlyInstance.clientVersion, '4.10.1');
9393
});
9494

9595
it('should set the React Native JS client engine and javascript SDK version', function () {

packages/optimizely-sdk/lib/utils/enums/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ export const NODE_CLIENT_ENGINE = 'node-sdk';
180180
export const REACT_CLIENT_ENGINE = 'react-sdk';
181181
export const REACT_NATIVE_CLIENT_ENGINE = 'react-native-sdk';
182182
export const REACT_NATIVE_JS_CLIENT_ENGINE = 'react-native-js-sdk';
183-
export const BROWSER_CLIENT_VERSION = '4.10.0';
184-
export const NODE_CLIENT_VERSION = '4.10.0';
183+
export const BROWSER_CLIENT_VERSION = '4.10.1';
184+
export const NODE_CLIENT_VERSION = '4.10.1';
185185

186186
export const DECISION_NOTIFICATION_TYPES = {
187187
AB_TEST: 'ab-test',

packages/optimizely-sdk/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/optimizely-sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@optimizely/optimizely-sdk",
3-
"version": "4.10.0",
3+
"version": "4.10.1",
44
"description": "JavaScript SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts",
55
"module": "dist/optimizely.browser.es.js",
66
"main": "dist/optimizely.node.min.js",

0 commit comments

Comments
 (0)