diff --git a/CHANGELOG.md b/CHANGELOG.md index 66137004..1c53e0fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 1.6.2 (2018-08-24) + +### Features + +- Allow user to access uploadAsset function from db (#429) + +### Bug Fixes + +- Throw asset s3 error +- Add asset too large error code +- Add verification required error code + +### Other Notes + +- Update npm, fix audit and update build system for node 10 + ## 1.6.0 (2018-06-26) ### Features diff --git a/gulp/context.js b/gulp/context.js index 5b76bef7..9f05581c 100644 --- a/gulp/context.js +++ b/gulp/context.js @@ -1,4 +1,4 @@ -var version = "1.6.0"; +var version = "1.6.2"; module.exports = { "dev": { diff --git a/lerna.json b/lerna.json index 85ca5dcd..42f1e473 100644 --- a/lerna.json +++ b/lerna.json @@ -3,5 +3,5 @@ "packages": [ "packages/*" ], - "version": "1.6.0" + "version": "1.6.2" } diff --git a/packages/skygear-core/package.json b/packages/skygear-core/package.json index 21563bdc..62c2ec4b 100644 --- a/packages/skygear-core/package.json +++ b/packages/skygear-core/package.json @@ -1,6 +1,6 @@ { "name": "skygear-core", - "version": "1.6.0", + "version": "1.6.2", "description": "Core of Skygear JS SDK", "homepage": "https://github.com/SkygearIO/skygear-SDK-JS", "repository": { diff --git a/packages/skygear-forgot-password/package.json b/packages/skygear-forgot-password/package.json index 4e922438..71fdee45 100644 --- a/packages/skygear-forgot-password/package.json +++ b/packages/skygear-forgot-password/package.json @@ -1,6 +1,6 @@ { "name": "skygear-forgot-password", - "version": "1.6.0", + "version": "1.6.2", "description": "Forgot password for Skygear JS SDK", "homepage": "https://github.com/SkygearIO/skygear-SDK-JS", "repository": { @@ -16,7 +16,7 @@ ], "license": "Apache-2.0", "dependencies": { - "skygear-core": "^1.6.0" + "skygear-core": "^1.6.2" }, "bugs": { "url": "https://github.com/SkygearIO/skygear-SDK-JS/issues" diff --git a/packages/skygear-sso/package.json b/packages/skygear-sso/package.json index c73cd089..e5c60a46 100644 --- a/packages/skygear-sso/package.json +++ b/packages/skygear-sso/package.json @@ -1,6 +1,6 @@ { "name": "skygear-sso", - "version": "1.6.0", + "version": "1.6.2", "description": "Single sign-on for Skygear JS SDK", "main": "dist/index.js", "repository": { @@ -18,7 +18,7 @@ "dependencies": { "Base64": "^1.0.1", "js-cookie": "^2.1.4", - "skygear-core": "^1.6.0" + "skygear-core": "^1.6.2" }, "bugs": { "url": "https://github.com/SkygearIO/skygear-SDK-JS/issues" diff --git a/packages/skygear/package.json b/packages/skygear/package.json index d6b41e90..569d3b90 100644 --- a/packages/skygear/package.json +++ b/packages/skygear/package.json @@ -1,6 +1,6 @@ { "name": "skygear", - "version": "1.6.0", + "version": "1.6.2", "description": "JS SDK of Skygear services", "homepage": "https://github.com/SkygearIO/skygear-SDK-JS", "repository": { @@ -26,9 +26,9 @@ }, "license": "Apache-2.0", "dependencies": { - "skygear-core": "^1.6.0", - "skygear-forgot-password": "^1.6.0", - "skygear-sso": "^1.6.0" + "skygear-core": "^1.6.2", + "skygear-forgot-password": "^1.6.2", + "skygear-sso": "^1.6.2" }, "bugs": { "url": "https://github.com/SkygearIO/skygear-SDK-JS/issues"