New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ali-oss

Package Overview
Dependencies
Maintainers
2
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ali-oss - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

7

History.md
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

4

lib/client.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc