django-cms / django-filer

File and Image Management Application for django
https://django-filer.readthedocs.io/
Other
1.78k stars 581 forks source link

Broken on django-storages >= 1.14.4 #1484

Open petrklus opened 4 months ago

petrklus commented 4 months ago

Due to the change with how .exists() works when used with certain backends, Django-filer is now broken as it relies on .exists to return actual file existence (and not False). This happens for me on S3 backed storage (not locally).

Further detail: https://github.com/jschneier/django-storages/issues/1430

fsbraun commented 4 months ago

@petrklus Thanks so much for bringing this to attention! For now, django-filer needs to work with django-storages<=1.14.3.

Django has clarified the ways .exists() works in their development branch (https://docs.djangoproject.com/en/dev/ref/files/storage/#django.core.files.storage.Storage.exists) and my understanding is that django-storages will revert to this updated definition in its next minor release.

I suggest to wait for the changes in the next django-storages release and see from there, if filer needs an update.

stale[bot] commented 1 month ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

petrklus commented 3 weeks ago

@fsbraun has there been any update on this? Still behaves the same, do the django-storages team have any ETA for the release?