Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

minio

Package Overview
Dependencies
Maintainers
4
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minio - npm Package Compare versions

Comparing version 3.1.1 to 3.1.2

dist/main/fget-object.js

5

dist/main/helpers.js

@@ -170,6 +170,5 @@ /*

function probeContentType(path) {
if (!_mimeTypes2['default'].lookup(path)) {
var contentType = _mimeTypes2['default'].lookup(path);
if (!contentType) {
contentType = 'application/octet-stream';
} else {
contentType = _mimeTypes2['default'].lookup(filePath);
}

@@ -176,0 +175,0 @@ return contentType;

13

dist/main/transformers.js

@@ -147,3 +147,3 @@ /*

return getConcater(function (xmlString) {
if (!xmlString) {
var getError = function getError() {
// Message should be instantiated for each S3Errors.

@@ -157,4 +157,13 @@ var e = new errors.S3Error(message);

return e;
};
if (!xmlString) {
return getError();
}
return xmlParsers.parseError(xmlString, headerInfo);
var e = undefined;
try {
e = xmlParsers.parseError(xmlString, headerInfo);
} catch (ex) {
return getError();
}
return e;
}, true);

@@ -161,0 +170,0 @@ }

@@ -71,5 +71,5 @@ # JavaScript Client API Reference [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)

|`secure` | _bool_ |If set to true, https is used instead of http. Default is https if not set. |
|`region` | _string_ |Set this value to override auto bucket region discovery. (Optional)|
__Example__

@@ -137,4 +137,2 @@

__Example__

@@ -141,0 +139,0 @@

{
"name": "minio",
"version": "3.1.1",
"version": "3.1.2",
"description": "S3 Compatible Cloud Storage client",

@@ -5,0 +5,0 @@ "main": "./dist/main/minio.js",

@@ -16,3 +16,3 @@ # Minio JavaScript Library for Amazon S3 Compatible Cloud Storage [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)

npm install --save minio@3.1.1
npm install --save minio@3.1.2

@@ -19,0 +19,0 @@ ```

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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