8000 [FSSDK-9605] prepare for release 4.10.0 (#877) · optimizely/javascript-sdk@16cda94 · GitHub
[go: up one dir, main page]

Skip to content

Commit 16cda94

Browse files
authored
[FSSDK-9605] prepare for release 4.10.0 (#877)
1 parent c03f2d5 commit 16cda94

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

packages/optimizely-sdk/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
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.0] - October 11, 2023
12+
13+
### New Features
14+
- Add support for configurable closing event dispatcher, and dispatching events using sendBeacon in the browser on instance close ([#876](https://github.com/optimizely/javascript-sdk/pull/876), [#874](https://github.com/optimizely/javascript-sdk/pull/874), [#873](https://github.com/optimizely/javascript-sdk/pull/873))
15+
1116
## [4.9.4] - June 8, 2023
1217

1318
### Performance Improvements

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

Lines changed: 1 addition & 1 deletion
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.9.4');
151+
assert.equal(optlyInstance.clientVersion, '4.10.0');
152152
});
153153

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

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

Lines changed: 1 addition & 1 deletion
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.9.4');
79+
assert.equal(optlyInstance.clientVersion, '4.10.0');
8080
});
8181
});
8282
});

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

Lines changed: 1 addition & 1 deletion
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.9.4');
93+
assert.equal(optlyInstance.clientVersion, '4.10.0');
9494
});
9595

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

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

Lines changed: 1 addition & 1 deletion
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.9.4');
92+
assert.equal(optlyInstance.clientVersion, '4.10.0');
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

Lines changed: 2 additions & 2 deletions
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.9.4';
184-
export const NODE_CLIENT_VERSION = '4.9.4';
183+
export const BROWSER_CLIENT_VERSION = '4.10.0';
184+
export const NODE_CLIENT_VERSION = '4.10.0';
185185

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

packages/optimizely-sdk/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/optimizely-sdk/package.json

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