This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
Overview
The Knox library which this package was previously based on has gone unmaintained for some time and is now failing in many scenarios. This version replaces knox with the official AWS Javascript SDK.
Breaking changes
The option headers
has been replaced with uploadParams
. If you were setting custom headers with previous version of the S3 Storage Adapter you will need to change these to use the appropriate param
as defined in the AWS Documentation
For example, { headers: { 'x-amz-acl': 'public-read' } }
should now be { uploadParams: { ACL: 'public-read' } }
.
Additions
- publicUrl: You can now customise the public url by passing either a domain name as a string (eg.
{ publicUrl: "https://xxxxxx.cloudfront.net" }
) or by passing a function which takes thefile
object and returns a the url as a string.
{ publicUrl: file => `https://xxxxxx.cloudfront.net${file.path}/${file.filename}` }
Other
- path: The requirement for
path
to have a leading slash has been removed. The previous implementation failed to catch this miss-configuration and Knox helpfully made the file uploads work anyway. This has lead to a situation where it is possible/likely that there are existing installations where a miss-configured path is stored in the database. To avoid breaking these installs we now handle adding or removing the leading slash as required.