Comparing version 4.0.0 to 4.0.1
4.0.0 / 2016-01-22 | ||
4.0.1 / 2016-01-25 | ||
================== | ||
* fix IE10 compatibility and refine test | ||
4.0.0 / 2016-01-22 | ||
================== | ||
* build: only test on 4&5 | ||
@@ -6,0 +11,0 @@ * Merge pull request #55 from rockuw/master |
@@ -216,3 +216,5 @@ /** | ||
var headers = { | ||
'x-oss-date': new Date().toGMTString() | ||
// For compatibility with IE10 | ||
// Also MDN says `toGMTString()` is deprecated | ||
'x-oss-date': new Date().toUTCString().replace('UTC', 'GMT') | ||
}; | ||
@@ -219,0 +221,0 @@ |
{ | ||
"name": "ali-oss", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "aliyun oss(open storage service) node client", | ||
@@ -41,3 +41,4 @@ "main": "lib/client.js", | ||
"should": "^7.1.0", | ||
"thunk-mocha": "^1.0.1" | ||
"thunk-mocha": "^1.0.1", | ||
"filereader": "^0.10.3" | ||
}, | ||
@@ -44,0 +45,0 @@ "dependencies": { |
@@ -140,3 +140,3 @@ oss-nodejs-sdk | ||
accessKeySecret: 'your access secret', | ||
bucket: 'your bucket name' | ||
bucket: 'your bucket name', | ||
region: 'oss-cn-hangzhou' | ||
@@ -1731,2 +1731,8 @@ }); | ||
### Compatibility | ||
- IE >= 10 & Edge | ||
- Major versions of Chrome/Firefox/Safari | ||
- Major versions of Android/iOS/WP | ||
### Setup | ||
@@ -1733,0 +1739,0 @@ |
119586
1854
1899
8