File tree 5 files changed +1249
-1237
lines changed
5 files changed +1249
-1237
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ matrix:
22
22
before_install : cd packages/optimizely-sdk
23
23
install : npm install
24
24
addons :
25
- srcclr : true
25
+ # Disabled temporarily while we work out integration issues
26
+ # srcclr: true
26
27
script : npm test
27
28
after_success : npm run coveralls
Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 2.2.0] - September 26, 2018
8
+
9
+ ### Fixed
10
+ - Track and activate should not remove null attributes ([ #168 ] ( https://github.com/optimizely/javascript-sdk/pull/168 ) )
11
+ - Track attributes with valid attribute types ([ #166 ] ( https://github.com/optimizely/javascript-sdk/pull/166 ) )
12
+ - Prevent SDK from initializing if the datafile version in invalid ([ #161 ] ( https://github.com/optimizely/javascript-sdk/pull/161 ) )
13
+ - Updating lerna to latest version ([ #160 ] ( https://github.com/optimizely/javascript-sdk/pull/160 ) )
14
+
15
+ ### Changed
16
+ - Change invalid experiment key to debug level ([ #165 ] ( https://github.com/optimizely/javascript-sdk/pull/165 ) )
17
+
7
18
## [ 2.1.3] - August 21, 2018
8
19
9
20
### Fixed
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ exports.CONTROL_ATTRIBUTES = {
140
140
141
141
exports . JAVASCRIPT_CLIENT_ENGINE = 'javascript-sdk' ;
142
142
exports . NODE_CLIENT_ENGINE = 'node-sdk' ;
143
- exports . NODE_CLIENT_VERSION = '2.1.3 ' ;
143
+ exports . NODE_CLIENT_VERSION = '2.2.0 ' ;
144
144
145
145
/*
146
146
* Notification types for use with NotificationCenter
You can’t perform that action at this time.
0 commit comments