Releases: kitware-resonant/django-s3-file-field
Releases · kitware-resonant/django-s3-file-field
v0.0.22
- Allow DRF views to work with all
DEFAULT_AUTHENTICATION_CLASSES
- Add a progress callback to the Javascript client library
- In the Javascript client library, make
UploadResult.state
an enum
v0.0.21
- Require Python 3.8
- Change part size to 64MB
- Upload parts to S3 in serial
- The bottleneck to upload rate is typically raw bandwidth, so parallel part uploads do not improve throughput.
- Ensure that URL paths are joined properly in the web client library
v0.0.20
- Remove the optional
part_size
parameter fromMultipartManager.initialize_upload
- Ensure that unsupported
minio>=7
is never required - Add a Python client library: https://pypi.org/project/django-s3-file-field-client/
v0.0.19
- Fix a bug in the JS client's communication with AWS
- Improve the JSDocs for the client library
- Add section to README on form media injection
v0.0.18
- Add support for
S3FileField
to DRFModelSerializer
- Testing improvements
v0.0.17
v0.0.16
- Set up separate npm package for JS multipart upload client
- Presign
CompleteMultipartUpload
requests
v0.0.15
- Allow form fields to handle empty and cleared uploads
v0.0.14
- Import cleanly when
django-storages
is not installed - Simplify checks
- Fields will now be normal
FieldFile
instances, after creating a model via a form
v0.0.13: Merge pull request #109 from girder/safari-render
- Add example project
- Fix small rendering bug with the admin widget on Safari