Tags: jazzband/django-cookie-consent
Tags
Bugfix and Django supported versions release. **New features** * Confirmed Python 3.13 support. * Confirmed Django 5.1 and 5.2 support. **Project maintenance** * Fixed incorrect JS example in the documentation. * Removed Django 5.0 from CI pipeline (it still works, but Django 5.0 is end of life). * Upgraded esbuild for the Javascript module building.
Feature release with improved JS support. **💥 Breaking changes** Some (database) unique constraints have been added to the model fields. If you have duplicate values in those fields, the migrations will crash. You should check for duplicates before upgrading, and fix those: .. code-block:: py from django.db.models import Count from cookie_consent.models import CookieGroup, Cookie # duplicated cookie groups (by varname) CookieGroup.objects.values("varname").annotate(n=Count("varname")).filter(n__gt=1) # <QuerySet []> # duplicated cookies Cookie.objects.values("cookiegroup", "name", "domain").annotate(n=Count("id")).filter(n__gt=1) # <QuerySet []> Additionally, support for unmaintained Django versions (3.2, 4.1) is dropped. **New features** * The JS for the cookiebar module is rewritten in TypeScript and published as an `npm package`_ for people wishing to integrate this functionality in their own frontend stack. ``cookie_consent/cookiebar.module.js`` is still in the Python package, and it's generated from the same source code. * Added support for natural keys in dumpdata/loaddata management commands. **Deprecations** None. **Bugfixes** * Fixed cache not being cleared after queryset (bulk) update/deletes * Swapped the order of ``onShow`` and ``doInsert`` in the cookiebar JS. ``onShow`` is now called after the cookiebar is inserted into the document. * Added missing unique constraint to ``CookieGroup.varname`` field * Added missing unique constraint on ``Cookie`` fields ``cookiegroup``, ``name`` and ``domain``. **Project maintenance** * Add missing templatetag instruction to docs * Removed Django < 4.2 compatibility shims * Formatted code with latest black version * Dropped Django 3.2 & 4.1 from the supported versions * Removed unused dependencies * Bumped github actions to latest versions * Updated to modern packaging tooling with ``pyproject.toml`` .. _npm package: https://www.npmjs.com/package/django-cookie-consent
0.5.0 beta A django-cookie-consent version to test the new Javascript integration. You can install this using: .. code-block:: bash pip install django-cookie-consent --pre The new cookiebar JS uses a modern approach and should resolve issues with page caches and Content Security Policies. Please try it out and report any issues or suggestion on Github! **Breaking changes** None **New features** * Implemented ``cookie_consent/cookiebar.module.js`` as a new Javascript integration. Please review the updated documentation for usage instructions. (#15, #49, #99) **Deprecations** Deprecated functionality is scheduled for removal in django-cookie-consent 1.0. * Deprecated ``cookie_consent/cookiebar.js`` and added an alias ``legacyShowCookieBar``. Existing users are advised to upgrade to the new module approach, or at the very least substitute ``showCookieBar`` with ``window.legacyShowCookieBar`` to better keep track of this deprecation. * Deprecated template tags that build up cookie strings suitable for Javascript. **Bugfixes** None **Project maintenance** * Extensively documented the new cookiebar JS usage. * Added Playwright for end-to-end testing (covers both the new and legacy cookie bar) * Removed unnecessary ``smart_str`` usage - thanks @some1ataplace * Test app and tests themselves are now excluded from coverage measuring for more a more accurate reflection of the coverage status.
Maintenance and bugfix release .. note:: The 0.4.0 release mainly has had a project management overhaul. The project has transferred to the Jazzband organization. This release mostly focuses on Python/Django version compatibility and organization of tests, CI etc. Many thanks for people who reported bugs, and especially, your patience for getting this release on PyPI. **Breaking changes** * Dropped support for Django 2.2, 3.0, 3.1 and 4.0 * Dropped support for Python 3.6 and 3.7 These versions are (nearly) end-of-life and no longer supported by their upstream teams. **New features** * Implemented settings for cookie flags: SameSite, HttpOnly, Secure, domain (#27, #60, #36, #88) * Added Dutch translations **Bugfixes** * Cache instance resolution is now lazy (#41) * Fixed support for Django 4.1 (#73) - thanks @alahdal * Fixed default settings being bytestrings (#24, #55, #69) * Fixed the middleware to clean cookies (#13) - thanks @some1ataplace * Fixed bug in JS ``beforeDeclined`` attribute **Project maintenance** * Transferred project to Jazzband (#38, #64, #75) * Replaced Travis CI with Github Actions (#64, #75) * Set up correct test matrix for python/django versions (#75) * Code is now ``isort`` and ``black`` formatted (#75) * Set up ``tox`` and ``pytest`` for testing (#64, #75) * 'Removed' the example app - the ``testapp`` in the repository is still a good example * Configured tbump for the release flow * Confirmed support for Python 3.11 and Django 4.2 * Added explicit template tag tests (#39) **Documentation** Did some initial restructuring to make the docs easier to digest, more to come. * Added documentation on how to contribute * Corrected settings documentation (#53, #14) * Documented ``cookiebar.js`` usage (#90) - thanks @MrCordeiro * Added better contributor documentation and example app documentation based on the ``testapp`` in the repository.
PreviousNext