Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Changelog
==========

v1.2.0
------
- HTTPS support for input & output urls.

Breaking changes:

- Upgraded to AWS SDK v3.17.5. The AWS S3 client now requires an aws region, you have to define 's3Region' property
in the ShellCommand's 'customData'. Note this is only required if your input or output urls relies on S3.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ This code is not expected to accept arbitrary user input. If you create a ShellC
The reason we don't do this in ShellCommand is that escapeshellcmd() neuters pipes and redirection, and escapeshellarg() requires parsing which would introduce its own security risks.

Therefore we just punt on security and tell you to sanitize your inputs before creating a ShellCommand.

Changelog
=========
Read the changelog [here](CHANGELOG.md)
2 changes: 1 addition & 1 deletion composer.json
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"require": {
"php": ">=5.2.0",
"aws/aws-sdk-php": "2.7.17"
"aws/aws-sdk-php": "3.17.5"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
Expand Down
Loading