Skip to content

Commit 8f9bcb3

Browse files
authored
chore(release): bump to 2.1.3. (#156)
1 parent 5b379df commit 8f9bcb3

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

packages/optimizely-sdk/CHANGELOG.MD

+18-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [2.1.3] - August 21, 2018
8+
9+
### Fixed
10+
- Send all decisions for the same event in one snapshot. ([#155](https://github.com/optimizely/javascript-sdk/pull/155))
11+
- Give Node.js consumers the unbundled package ([#133](https://github.com/optimizely/javascript-sdk/pull/133))
812

913
### Deprecated
10-
* The UMD build of the SDK now assigns the SDK namespace object to `window.optimizelySdk` rather than to `window.optimizelyClient`. The old name still works, but on its first access a deprecation warning is logged to the console. The alias will be removed in the 3.0.0 release.
14+
- The UMD build of the SDK now assigns the SDK namespace object to `window.optimizelySdk` rather than to `window.optimizelyClient`. The old name still works, but on its first access a deprecation warning is logged to the console. The alias will be removed in the 3.0.0 release. ([#152](https://github.com/optimizely/javascript-sdk/pull/152))
15+
16+
## [2.1.2] - June 25, 2018
17+
18+
### Fixed
19+
- Failure to log success message when event dispatched ([#123](https://github.com/optimizely/javascript-sdk/pull/123))
20+
- Fix: Don't call success message when event fails to send ([#123](https://github.com/optimizely/javascript-sdk/pull/123))
21+
22+
## [2.0.5] - June 25, 2018
23+
24+
### Fixed
25+
- Failure to log success message when event dispatched ([#123](https://github.com/optimizely/javascript-sdk/pull/123))
26+
- Fix: Don't call success message when event fails to send ([#123](https://github.com/optimizely/javascript-sdk/pull/123))
1127

1228
## 2.1.1
1329
June 19, 2018

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ exports.CONTROL_ATTRIBUTES = {
137137

138138
exports.JAVASCRIPT_CLIENT_ENGINE = 'javascript-sdk';
139139
exports.NODE_CLIENT_ENGINE = 'node-sdk';
140-
exports.NODE_CLIENT_VERSION = '2.1.1';
140+
exports.NODE_CLIENT_VERSION = '2.1.3';
141141

142142
/*
143143
* Notification types for use with NotificationCenter

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": "2.1.1",
3+
"version": "2.1.3",
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)