Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

Bumps the uv group with 2 updates: kombu and narwhals.

Updates kombu from 5.5.4 to 5.6.0

Release notes

Sourced from kombu's releases.

v5.6.0

Key Highlights

QoS Max Prefetch Limit celery/kombu#2348

Prevent Out Of Memory crashes when queues flood with ETA/countdown tasks. The new optional max_prefetch parameter caps how many messages workers hold in memory. Defaults to unlimited (None) to preserve existing behavior.

from kombu.common import QoS
Limit prefetch to maximum 100 messages
qos = QoS(callback=consumer.qos, initial_value=10, max_prefetch=100)

Redis Polling Interval Support celery/kombu#2346

Fix Redis transport to properly propagate polling_interval and brpop_timeout from transport_options to the Channel's _brpop_start timeout.

app.conf.broker_transport_options = {"polling_interval": 10}

Leave it unset to keep the familiar 1-second default, or raise it to slow down idle polling.

Pidbox RabbitMQ 4.x Compatibility celery/kombu#2338

Let pidbox queues work on RabbitMQ 4.x brokers that reject transient, non-exclusive queues.

MongoDB Transport Improvements celery/kombu#2347

URI options now come through lowercase and flattened again, so settings like replicaSet=test_rs show up as options['replicaset'].

Resource Pool Gevent Compatibility celery/kombu#2314

Restore compatibility with recent gevent releases that monkey-patch the standard library queue.

Timezone-aware UTC Timestamps celery/kombu#2355

Replace every usage of datetime.utcnow() with datetime.now(timezone.utc) to return timezone-aware UTC datetimes.

Redis Client Name Support celery/kombu#2367

Support for propagating the client_name connection parameter through the Redis transport (including Sentinel) so that connections appear with meaningful names in monitoring tools.

What's Changed

Since v5.6.0rc2

... (truncated)

Changelog

Sourced from kombu's changelog.

5.6.0

:release-date: 1 November, 2025 :release-by: Tomer Nosrati

Key Highlights


QoS Max Prefetch Limit
----------------------

PR [#2348](https://github.com/celery/kombu/issues/2348) <https://github.com/celery/kombu/pull/2348>_

Prevent Out Of Memory crashes when queues flood with ETA/countdown tasks. The new optional max_prefetch parameter caps how many messages workers hold in memory. Defaults to unlimited (None) to preserve existing behavior.

.. code-block:: python

from kombu.common import QoS

Limit prefetch to maximum 100 messages

qos = QoS(callback=consumer.qos, initial_value=10, max_prefetch=100)

Redis Polling Interval Support

PR [#2346](https://github.com/celery/kombu/issues/2346) <https://github.com/celery/kombu/pull/2346>_

Fix Redis transport to properly propagate polling_interval and brpop_timeout from transport_options to the Channel's _brpop_start timeout.

.. code-block:: python

app.conf.broker_transport_options = {"polling_interval": 10}

Leave it unset to keep the familiar 1-second default, or raise it to slow down idle polling.

Pidbox RabbitMQ 4.x Compatibility

PR [#2338](https://github.com/celery/kombu/issues/2338) <https://github.com/celery/kombu/pull/2338>_

Let pidbox queues work on RabbitMQ 4.x brokers that reject transient, non-exclusive queues.

MongoDB Transport Improvements

PR [#2347](https://github.com/celery/kombu/issues/2347) <https://github.com/celery/kombu/pull/2347>_

URI options now come through lowercase and flattened again, so settings like replicaSet=test_rs show up as options['replicaset'].

Resource Pool Gevent Compatibility </tr></table>

... (truncated)

Commits

Updates narwhals from 2.10.0 to 2.10.1

Release notes

Sourced from narwhals's releases.

Narwhals v2.10.1

Changes

✨ Enhancements

  • fix: allow for None dtype in from_dict (#3252)
  • [Enh] added modifications to make tests accessible to plugins (#3248)

🐞 Bug fixes

  • fix: Ibis failing with IntegerColumn and .is_finite (#3258)
  • fix: allow for None dtype in from_dict (#3252)
  • fix: Address pandas.Series.to_frame for unnamed series in internal usage (#3251)

🛠️ Other improvements

  • chore: Duckdb pre-release compat (#3263)
  • chore: Add DTypeClass to improve DType.__repr__ and simplify __slots__ (#3213)
  • ci: Add typos-cli in pre-commit (#3260)
  • tests: Allow to run polars without extra deps (#3256)
  • fix(test): TPCH find_spec('dask') and find_spec('dask.dataframe') (#3253)
  • test: Refactor TPCH testing to run without all dependencies installed (#3244)

Thank you to all our contributors for making this release possible! @​FBruzzesi, @​MarcoGorelli, @​hoxbro and @​ym-pett

Commits
  • 56c298f release: Bump version to 2.10.1
  • 37f4994 chore: Duckdb pre-release compat (#3263)
  • f3b454a fix: Ibis failing with IntegerColumn and .is_finite (#3258)
  • fae00ab fix: allow for None dtype in from_dict (#3252)
  • f8eb082 ci: Add typos-cli in pre-commit (#3260)
  • 4609244 chore: Add DTypeClass to improve DType.__repr__ and simplify __slots__ ...
  • aafb9ce tests: Allow to run polars without extra deps (#3256)
  • bc6a77f fix(test): TPCH find_spec('dask') and find_spec('dask.dataframe') (#3253)
  • 711fc20 test: Refactor TPCH testing to run without all dependencies installed (#3244)
  • 6031160 fix: Address pandas.Series.to_frame for unnamed series in internal usage (#...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the uv group with 2 updates: [kombu](https://github.com/celery/kombu) and [narwhals](https://github.com/narwhals-dev/narwhals).


Updates `kombu` from 5.5.4 to 5.6.0
- [Release notes](https://github.com/celery/kombu/releases)
- [Changelog](https://github.com/celery/kombu/blob/main/Changelog.rst)
- [Commits](celery/kombu@v5.5.4...v5.6.0)

Updates `narwhals` from 2.10.0 to 2.10.1
- [Release notes](https://github.com/narwhals-dev/narwhals/releases)
- [Commits](narwhals-dev/narwhals@v2.10.0...v2.10.1)

---
updated-dependencies:
- dependency-name: kombu
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: narwhals
  dependency-version: 2.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: uv
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Nov 3, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 6, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 6, 2025
@dependabot dependabot bot deleted the dependabot/uv/uv-630e1bb8de branch November 6, 2025 17:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant