Comparing version 3.1.3 to 3.1.4
3.1.4 / 2016-01-26 | ||
================== | ||
* fix: fix utf8 signature error | ||
3.1.3 / 2015-12-18 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -161,3 +161,3 @@ /** | ||
var signature = crypto.createHmac('sha1', this.options.accessKeySecret); | ||
signature = signature.update(stringToSign).digest('base64'); | ||
signature = signature.update(stringToSign, 'utf8').digest('base64'); | ||
return auth + signature; | ||
@@ -164,0 +164,0 @@ }; |
{ | ||
"name": "ali-oss", | ||
"version": "3.1.3", | ||
"version": "3.1.4", | ||
"description": "aliyun oss(open storage service) node client", | ||
@@ -43,2 +43,5 @@ "main": "lib/client.js", | ||
}, | ||
"publishConfig": { | ||
"tag": "release-3" | ||
}, | ||
"dependencies": { | ||
@@ -45,0 +48,0 @@ "address": "~1.0.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
100258