Skip to content

Commit

Permalink
Preparing release of version 5.1.0 (#573)
Browse files Browse the repository at this point in the history
* Preparing release of version 5.1.0

* Changed release version
  • Loading branch information
WisdomPill authored Nov 30, 2021
1 parent b5c5959 commit c7c3ab3
Show file tree
Hide file tree
Showing 14 changed files with 36 additions and 13 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,41 @@ Changelog

.. towncrier release notes start
Django_Redis 5.1.0 (2021-11-29)
===============================

Features
--------

- Add Python 3.10 to CI (`#536 <https://github.com/jazzband/django-redis/issues/536>`_)
- Configured ``towncrier`` to generate the changelog. (`#548 <https://github.com/jazzband/django-redis/issues/548>`_)
- Added ``django_redis.compressors.zstd.ZStdCompressor`` to provide ``pyzstd`` cache value compression. (`#551 <https://github.com/jazzband/django-redis/issues/551>`_)
- Change pickle default version to Python default instead of highest version. (`#555 <https://github.com/jazzband/django-redis/issues/555>`_)
- Add ``hiredis`` extra dependency to request ``redis[hiredis]``. (`#556 <https://github.com/jazzband/django-redis/issues/556>`_)
- Add pexpireat to allow setting 'expire at' with millisecond precision. (`#564 <https://github.com/jazzband/django-redis/issues/564>`_)


Bug Fixes
---------

- Make expire, pexpire, expireat and persist return the redis client value (`#564 <https://github.com/jazzband/django-redis/issues/564>`_)


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

- Convert most unittest class tests to pytest tests. (`#553 <https://github.com/jazzband/django-redis/issues/553>`_)
- Update type comments to type annotations. (`#568 <https://github.com/jazzband/django-redis/issues/568>`_)
- Pin redis-py to 3.x until 4.x breaking changes can be addressed. (`#570 <https://github.com/jazzband/django-redis/issues/570>`_)


Documentation
-------------

- Clarify redis primary name in sentinel documentation. (`#529 <https://github.com/jazzband/django-redis/issues/529>`_)
- Add documentation on configuring self signed SSL certificates. (`#559 <https://github.com/jazzband/django-redis/issues/559>`_)


django-redis 5.0.0 (2021-05-30)
===============================

Expand Down
1 change: 0 additions & 1 deletion changelog.d/529.doc

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/559.doc

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/570.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, 0, 0)
VERSION = (5, 1, 0)
__version__ = ".".join(map(str, VERSION))


Expand Down

0 comments on commit c7c3ab3

Please sign in to comment.