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

envoy

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

envoy - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

18

lib/adapters/s3.js

@@ -16,4 +16,18 @@ (function () {

};
this.knox.putBuffer(data, path, headers, function(err){
cb(err);
this.knox.putBuffer(data, path, headers, function(err, resp){
if (err) {
cb(err);
return
}
resp.pipe(concat(function (data) {
data = data.toString();
if (data.indexOf('<Error>') > -1) {
cb(data);
}
else {
cb(null);
}
}));
});

@@ -20,0 +34,0 @@ };

4

package.json

@@ -9,3 +9,3 @@ {

],
"version": "1.1.0",
"version": "1.2.0",
"repository": {

@@ -22,3 +22,3 @@ "type": "git",

"jsftp": "0.6.x",
"knox": "0.8.x",
"knox": "0.9.x",
"mime": "1.2.x",

@@ -25,0 +25,0 @@ "underscore": "1.4.x",

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