Skip to content

Commit 61d5a64

Browse files
author
Michael Ng
authored
chore(optimizely-sdk): Prepare for 3.2.2 release. (#350)
1 parent def52f5 commit 61d5a64

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

packages/optimizely-sdk/CHANGELOG.MD

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
## [Unreleased]
88
Changes that have landed but are not yet released.
99

10+
## [3.2.2] - August 20th, 2019
11+
12+
### Bug fixes
13+
- Dont use pendingEventsDispatcher with user defined eventDispatcher ([#289](https://github.com/optimizely/javascript-sdk/issues/289))
14+
Note: This was supposed to be released in 3.2.1 but did not make it into the release.
15+
- Updated lodash dependency to ^4.17.11 to address security vulnerabilities ([#296](https://github.com/optimizely/javascript-sdk/issues/296))
16+
1017
## [3.2.1] - July 1st, 2019
1118

1219
### Changed

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

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

148148
assert.instanceOf(optlyInstance, Optimizely);
149-
assert.equal(optlyInstance.clientVersion, '3.2.1');
149+
assert.equal(optlyInstance.clientVersion, '3.2.2');
150150
});
151151

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ exports.CONTROL_ATTRIBUTES = {
155155
exports.JAVASCRIPT_CLIENT_ENGINE = 'javascript-sdk';
156156
exports.NODE_CLIENT_ENGINE = 'node-sdk';
157157
exports.REACT_CLIENT_ENGINE = 'react-sdk';
158-
exports.NODE_CLIENT_VERSION = '3.2.1';
158+
exports.NODE_CLIENT_VERSION = '3.2.2';
159159

160160
exports.VALID_CLIENT_ENGINES = [
161161
exports.NODE_CLIENT_ENGINE,

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": "3.2.1",
3+
"version": "3.2.2",
44
"description": "JavaScript SDK for Optimizely X Full Stack",
55
"main": "lib/index.node.js",
66
"browser": "lib/index.browser.js",

0 commit comments

Comments
 (0)