Skip to content

Commit

Permalink
Prepare for (pre) release: v5.5.0rc2 (#2181)
Browse files Browse the repository at this point in the history
* Added Changelog for v5.5.0rc2

* Bump version: 5.5.0rc1 → 5.5.0rc2
  • Loading branch information
Nusnus authored Oct 29, 2024
1 parent d2f955e commit 2f2190b
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.5.0rc1
current_version = 5.5.0rc2
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?
Expand Down
45 changes: 45 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,51 @@
Change history
================

.. _version-5.5.0rc2:

5.5.0rc2
========
:release-date: 29 Oct, 2024
:release-by: Tomer Nosrati

Key Highlights
~~~~~~~~~~~~~~

Native Delayed Delivery
-----------------------

Official support to `RabbitMQ Delayed Delivery <https://docs.particular.net/transports/rabbitmq/delayed-delivery>`_,
which is required to enable ETA tasks with quorum queues in Celery.

urllib3 instead of curl
-----------------------

We can finally say goodbye to the :pypi:`pycurl` dependency and use :pypi:`urllib3` instead.

Transport: Google Pub/Sub
-------------------------

New support for Google Pub/Sub as a transport broker.

What's Changed
~~~~~~~~~~~~~~

- Added missing changelog highlight for Google Pub/Sub (#2151)
- Bump grpcio from 1.66.2 to 1.67.0 (#2158)
- Fix: restrict google-cloud-pubsub version (#2160)
- Update mypy to 1.12.1 (#2164)
- Added a unit test that proves timeout is used when retry policy is specified (#2166)
- Fix regression from #2148 (#2165)
- Update google-cloud-pubsub requirement from <=2.20.3,>=2.18.4 to >=2.18.4,<=2.25.2 (#2168)
- Revert "Update google-cloud-pubsub requirement from <=2.20.3,>=2.18.4 to >=2.18.4,<=2.25.2" (#2169)
- Update mypy to 1.13.0 (#2172)
- Fix: restrict google protobuf version (#2175)
- Add support for Python 3.13 (#2052)
- Apply retry policy to maybe_declare() (#2174)
- Pin redis to >=4.5.2,!=4.5.5,!=5.0.2,<=5.2.0 (#2178)
- Added confirm_timeout argument to publish() (#2167)
- Prepare for (pre) release: v5.5.0rc2 (#2181)

.. _version-5.5.0rc1:

5.5.0rc1
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

:Version: 5.5.0rc1
:Version: 5.5.0rc2
:Documentation: https://kombu.readthedocs.io/
:Download: https://pypi.org/project/kombu/
:Source: https://github.com/celery/kombu/
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/introduction.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:Version: 5.5.0rc1
:Version: 5.5.0rc2
:Web: https://kombu.readthedocs.io/
:Download: https://pypi.org/project/kombu/
:Source: https://github.com/celery/kombu/
Expand Down
2 changes: 1 addition & 1 deletion kombu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from collections import namedtuple
from typing import Any, cast

__version__ = '5.5.0rc1'
__version__ = '5.5.0rc2'
__author__ = 'Ask Solem'
__contact__ = '[email protected]'
__homepage__ = 'https://kombu.readthedocs.io'
Expand Down

0 comments on commit 2f2190b

Please sign in to comment.