-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade AWS SDK #19
Upgrade AWS SDK #19
Conversation
I have been putting |
while we are here, might as well add a composer cache (and --prefer-dist) in there too: https://github.com/graze/skeleton-project/blob/master/.travis.yml the prefer-lowest stuff can be ignored i recon |
$formatted = [ | ||
'foo' => ['N' => '1'], | ||
'bar' => ['N' => '2'] | ||
]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in this file are because DynamoDbHandler
from monolog
does different things based on whether the SDK version is 2 or 3.
https://github.com/Seldaek/monolog/blob/master/src/Monolog/Handler/DynamoDbHandler.php#L77
@h-bragg At the moment I'm doing the bare minimum to get this in shape for my other work. I'll do the remaining work to bring it into sync with other projects in a different PR. |
Fair snuff. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks sensible. Just need to make sure we version the release appropriately.
This PR upgrades the AWS SDK from 2.x to 3.x. I need this upgrade as it is blocking some work elsewhere.
If we want still want to support 2.x, we can branch off version 1.6 which will be the last version that will support the 2.x SDK.
I don't know much about this project so I'm hoping that either @john-n-smith or @h-bragg can point out any obvious flaws in what I've done.