Skip to content

Commit

Permalink
Prepare release of django-redis 5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
foarsitter committed Jun 16, 2023
1 parent 2fc443a commit c479e95
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 11 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,34 @@ Changelog

.. towncrier release notes start
django-redis 5.3.0 (2023-06-16)
===============================

Features
--------

- Add support for django 4 (`#627 <https://github.com/jazzband/django-redis/issues/627>`_)


Bug Fixes
---------

- Access `django_redis.cache.DJANGO_REDIS_SCAN_ITERSIZE` and `django_redis.client.herd.CACHE_HERD_TIMEOUT` in runtime to not read Django settings in import time. (`#638 <https://github.com/jazzband/django-redis/issues/638>`_)
- Skipping pickle serializer test for django >= 4.2 (`#646 <https://github.com/jazzband/django-redis/issues/646>`_)


Miscellaneous
-------------

- Speed up deleting multiple keys by a pattern with pipelines and larger itersize (`#609 <https://github.com/jazzband/django-redis/issues/609>`_)
- Print full exception traceback when logging ignored exceptions (`#611 <https://github.com/jazzband/django-redis/issues/611>`_)
- Fix mypy linting (`#626 <https://github.com/jazzband/django-redis/issues/626>`_)
- Added support for python 3.11 (`#633 <https://github.com/jazzband/django-redis/issues/633>`_)
- Fix CI, running tox<4 to still support Python 3.6. (`#645 <https://github.com/jazzband/django-redis/issues/645>`_)
- Dropped support for django 2.2 and 3.1 (`#649 <https://github.com/jazzband/django-redis/issues/649>`_)
- Run actions & tox against Django 4..2 (`#668 <https://github.com/jazzband/django-redis/issues/668>`_)


django-redis 5.2.0 (2021-12-22)
===============================

Expand Down
1 change: 0 additions & 1 deletion changelog.d/609.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/611.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/626.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/627.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/633.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/638.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/645.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/646.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/649.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/668.misc

This file was deleted.

2 changes: 1 addition & 1 deletion django_redis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (5, 2, 0)
VERSION = (5, 3, 0)
__version__ = ".".join(map(str, VERSION))


Expand Down

0 comments on commit c479e95

Please sign in to comment.