Socket
Socket
Sign inDemoInstall

bloody-simple-s3

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bloody-simple-s3 - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

4

CHANGELOG.md

@@ -0,1 +1,5 @@

## 0.2.4 - 2014-11-28
* Use #encodeURIComponent() instead of #encodeURI() to encode @CopySource.
## 0.2.3 - 2014-11-28

@@ -2,0 +6,0 @@

2

package.json
{
"name": "bloody-simple-s3",
"version": "0.2.3",
"version": "0.2.4",
"description": "A bloody simple interface to S3, based on the official AWS sdk.",

@@ -5,0 +5,0 @@ "repository": {

@@ -380,3 +380,3 @@ var path = require('path'),

Bucket: this.bucket,
CopySource: encodeURI(path.join(this.bucket, source)),
CopySource: encodeURIComponent(path.join(this.bucket, source)),
Key: destination,

@@ -461,14 +461,14 @@ MetadataDirective: 'COPY'

// console.log(arr);
// return s3.copy(arr[1].key, 'temp/0a')
// .then(function (data) {
// console.log(data);
// return s3.remove('temp/0a');
// })
// .then(function (data) {
// console.log(data);
// });
// })
// .catch(function (err) {
// console.error(err);
// });
// return s3.copy('temp/A+ Manga 1.0.ipa', 'temp/0a')
// .then(function (data) {
// console.log(data);
// // return s3.remove('temp/0a');
// })
// .catch(function (data) {
// console.log(data);
// });
// })
// .catch(function (err) {
// console.error(err);
// });

@@ -475,0 +475,0 @@ // s3.upload({

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