Skip to content

Commit 15e2b17

Browse files
authored
Bump to version 1.3.0 (#35)
Bump optimizely-server-sdk to version 1.2.0, which includes: - Introduce support for event tags. - Add optional eventTags argument to track method signature. - Removed optional eventValue argument from track method signature. - Removed optional sessionId argument from activate and track method signatures. - Allow log level config on createInstance method
1 parent 69c1de1 commit 15e2b17

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
-------------------------------------------------------------------------------
2+
1.3.0
3+
-------------------------------------------------------------------------------
4+
* Bump optimizely-server-sdk to version 1.2.0, which includes:
5+
- Introduce support for event tags.
6+
- Add optional eventTags argument to track method signature.
7+
- Removed optional eventValue argument from track method signature.
8+
- Removed optional sessionId argument from activate and track method signatures.
9+
- Allow log level config on createInstance method
10+
-------------------------------------------------------------------------------
11+
112
-------------------------------------------------------------------------------
213
1.2.2
314
-------------------------------------------------------------------------------

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var logger = require('optimizely-server-sdk/lib/plugins/logger');
77

88
var Optimizely = require('optimizely-server-sdk/lib/optimizely');
99

10-
var JAVASCRIPT_CLIENT_VERSION = '1.2.2';
10+
var JAVASCRIPT_CLIENT_VERSION = '1.3.0';
1111
var MODULE_NAME = 'INDEX';
1212

1313
/**

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "optimizely-client-sdk",
3-
"version": "1.2.2",
3+
"version": "1.3.0",
44
"description": "JavaScript SDK for Optimizely X Full Stack",
55
"main": "index.js",
66
"scripts": {
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"es6-promise": "^3.3.1",
2424
"lodash": "^4.13.1",
25-
"optimizely-server-sdk": "^1.1.0"
25+
"optimizely-server-sdk": "^1.2.0"
2626
},
2727
"devDependencies": {
2828
"chai": "^3.5.0",

0 commit comments

Comments
 (0)