Releases: G4brym/django-cf
Releases · G4brym/django-cf
v0.2.9
v0.2.8
v0.2.5
What's Changed
MEDIA_URL = 'https://pub-xxxxx.r2.dev/'
STORAGES = {
"default": {
"BACKEND": "django_cf.storage.R2Storage",
"OPTIONS": {
# The binding name must match the one in wrangler.jsonc
"binding": "BUCKET",
# Optional: prefix for all files
"location": "media",
# Optional: allow overwriting existing files (default: False)
"allow_overwrite": False,
}
},
"staticfiles": {
"BACKEND": "django.contrib.staticfiles.storage.StaticFilesStorage",
},
}Full Changelog: v0.2.3...v0.2.5
v0.2.3
What's Changed
- Added Cloudflare Access Middleware (authentication and automatic Django User creation)
- Improved code and test coverage for both D1 and Durable Objects backends
- Improved templates
Breaking Changes
- D1 backend renamed from
django_cf.d1_bindingintodjango_cf.db.backends.d1 - Durable Objects backend renamed from
django_cf.do_bindingintodjango_cf.db.backends.do - Dropped support for D1 API (might come back in the future)
Full Changelog: v0.1.2...v0.2.3