Skip to content

Commit 19d9750

Browse files
authored
Prepare for (pre) release: v5.5.0rc3 (#2247)
* Bump version: 5.5.0rc2 → 5.5.0rc3 * Added Changelog for v5.5.0rc3
1 parent a9a67c9 commit 19d9750

File tree

5 files changed

+50
-4
lines changed

5 files changed

+50
-4
lines changed

Diff for: .bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.5.0rc2
2+
current_version = 5.5.0rc3
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?

Diff for: Changelog.rst

+46
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,52 @@
44
Change history
55
================
66

7+
.. _version-5.5.0rc3:
8+
9+
5.5.0rc3
10+
========
11+
:release-date: 20 Feb, 2025
12+
:release-by: Tomer Nosrati
13+
14+
Key Highlights
15+
~~~~~~~~~~~~~~
16+
17+
Native Delayed Delivery
18+
-----------------------
19+
20+
Official support to `RabbitMQ Delayed Delivery <https://docs.particular.net/transports/rabbitmq/delayed-delivery>`_,
21+
which is required to enable ETA tasks with quorum queues in Celery.
22+
23+
urllib3 instead of curl
24+
-----------------------
25+
26+
We can finally say goodbye to the :pypi:`pycurl` dependency and use :pypi:`urllib3` instead.
27+
28+
Transport: Google Pub/Sub
29+
-------------------------
30+
31+
New support for Google Pub/Sub as a transport broker.
32+
33+
What's Changed
34+
~~~~~~~~~~~~~~
35+
36+
- Bump pytest-cov from 5.0.0 to 6.0.0 (#2183)
37+
- Add documentation for debug logs environment variables (#2186)
38+
- Add documentation for py-amqp transport options (#2187)
39+
- Bump codecov/codecov-action from 4 to 5 (#2189)
40+
- Update pytest to 8.3.4 (#2196)
41+
- Update redis requirement from !=4.5.5,!=5.0.2,<=5.2.0,>=4.5.2 to >=4.5.2,!=4.5.5,!=5.0.2,<=5.2.1 (#2203)
42+
- Close connections in case of an exception (#2201)
43+
- Bump pytest-freezer from 0.4.8 to 0.4.9 (#2205)
44+
- Bump mypy from 1.13.0 to 1.14.0 (#2211)
45+
- fix(sqs): don't crash on multiple predefined queues with aws sts session (#2224)
46+
- Bump mypy from 1.14.0 to 1.14.1 (#2215)
47+
- Bump tzdata from 2024.2 to 2025.1 (#2230)
48+
- fix: interpret the ssl_check_hostname as a boolean (#2229)
49+
- Revert "Resolving TypeError, during version unpacking " (#2225)
50+
- Bump flake8 from 7.1.1 to 7.1.2 (#2244)
51+
- Prepare for (pre) release: v5.5.0rc3 (#2247)
52+
753
.. _version-5.5.0rc2:
854

955
5.5.0rc2

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
|build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |downloads|
66

7-
:Version: 5.5.0rc2
7+
:Version: 5.5.0rc3
88
:Documentation: https://kombu.readthedocs.io/
99
:Download: https://pypi.org/project/kombu/
1010
:Source: https://github.com/celery/kombu/

Diff for: docs/includes/introduction.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:Version: 5.5.0rc2
1+
:Version: 5.5.0rc3
22
:Web: https://kombu.readthedocs.io/
33
:Download: https://pypi.org/project/kombu/
44
:Source: https://github.com/celery/kombu/

Diff for: kombu/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from collections import namedtuple
99
from typing import Any, cast
1010

11-
__version__ = '5.5.0rc2'
11+
__version__ = '5.5.0rc3'
1212
__author__ = 'Ask Solem'
1313
__contact__ = '[email protected]'
1414
__homepage__ = 'https://kombu.readthedocs.io'

0 commit comments

Comments
 (0)