Skip to content

Releases: G4brym/django-cf

v0.2.9

18 Dec 13:25
0a4360d

Choose a tag to compare

What's Changed

  • Add better error handling while app is still starting by @G4brym in #30

Full Changelog: v0.2.8...v0.2.9

v0.2.8

18 Dec 12:21
0863bcb

Choose a tag to compare

What's Changed

  • Add support for sql date truncates and decimal values by @G4brym in #29
  • Optimize imports in templates for better workers snapshots by @G4brym in #27

Full Changelog: v0.2.5...v0.2.8

v0.2.5

13 Dec 19:40

Choose a tag to compare

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

01 Dec 15:15

Choose a tag to compare

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_binding into django_cf.db.backends.d1
  • Durable Objects backend renamed from django_cf.do_binding into django_cf.db.backends.do
  • Dropped support for D1 API (might come back in the future)

Full Changelog: v0.1.2...v0.2.3

v0.1.2

22 Jun 20:20

Choose a tag to compare

What's Changed

  • Add Durable Objects database backend

Full Changelog: v0.1.1...v0.1.2

v0.1.1

17 May 21:21
e20ff63

Choose a tag to compare

What's Changed

Full Changelog: v0.1.0...v0.1.1

v0.1.0

17 May 18:30
c502787

Choose a tag to compare

What's Changed

  • Add support for workers and D1 binding by @G4brym in #5

Full Changelog: v0.0.17...v0.1.0

v0.0.17

10 Nov 11:59

Choose a tag to compare

Add wagtail support when using with workers-dbms