Skip to content

Releases: thaiphan/magento2-s3

2.1.0

17 Feb 02:43
Compare
Choose a tag to compare

This release adds support for theme logos and favicons to be uploaded to S3.

2.0.0

15 Feb 10:59
d59a902
Compare
Choose a tag to compare

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:

https://devdocs.magento.com/guides/v2.3/extension-dev-guide/configuration/sensitive-and-environment-settings.html

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

16 Feb 14:06
Compare
Choose a tag to compare

This release adds the ability for Magento to upload generated CAPTCHA images to S3.

1.0.1

17 Feb 03:00
Compare
Choose a tag to compare

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.