Skip to content

Commit ec96fb8

Browse files
authored
chore (optimizely-sdk): prepare for 3.2.1 release (#300) (#301)
1 parent db57438 commit ec96fb8

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

packages/optimizely-sdk/CHANGELOG.MD

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ 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.1] - July 1st, 2019
11+
12+
### Changed
13+
- Updated lodash dependency to ^4.17.11 to address security vulnerabilities ([#296](https://github.com/optimizely/javascript-sdk/issues/296))
14+
1015
## [3.2.0] - May 30th, 2019
1116

1217
### New Features

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

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

121121
assert.instanceOf(optlyInstance, Optimizely);
122-
assert.equal(optlyInstance.clientVersion, '3.2.0');
122+
assert.equal(optlyInstance.clientVersion, '3.2.1');
123123
});
124124

125125
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.0');
93+
assert.equal(optlyInstance.clientVersion, '3.2.1');
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.0';
158+
exports.NODE_CLIENT_VERSION = '3.2.1';
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.0",
3+
"version": "3.2.1",
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)