Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
====================
* Removed dependency on django-stagingcontext
* Updated S3Storage class locations for django-storages
* django-storages: remove public-read ACL. ACLs are deprecated in
favor of bucket policies.

0.4.5 (2025-11-06)
====================
Expand Down
3 changes: 0 additions & 3 deletions ctlsettings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ def common(**kwargs):
if s3static:
# serve static files off S3
AWS_STORAGE_BUCKET_NAME = s3prefix + "-" + project + "-static-prod"
AWS_S3_OBJECT_PARAMETERS = {
'ACL': 'public-read',
}
STORAGES = {
'default': {
'BACKEND': 'ctlsettings.storages.UploadsStorage',
Expand Down
3 changes: 0 additions & 3 deletions ctlsettings/staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ def common(**kwargs):
if s3static:
# serve static files off S3
AWS_STORAGE_BUCKET_NAME = s3prefix + "-" + project + "-static-stage"
AWS_S3_OBJECT_PARAMETERS = {
'ACL': 'public-read',
}
STORAGES = {
'default': {
'BACKEND': 'ctlsettings.storages.UploadsStorage',
Expand Down