From 1034d9721364845e10a0d32d9334049afe4872d1 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Mon, 14 Oct 2024 17:14:16 +0300 Subject: [PATCH 1/3] =?UTF-8?q?Bump=20version:=205.4.2=20=E2=86=92=205.5.0?= =?UTF-8?q?rc1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 2 +- docs/includes/introduction.txt | 2 +- kombu/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2caff813d..21ad73363 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.4.2 +current_version = 5.5.0rc1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P[a-z]+)? diff --git a/README.rst b/README.rst index 0a62e5a11..1b33752d4 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |downloads| -:Version: 5.4.2 +:Version: 5.5.0rc1 :Documentation: https://kombu.readthedocs.io/ :Download: https://pypi.org/project/kombu/ :Source: https://github.com/celery/kombu/ diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt index e5616908a..48f52488d 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -1,4 +1,4 @@ -:Version: 5.4.2 +:Version: 5.5.0rc1 :Web: https://kombu.readthedocs.io/ :Download: https://pypi.org/project/kombu/ :Source: https://github.com/celery/kombu/ diff --git a/kombu/__init__.py b/kombu/__init__.py index 70acc3957..345adef3a 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -8,7 +8,7 @@ from collections import namedtuple from typing import Any, cast -__version__ = '5.4.2' +__version__ = '5.5.0rc1' __author__ = 'Ask Solem' __contact__ = 'auvipy@gmail.com' __homepage__ = 'https://kombu.readthedocs.io' From c5ffc30d28b4ad3bffc5c26b11e37ca1ff3703a0 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Mon, 14 Oct 2024 17:31:58 +0300 Subject: [PATCH 2/3] Added Changelog for v5.5.0rc1 --- Changelog.rst | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/Changelog.rst b/Changelog.rst index 8a21f7f20..0dd2b8355 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -4,6 +4,51 @@ Change history ================ +.. _version-5.5.0rc1: + +5.5.0rc1 +======== +:release-date: 14 Oct, 2024 +:release-by: Tomer Nosrati + +Key Highlights +~~~~~~~~~~~~~~ + +Native Delayed Delivery +----------------------- + +Official support to `RabbitMQ Delayed Delivery `_, +which is required to enable ETA tasks with quorom queues in Celery. + +urllib3 instead of curl +----------------------- + +We can finally say goodbye to the :pypi:`pycurl` dependency and use :pypi:`urllib3` instead. + +What's Changed +~~~~~~~~~~~~~~ + +- Pin tzdata to latest version 2024.2 (#2121) +- Refactored CI (#2122) +- Added unit tests to "tox -e parallel" environment (#2123) +- Improve pre-commit checks and fix all new lint errors (#2124) +- Removed codecov flags (#2126) +- Pin pre-commit to latest version 3.8.0 (#2125) +- Limit redis-py <5.1.0 (#2132) +- Removed "on push" from the linter GitHub Actions workflow (#2133) +- Bump pymongo from 4.9.1 to 4.10.0 (#2130) +- Update pymongo to 4.10.1 (#2136) +- fix(pytest): skip file-lock test on Windows (#2138) +- Apply errback and callback when retry occurs (#2129) +- Pin pre-commit to latest version 4.0.0 (Python 3.9+) (#2140) +- Pin pre-commit to latest version 4.0.1 (#2144) +- Add native delayed delivery API to kombu (#2128) +- Add support for Google Pub/Sub as transport broker (#2147) +- Update the transport options according to the retry policy (#2148) +- Feature: urllib3 instead of curl (#2134) +- Update mypy to 1.12.0 (#2149) +- Prepare for (pre) release: v5.5.0rc1 (#2150) + .. _version-5.4.2: 5.4.2 From 36b1f4d96ddf03fe8167b8ec89eefaa28f6ca8f9 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Mon, 14 Oct 2024 17:40:17 +0300 Subject: [PATCH 3/3] Fixed typo --- Changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog.rst b/Changelog.rst index 0dd2b8355..1791d4b8c 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -18,7 +18,7 @@ Native Delayed Delivery ----------------------- Official support to `RabbitMQ Delayed Delivery `_, -which is required to enable ETA tasks with quorom queues in Celery. +which is required to enable ETA tasks with quorum queues in Celery. urllib3 instead of curl -----------------------