fix(deps): update all minor dependencies #2200
Open
+69
−51
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.9.0→2.10.12.18.0→2.20.02.14.0→2.15.04.10.3→4.11.04.11.10.12.0→0.13.05.4.0→5.6.15.6.22024.8.30→2024.12.140.2→0.4.01.5.0→1.7.01.35.3→1.37.10.14.0→0.15.03.1.1→3.3.03.7→3.112.31.3→2.43.03.7.4→3.9.111.0.0→11.2.03.14.0→3.15.1~3.12.7→~3.14.01.0.1→1.2.1^0.8.2→^0.14.04.12.2→4.15.01.3.8→1.4.0Review
Release Notes
jpadilla/pyjwt (PyJWT)
v2.10.1Compare Source
Fixed
#​1034 <https://github.com/jpadilla/pyjwt/pull/1034>__autodoc; addedPyJWSandjwt.algorithmsdocs by @pachewise in#​1045 <https://github.com/jpadilla/pyjwt/pull/1045>__#​1088 <https://github.com/jpadilla/pyjwt/pull/1088>v2.10.0Compare Source
Fixed
adamchainz/apig-wsgi (apig-wsgi)
v2.20.0Compare Source
v2.19.0Compare Source
Support Python 3.13.
Drop Python 3.8 support.
Send binary responses if the 'content-encoding' header is set to any value, rather than just 'gzip'.
Thanks to Zoe Guillen for the report in
PR #​496 <https://github.com/adamchainz/apig-wsgi/pull/496>__.Enable binary support by default for ALB events.
Thanks to Oliver Ford for the report in
Issue #​513 <https://github.com/adamchainz/apig-wsgi/issues/513>__.Treat the content-type header "application/problem+json" as non binary by default.
Thanks to Ido Savion in
PR #​503 <https://github.com/adamchainz/apig-wsgi/pull/503>__.aws/aws-xray-sdk-python (aws-xray-sdk)
v2.15.0Compare Source
==========
https://github.com/aws/aws-xray-sdk-python/pull/464dequelabs/axe-core (axe-core)
v4.11.0Compare Source
Features
htmlstrings when the element has a large outerHTML string (#4796) (404a4fb), closes #4544Bug Fixes
4.10.3 (2025-03-04)
Bug Fixes
4.10.2 (2024-10-21)
Bug Fixes
4.10.1 (2024-10-16)
Bug Fixes
pallets-eco/cachelib (cachelib)
v0.13.0Compare Source
Released 2024-04-13
hashlib.md5may not be available in FIPS builds. Wenow do not access it at import time on
FileSystemCacheso developershave time to change the default.
hashlib.md5will be lazy loaded when a new default is not providedcelery/celery (celery)
v5.6.1Compare Source
=====
:release-date: 2025-12-29
:release-by: Tomer Nosrati
What's Changed
See :ref:
whatsnew-5.6for a complete overview or read the main highlights below.Python 3.9 Minimum Version
Celery 5.6.0 drops support for Python 3.8 (EOL). The minimum required Python
version is now 3.9. Users still on Python 3.8 must upgrade their Python version
before upgrading to Celery 5.6.0.
Additionally, this release includes initial support for Python 3.14.
SQS: Reverted to
pycurlfromurllib3The switch from
pycurltourllib3for the SQS transport (introduced inCelery 5.5.0 via Kombu) has been reverted due to critical issues affecting SQS
users:
UnknownOperationExceptionerrors causing container crash loopsUsers of the SQS transport must ensure
pycurlis installed. If you removedpycurlafter upgrading to Celery 5.5.0, you will need to reinstall it.Contributed by
@auvipy <https://github.com/auvipy>_ in#​9620 <https://github.com/celery/celery/pull/9620>_.Security Fix: Broker Credential Leak Prevention
Fixed a security issue where broker URLs containing passwords were being logged
in plaintext by the delayed delivery mechanism. Broker credentials are now
properly sanitized in all log output.
Contributed by
@giancarloromeo <https://github.com/giancarloromeo>_ in#​9997 <https://github.com/celery/celery/pull/9997>_.Memory Leak Fixes
Two significant memory leaks have been fixed in this release:
Exception Handling Memory Leak: Fixed a critical memory leak in task exception
handling that was particularly severe on Python 3.11+ due to enhanced traceback
data. The fix properly breaks reference cycles in tracebacks to allow garbage
collection.
Contributed by
@jaiganeshs21 <https://github.com/jaiganeshs21>_ in#​9799 <https://github.com/celery/celery/pull/9799>_.Pending Result Memory Leak: Fixed a memory leak where
AsyncResultsubscriptions were not being cleaned up when results were forgotten.
Contributed by
@tsoos99dev <https://github.com/tsoos99dev>_ in#​9806 <https://github.com/celery/celery/pull/9806>_.ETA Task Memory Limit
New configuration option :setting:
worker_eta_task_limitto prevent out-of-memorycrashes when workers fetch large numbers of ETA or countdown tasks. Previously,
workers could exhaust available memory when the broker contained many scheduled tasks.
Example usage:
.. code-block:: python
Contributed by
@sashu2310 <https://github.com/sashu2310>_ in#​9853 <https://github.com/celery/celery/pull/9853>_.Queue Type Selection for Auto-created Queues
New configuration options allow specifying the queue type and exchange type when
Celery auto-creates missing queues. This is particularly useful for RabbitMQ users
who want to use quorum queues with auto-created queues.
Configuration options:
task_create_missing_queue_type: Sets the queue type for auto-createdqueues (e.g.,
quorum,classic)task_create_missing_queue_exchange_type: Sets the exchange type forauto-created queues
Example usage:
.. code-block:: python
Contributed by
@ghirailghiro <https://github.com/ghirailghiro>_ in#​9815 <https://github.com/celery/celery/pull/9815>_.What's Changed
.. _version-5.6.0rc1:
v5.6.0Compare Source
=====
:release-date: 2025-11-30
:release-by: Tomer Nosrati
Celery v5.6.0 is now available.
Key Highlights
.. _version-5.6.0rc2:
v5.5.3Compare Source
=====
:release-date: 2025-06-01
:release-by: Tomer Nosrati
What's Changed
v5.5.2Compare Source
=====
:release-date: 2025-04-25
:release-by: Tomer Nosrati
What's Changed
v5.5.1Compare Source
=====
:release-date: 2025-04-08
:release-by: Tomer Nosrati
What's Changed
v5.5.0Compare Source
=====
:release-date: 2025-03-31
:release-by: Tomer Nosrati
Celery v5.5.0 is now available.
Key Highlights