Skip to content

Bump the python group across 1 directory with 4 updates#136

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/python-fbda4cc3cc
Open

Bump the python group across 1 directory with 4 updates#136
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/python-fbda4cc3cc

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the python group with 4 updates in the / directory: dill, psutil, disnake and coredis.

Updates dill from 0.4.0 to 0.4.1

Commits

Updates psutil from 7.2.1 to 7.2.2

Changelog

Sourced from psutil's changelog.

7.2.2

2026-01-28

Enhancements

  • 2705_: [Linux]: Process.wait()_ now uses pidfd_open() + poll() for waiting, resulting in no busy loop and faster response times. Requires Linux >= 5.3 and Python >= 3.9. Falls back to traditional polling if unavailable.
  • 2705_: [macOS], [BSD]: Process.wait()_ now uses kqueue() for waiting, resulting in no busy loop and faster response times.

Bug fixes

  • 2701_, [macOS]: fix compilation error on macOS < 10.7. (patch by Sergey Fedorov)
  • 2707_, [macOS]: fix potential memory leaks in error paths of Process.memory_full_info() and Process.threads().
  • 2708_, [macOS]: Process.cmdline()_ and Process.environ()_ may fail with ``OSError: [Errno 0] Undefined error`` (from ``sysctl(KERN_PROCARGS2)``). They now raise AccessDenied`_ instead.
Commits
  • 9eea97d Pre-release
  • 938ac64 Rm sphinxcontrib.googleanalytics; override layout.html
  • 9dcbb7e Add sphinxcontrib-googleanalytics to requirements.txt
  • 76eaf9a Try to add google analytics to doc
  • de1cafa Update doc mentioning Process.wait() internal details
  • bb30943 Refact can_use_pidfd_open() and can_use_kqueue()
  • a571717 #2708, macos / cmdline / environ; raise AD instead of OSError(0) (#2709)
  • 8b98c3e Pre-release
  • 700b7e6 [macOS] fix potential leaks in error paths (#2707)
  • 7cc7923 Windows / cmdline(): be more defensive in free()ing in case of error
  • Additional commits viewable in compare view

Updates disnake from 2.11.0 to 2.12.0

Release notes

Sourced from disnake's releases.

v2.12.0

This new version adds support for several new modal components (including file uploads and checkboxes), managing app emojis, end-to-end-encrypted voice connections, and includes a bunch of other minor features, bugfixes, and internal refactors. While it won't concern the majority of users, please note the breaking changes in this version, mentioned in the changelog. Most notably, this version drops support for Python 3.8 + 3.9, which reached end-of-life in 2024 and 2025 respectively.

Changelog: https://docs.disnake.dev/en/stable/whats_new.html#v2-12-0 Git history: DisnakeDev/disnake@v2.11.0...v2.12.0

Commits
  • 219ebed chore(release): v2.12.0 (#1506)
  • 51ccccf fix(ci): remove old artifacts of pre-hatchling release workflow (#1505)
  • a785b9c feat(voice): add DAVE protocol (E2EE) support (#1492)
  • 48b9902 style: disable flake8-type-checking ruff rules TC001/2/3 again (#1504)
  • fcec669 fix: remove unused Emoji.application_id (#1503)
  • c6e8319 feat(components): add radio/checkbox group and checkbox modal components (#1495)
  • d9e43a7 fix(docs): update links to API docs after migration (#1502)
  • 7041dea feat: member profile auto moderation (#1004)
  • 1274c96 docs: remove fetch_role_member_counts preview warning (#1501)
  • 0ab8f34 feat(Colour): add factory method for #RRGGBB color codes (#1487)
  • Additional commits viewable in compare view

Updates coredis from 5.5.0 to 6.1.0

Release notes

Sourced from coredis's releases.

6.1.0

Bug Fix

  • Fix incorrect initialization of connection capacity limiter resulting in module level shared capacity limiter.
  • Fix broken recovery from moved errors in cluster retry mechanism
  • Remove bloat in source distribution and only package relevant source files

Compatibility

  • Add support for DELEX (coredis.Redis.delex)
  • Add support for DIGEST (coredis.Redis.digest)
  • Add support for MSETEX (coredis.Redis.msetex)
  • Update coredis.Redis.set to support conditional setting of values and expiration based on value or digest equality
  • Add support for idempotent stream producers in coredis.Redis.xadd
  • Add support for XCFGET (coredis.Redis.xcfgset)

Usability

  • Remove ambiguous "Any" kwargs in clients, connection pools and connection constructors and tighten the acceptable parameters.
  • Broaden acceptable types for commands that take mappings as arguments to allow for covariance in the mapping key

6.0.0

This release is a major architectural rewrite focused on structured concurrency, predictable resource lifetimes, and safer defaults. See the Migration guide for upgrade instructions.

Features

  • Migrate entire library to anyio, adding structured concurrency and trio support

  • Command API

    • Allow chainable coredis.commands.CommandRequest.transform method to accept inline callbacks to transform command responses
    • Added coredis.commands.CommandRequest.retry chainable method to the response from all commands to allow using retry policies individually with a request instead of having to apply it on all requests issued by a client
  • Pipeline

... (truncated)

Changelog

Sourced from coredis's changelog.

v6.1.0

Release Date: 2026-02-12

  • Bug Fix

    • Fix incorrect initialization of connection capacity limiter resulting in module level shared capacity limiter.
    • Fix broken recovery from moved errors in cluster retry mechanism
    • Remove bloat in source distribution and only package relevant source files
  • Compatibility

    • Add support for :rediscommand:DELEX (:meth:~coredis.Redis.delex)
    • Add support for :rediscommand:DIGEST (:meth:~coredis.Redis.digest)
    • Add support for :rediscommand:MSETEX (:meth:~coredis.Redis.msetex)
    • Update :meth:~coredis.Redis.set to support conditional setting of values and expiration based on value or digest equality
    • Add support for idempotent stream producers in :meth:~coredis.Redis.xadd
    • Add support for :rediscommand:XCFGET (:meth:~coredis.Redis.xcfgset)
  • Usability

    • Remove ambiguous "Any" kwargs in clients, connection pools and connection constructors and tighten the acceptable parameters.
    • Broaden acceptable types for commands that take mappings as arguments to allow for covariance in the mapping key

v6.0.0

Release Date: 2026-02-08

This release is a major architectural rewrite focused on structured concurrency, predictable resource lifetimes, and safer defaults. See the Migration guide <https://coredis.readthedocs.io/en/latest/handbook/migration_guide.html#migrating_5_to_6.html>_ for upgrade instructions.

  • Features

    • Migrate entire library to :pypi:anyio, adding structured concurrency and :mod:trio support

    • Command API

      • Allow chainable :meth:~coredis.commands.CommandRequest.transform method to accept inline callbacks to transform command responses
      • Added :meth:~coredis.commands.CommandRequest.retry chainable method to the response from all commands

... (truncated)

Commits
  • e021589 Update changelog for 6.1.0
  • a526a56 Minor improvements to stream command docstrings
  • 2d624ef Merge pull request #338 from Graeme22/limiter-initialization
  • 4167194 Fix unsafe CapacityLimiter initialization at import time
  • 6ee2658 Add missing flag reset in cluster refresh path
  • c8a7351 Refresh ci matrix python versions
  • c25f262 Attempt at reducing flakyness in subscription timeout test
  • 56c2c2a Fix typo in docstring
  • 66f7174 Ensure keystep is accounted for when using keynum key finder
  • bb5a388 Add support for msetex command
  • 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 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 python group with 4 updates in the / directory: [dill](https://github.com/uqfoundation/dill), [psutil](https://github.com/giampaolo/psutil), [disnake](https://github.com/DisnakeDev/disnake) and [coredis](https://github.com/alisaifee/coredis).


Updates `dill` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/uqfoundation/dill/releases)
- [Commits](uqfoundation/dill@0.4.0...0.4.1)

Updates `psutil` from 7.2.1 to 7.2.2
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.2.1...release-7.2.2)

Updates `disnake` from 2.11.0 to 2.12.0
- [Release notes](https://github.com/DisnakeDev/disnake/releases)
- [Changelog](https://github.com/DisnakeDev/disnake/blob/master/RELEASE.md)
- [Commits](DisnakeDev/disnake@v2.11.0...v2.12.0)

Updates `coredis` from 5.5.0 to 6.1.0
- [Release notes](https://github.com/alisaifee/coredis/releases)
- [Changelog](https://github.com/alisaifee/coredis/blob/master/HISTORY.rst)
- [Commits](alisaifee/coredis@5.5.0...6.1.0)

---
updated-dependencies:
- dependency-name: dill
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python
- dependency-name: psutil
  dependency-version: 7.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python
- dependency-name: disnake
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: coredis
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 23, 2026
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 Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants