Skip to content

Commit 21dbc73

Browse files
authored
Prepare for release: v5.6.1 (#10037)
* Bump version: 5.6.0 → 5.6.1 * Added Changelog for v5.6.1
1 parent ba20bed commit 21dbc73

6 files changed

Lines changed: 43 additions & 7 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.6.0
2+
current_version = 5.6.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z\d]+)?

Changelog.rst

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,23 @@ an overview of what's new in Celery 5.6.
1313
5.6.1
1414
=====
1515

16-
:release-date: TBA
17-
:release-by:
16+
:release-date: 2025-12-29
17+
:release-by: Tomer Nosrati
18+
19+
What's Changed
20+
~~~~~~~~~~~~~~
1821

19-
- Fix Redis Sentinel ACL authentication support
22+
- Fix Redis Sentinel ACL authentication support (#10013)
23+
- Fix: Broker heartbeats not sent during graceful shutdown (#9986)
24+
- docs #5410 -- Document confirm_publish broker transport option (#10016)
25+
- close DB pools only in prefork mode (#10020)
26+
- Fix: Avoid unnecessary Django database connection creation during cleanup (#10015)
27+
- reliable prefork detection (#10023)
28+
- better coverage (#10029)
29+
- Docs: clarify `result_extended` vs periodic task metadata and show `headers["periodic_task_name"]` example (#10030)
30+
- Stop importing pytest_subtests (#10032)
31+
- Only use exceptiongroup backport for Python < 3.11 (#10033)
32+
- Prepare for release: v5.6.1 (#10037)
2033

2134
.. _version-5.6.0:
2235

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
|build-status| |coverage| |license| |wheel| |semgrep| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge|
44

5-
:Version: 5.6.0 (recovery)
5+
:Version: 5.6.1 (recovery)
66
:Web: https://docs.celeryq.dev/en/stable/index.html
77
:Download: https://pypi.org/project/celery/
88
:Source: https://github.com/celery/celery/

celery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
SERIES = 'recovery'
1919

20-
__version__ = '5.6.0'
20+
__version__ = '5.6.1'
2121
__author__ = 'Ask Solem'
2222
__contact__ = 'auvipy@gmail.com'
2323
__homepage__ = 'https://docs.celeryq.dev/'

docs/history/changelog-5.6.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,29 @@ This document contains change notes for bugfix & new features
88
in the main branch & 5.6.x series, please see :ref:`whatsnew-5.6` for
99
an overview of what's new in Celery 5.6.
1010

11+
.. _version-5.6.1:
12+
13+
5.6.1
14+
=====
15+
16+
:release-date: 2025-12-29
17+
:release-by: Tomer Nosrati
18+
19+
What's Changed
20+
~~~~~~~~~~~~~~
21+
22+
- Fix Redis Sentinel ACL authentication support (#10013)
23+
- Fix: Broker heartbeats not sent during graceful shutdown (#9986)
24+
- docs #5410 -- Document confirm_publish broker transport option (#10016)
25+
- close DB pools only in prefork mode (#10020)
26+
- Fix: Avoid unnecessary Django database connection creation during cleanup (#10015)
27+
- reliable prefork detection (#10023)
28+
- better coverage (#10029)
29+
- Docs: clarify `result_extended` vs periodic task metadata and show `headers["periodic_task_name"]` example (#10030)
30+
- Stop importing pytest_subtests (#10032)
31+
- Only use exceptiongroup backport for Python < 3.11 (#10033)
32+
- Prepare for release: v5.6.1 (#10037)
33+
1134
.. _version-5.6.0:
1235

1336
5.6.0

docs/includes/introduction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:Version: 5.6.0 (recovery)
1+
:Version: 5.6.1 (recovery)
22
:Web: https://docs.celeryq.dev/en/stable/index.html
33
:Download: https://pypi.org/project/celery/
44
:Source: https://github.com/celery/celery/

0 commit comments

Comments
 (0)