-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES
91 lines (75 loc) · 2.64 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
0.5.1 (2024-01-15)
==================
* Revised upload methods
0.5.0 (2025-01-13)
==================
* Refactored upload logic out of view code
* Added .avif image format.
* Clean up SignS3View method signatures
* Use timezone-aware datetime object in SignS3View
0.4.1 (2025-01-10)
==================
* Recognize heic and heif MIME types.
0.4.0 (2023-09-21)
==================
* Adjust S3Upload.file_dom_selector to allow for any DOM selector
rather than just an ID.
* Introduced new optional param `file_dom_el` for passing in the file
input element directly. This is convenient when initializing
S3Upload from an event, as you can just pass in the event.target
object.
0.3.3 (2023-03-03)
==================
* Fixed bug where `acl` attribute was not working, preventing the
ability to upload objects with `public-read` access.
0.3.2 (2022-04-01)
==================
* Don't call onProgress event handler if file list is empty.
0.3.1 (2022-02-17)
==================
* Use default max file size of 2gb.
* Update default expiration time to 8 hours.
* Introduce configurable region name, via
`AWS_S3_REGION_NAME`. Defaults to us-east-1.
0.3.0 (2021-09-15)
==================
* Use presigned POST request instead of PUT.
* Add a configurable policy limit (default 4mb) for uploads.
0.2.1 (2021-09-10)
==================
* Move s3 signing functions out of the view so they can be imported
and used separately.
* Add bmp image support.
0.2.0 (2021-09-08)
==================
* This library now requires boto3 and botocore to be installed.
* The `amz_headers` view option has been replaced by the `acl`
option. This is 'public-read' by default. Set it to None or
'private' for non-public assets.
* Use boto3 for signing the PUT request.
* Use AWS Signature version 4 for signing URLs. This avoids the needs
for quoting which has led to encoding bugs.
* Add a ContentType fix on PUT request that fixes a bug where SVG's
can't be uploaded.
0.1.9 (2021-09-08)
==================
* Fix bug where signatures with '+' in weren't being properly encoded.
0.1.8 (2021-09-02)
==================
* Add `SignS3View.private` flag to determine whether we're uploading
private resources. If so, return the signed GET url so the media can
be displayed immediately on upload.
0.1.7 (2021-09-02)
==================
* Don't use amz headers for signature calculation if they aren't
present.
0.1.6 (2021-09-01)
==================
* Add webp, svg, and pdf mime types.
* Allow amz acl to be configurable in S3Upload.js
0.1.5 (2021-03-08)
==================
* Update base64.encodestring() to encodebytes().
0.1.4 (2017-10-12)
==================
* Added unicode support / python3 compatibility