Skip to content

Commit f657a56

Browse files
committed
2.2.0 release - dependencies upgrade
1 parent 33a941c commit f657a56

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
*__note:__ the # at the end of lines are the pull request numbers on GitHub*
22

3-
# 2.1.6
3+
# 2.2.0
44

5-
* https://github.com/kuzzleio/sdk-javascript/releases/tag/2.1.4
5+
* https://github.com/kuzzleio/sdk-javascript/releases/tag/2.2.0
66

77
# 2.1.5
88

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kuzzle-sdk",
3-
"version": "2.1.6",
3+
"version": "2.2.0",
44
"description": "Official Javascript SDK for Kuzzle",
55
"author": "The Kuzzle Team <[email protected]>",
66
"repository": {
@@ -25,7 +25,7 @@
2525
"main": "index.js",
2626
"license": "Apache-2.0",
2727
"dependencies": {
28-
"bluebird": "3.4.1",
28+
"bluebird": "3.4.6",
2929
"bufferutil": "^1.2.1",
3030
"node-uuid": "1.4.7",
3131
"utf-8-validate": "^1.2.1",
@@ -34,7 +34,7 @@
3434
"devDependencies": {
3535
"ora": "^0.3.0",
3636
"webpack": "^1.13.1",
37-
"eslint": "^2.10.2",
37+
"eslint": "^3.7.1",
3838
"eslint-friendly-formatter": "^2.0.6",
3939
"eslint-loader": "^1.5.0",
4040
"browserify": "13.1.0",
@@ -44,12 +44,12 @@
4444
"grunt-contrib-uglify": "2.0.0",
4545
"grunt-webpack": "^1.0.14",
4646
"gruntify-eslint": "^3.0.0",
47-
"istanbul": "0.4.4",
47+
"istanbul": "0.4.5",
4848
"istanbul-middleware": "0.2.2",
49-
"mocha": "3.0.1",
49+
"mocha": "3.1.0",
5050
"proxyquire": "^1.7.10",
5151
"rewire": "^2.5.2",
52-
"should": "10.0.0",
52+
"should": "11.1.0",
5353
"sinon": "^1.17.5",
5454
"webpack": "^1.13.1"
5555
}

test/security/kuzzleSecurity/profilesMethods.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ describe('KuzzleSecurity profiles methods', function () {
9393

9494
res.content.policies.forEach(function (policy) {
9595
should(policy.roleId).not.be.empty().and.be.a.String();
96-
should(policy.controllers).be.empty();
96+
should(policy.controllers).be.undefined();
9797
should(policy.restrictedTo).not.be.empty().and.be.an.Array();
9898
should(policy.restrictedTo[0].index).be.equal('foo');
9999
should(policy.restrictedTo[0].collections).not.be.empty().and.be.an.Array();
@@ -427,4 +427,4 @@ describe('KuzzleSecurity profiles methods', function () {
427427
done();
428428
});
429429
});
430-
});
430+
});

0 commit comments

Comments
 (0)