Skip to content

Commit 34c8ae4

Browse files
committed
[FSSDK-8887] chore: Prepare release 4.9.3 (#804)
1 parent 4182615 commit 34c8ae4

File tree

9 files changed

+811
-9
lines changed

9 files changed

+811
-9
lines changed

packages/optimizely-sdk/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99

1010
- Nothing yet!
1111

12+
## [4.9.3] - March 17, 2023
13+
14+
### Changed
15+
- Updated README.md and package.json files to reflect that this SDK supports both Optimizely Feature Experimentation and Optimizely Full Stack ([#803](https://github.com/optimizely/javascript-sdk/pull/803)).
16+
1217
## [4.9.2] - June 27, 2022
1318

1419
### 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.2');
151+
assert.equal(optlyInstance.clientVersion, '4.9.3');
152152
});
153153

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2021-2022 Optimizely
2+
* Copyright 2021-2023 Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -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.2');
79+
assert.equal(optlyInstance.clientVersion, '4.9.3');
8080
});
8181
});
8282
});

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2016-2020, 2022 Optimizely
2+
* Copyright 2016-2020, 2022-2023 Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -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.2');
93+
assert.equal(optlyInstance.clientVersion, '4.9.3');
9494
});
9595

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +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 NODE_CLIENT_VERSION = '4.9.2';
183+
export const BROWSER_CLIENT_VERSION = '4.9.3';
184+
export const NODE_CLIENT_VERSION = '4.9.3';
184185

185186
export const DECISION_NOTIFICATION_TYPES = {
186187
AB_TEST: 'ab-test',

packages/optimizely-sdk/package-lock.json

Lines changed: 2 additions & 2 deletions
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.2",
3+
"version": "4.9.3",
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)