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: 1 addition & 1 deletion cookie_consent/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.0"
__version__ = "0.9.0"
31 changes: 31 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@
Changelog
=========

0.9.0 (2025-09-28)
------------------

Maintenance and bugfix release.

**💥 Breaking changes**

* Dropped support for Python 3.8 (end-of-life).
* Dropped support for Python 3.9 (soon end-of-life).

**New features**

* [#114] You can now customize the redirect behaviour after accepting/declining cookies,
using the new ``COOKIE_CONSENT_SUCCESS_URL`` setting.
* The admin now displays a warning for cookie groups that have no cookies in them.

**Bugfixes**

* [#135] Make cookie parsing and serialization more robust.

**Project maintenance**

* Transferred the package from the jazzband Github organization to django-commons, and
updated all community-related documents like the code of conduct.
* Updated the package metadata to latest format.
* Bumped minimum required setuptools version to build the package.
* Replaced black and isort with Ruff for linting and code-formatting duties.
* Improved the test suite.
* The PyPI and NPM packages are now automatically published with Trusted Publishing,
enhancing supply-chain security.

0.8.0 (2025-05-30)
------------------

Expand Down
4 changes: 2 additions & 2 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "django-cookie-consent",
"version": "0.8.0",
"version": "0.9.0",
"description": "Frontend code for django-cookie-consent",
"main": "lib/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[version]
current = "0.8.0"
current = "0.9.0"
regex = '''
(?P<major>\d+)
\.
Expand Down