8000 [FSSDK-10198]prepare for release 5.3.2 (#932) · optimizely/javascript-sdk@851b066 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 851b066

Browse files
[FSSDK-10198]prepare for release 5.3.2 (#932)
* prepare for version 5.3.2 * Revert "prepare for version 5.3.2" This reverts commit 345d597. * prepare for release 5.3.2
1 parent 01b50a2 commit 851b066

File tree

8 files changed

+15
-8
lines changed

8 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
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

8+
## [5.3.2] - May 20, 2024
9+
10+
### Changed
11+
12+
- Added public facing API for ODP integration information ([#930](https://github.com/optimizely/javascript-sdk/pull/930))
13+
14+
815
## [5.3.1] - May 20, 2024
916

1017
### Changed

lib/index.browser.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ describe('javascript-sdk (Browser)', function() {
193193
optlyInstance.onReady().catch(function() {});
194194

195195
assert.instanceOf(optlyInstance, Optimizely);
196-
assert.equal(optlyInstance.clientVersion, '5.3.1');
196+
assert.equal(optlyInstance.clientVersion, '5.3.2');
197197
});
198198

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

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, '5.3.1');
79+
assert.equal(optlyInstance.clientVersion, '5.3.2');
8080
});
8181
});
8282
});

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, '5.3.1');
93+
assert.equal(optlyInstance.clientVersion, '5.3.2');
9494
});
9595

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

lib/utils/enums/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export const NODE_CLIENT_ENGINE = 'node-sdk';
221221
export const REACT_CLIENT_ENGINE = 'react-sdk';
222222
export const REACT_NATIVE_CLIENT_ENGINE = 'react-native-sdk';
223223
export const REACT_NATIVE_JS_CLIENT_ENGINE = 'react-native-js-sdk';
224-
export const CLIENT_VERSION = '5.3.1';
224+
export const CLIENT_VERSION = '5.3.2';
225225

226226
export const DECISION_NOTIFICATION_TYPES = {
227227
AB_TEST: 'ab-test',

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.

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": "5.3.1",
3+
"version": "5.3.2",
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",

tests/index.react_native.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('javascript-sdk/react-native', () => {
9090

9191
expect(optlyInstance).toBeInstanceOf(Optimizely);
9292
// @ts-ignore
93-
expect(optlyInstance.clientVersion).toEqual('5.3.1');
93+
expect(optlyInstance.clientVersion).toEqual('5.3.2');
9494
});
9595

9696
it('should set the React Native JS client engine and javascript SDK version', () => {

0 commit comments

Comments
 (0)
0