Skip to content

Commit 2c97095

Browse files
authored
prepare for release 4.9.4 (#831)
1 parent 7d47b4a commit 2c97095

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

packages/optimizely-sdk/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9-
109
- Nothing yet!
1110

11+
## [4.9.4] - June 8, 2023
12+
13+
### Performance Improvements
14+
- Improve OptimizelyConfig class instantiation performance from O(n^2) to O(n) where n = number of feature flags ([#829](https://github.com/optimizely/javascript-sdk/pull/829))
15+
1216
## [4.9.3] - March 17, 2023
1317

1418
### Changed

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.3');
151+
assert.equal(optlyInstance.clientVersion, '4.9.4');
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.3');
79+
assert.equal(optlyInstance.clientVersion, '4.9.4');
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.3');
93+
assert.equal(optlyInstance.clientVersion, '4.9.4');
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.3');
92+
assert.equal(optlyInstance.clientVersion, '4.9.4');
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.3';
184-
export const NODE_CLIENT_VERSION = '4.9.3';
183+
export const BROWSER_CLIENT_VERSION = '4.9.4';
184+
export const NODE_CLIENT_VERSION = '4.9.4';
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.3",
3+
"version": "4.9.4",
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)