Releases: thaiphan/magento2-s3
2.1.0
2.0.0
This release modifies how we save AWS credentials to the backend.
Previously, these config settings were being stored in the database as plain text. However, people were complaining about that so we now store this data using the following recommended strategy instead:
Special thanks to @atishgoswami for contributing this change!
Warning: This is a breaking change. You will need to reset your Access Key ID
and Secret Access Key
values upon updating:
php bin/magento s3:config:set \
--access-key-id=XXXXXXX \
--secret-key=XXXXXXX
1.3.0
1.0.1
This is a minor release that contains two main changes:
Add support for more regions
You can now use this extension to upload media images to buckets located in the following regions:
Region | Description |
---|---|
ap-south-1 | Asia Pacific (Mumbai) |
ca-central-1 | Canada (Central) |
cn-north-1 | China (Beijing) |
cn-northwest-1 | China (Ningxia) |
eu-west-3 | EU (Paris) |
us-east-2 | US East (Ohio) |
us-west-2 | US West (Oregon) |
Special thanks to @redgenie for making a contribution to this change.
Add support for swatches
Swatches were previously not working with this extension. This release should fix that.