Skip to content

chore(deps): bump the all-dependencies group with 3 updates - #157

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/all-dependencies-eb559d2da1
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/all-dependencies-eb559d2da1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 16, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on ruff, boto3-stubs[s3] and fakeredis to permit the latest version.
Updates ruff from 0.16.5 to 0.16.7

Release notes

Sourced from ruff's releases.

0.16.7

Release Notes

Released on 2026-09-10.

Preview features

  • [ruff] Add rule for default values on method receivers (RUF077) (#26700)
  • [ruff] Recognize re.prefixmatch (RUF039, RUF055) (#28311)

Bug fixes

  • Alternate nested quotes inside format spec interpolations (#28259)
  • [flake8-implicit-str-concat] Mark fix unsafe when it creates a docstring (ISC003) (#27981)
  • [flake8-tidy-imports] Skip fixes for multi-member imports (TID254) (#26584)
  • [pylint] Gate ImportCycleError on Python 3.15 (PLW0133) (#28310)

Rule changes

  • Correct D211 and D203 rule conflict diagnostic (#28444)
  • Recognize slice and frozendict generics (#28477)
  • Stop defining __cached__ for Python 3.15 (#28476)
  • [pyupgrade] Stop recommending removed typing.no_type_check_decorator (UP035) (#28475)

Performance

  • Reuse parser name lookups when interning (#28399)
  • Speed up inherited configuration resolution (#28299)

Documentation

  • Fix line-length path in --config example (#28392)
  • Remove the "Who’s Using Ruff?" list (#28455)

Other changes

  • Embed archive checksums in the shell installer (#28281)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.16.7

Released on 2026-09-10.

Preview features

  • [ruff] Add rule for default values on method receivers (RUF077) (#26700)
  • [ruff] Recognize re.prefixmatch (RUF039, RUF055) (#28311)

Bug fixes

  • Alternate nested quotes inside format spec interpolations (#28259)
  • [flake8-implicit-str-concat] Mark fix unsafe when it creates a docstring (ISC003) (#27981)
  • [flake8-tidy-imports] Skip fixes for multi-member imports (TID254) (#26584)
  • [pylint] Gate ImportCycleError on Python 3.15 (PLW0133) (#28310)

Rule changes

  • Correct D211 and D203 rule conflict diagnostic (#28444)
  • Recognize slice and frozendict generics (#28477)
  • Stop defining __cached__ for Python 3.15 (#28476)
  • [pyupgrade] Stop recommending removed typing.no_type_check_decorator (UP035) (#28475)

Performance

  • Reuse parser name lookups when interning (#28399)
  • Speed up inherited configuration resolution (#28299)

Documentation

  • Fix line-length path in --config example (#28392)
  • Remove the "Who’s Using Ruff?" list (#28455)

Other changes

  • Embed archive checksums in the shell installer (#28281)

Contributors

... (truncated)

Commits

Updates boto3-stubs[s3] to 1.43.93

Commits

Updates fakeredis from 2.37.1 to 2.38.0

Release notes

Sourced from fakeredis's releases.

v2.38.0 - 2026-09-08

🚀 Features

  • feat: implement Dragonfly's CL.THROTTLE rate-limiting command, ported from Dragonfly's own code so the quirks match — millisecond-ceiling time fields, remaining truncating towards zero, and an over-sized request reporting retry_after = -1 without writing the key (#536)
  • feat(dragonfly): match its errors, validation and limits — backticked unknown-command errors, unsigned numkeys/COUNT, SCAN COUNT 0 falling back to the default batch size, SMOVE checking its destination type up front, no LCS at all, a relative expiry past 2**28-1 seconds clamped while an absolute one is rejected, hash-field TTLs capped at 2**26 seconds, and strings capped at 256MB rather than Redis' 512MB (#555, #556)
  • feat(dragonfly): match the replies it sends — doubles from INCRBYFLOAT/HINCRBYFLOAT, empty arrays from a timed-out blocking pop and from an XREAD/XREADGROUP that matched nothing, ZPOPMIN/ ZPOPMAX always paired under RESP3, flat WITHSCORES from ZUNION/ZINTER, a null first-entry/last-entry for an empty stream, -1 as XINFO GROUPS' unknown-lag sentinel, XPENDING looking up the key before the group, and one namespace for shard and plain pub/sub channels (#557, #558, #559)
  • feat(dragonfly): match its command behaviour — SORT without -> hash-field patterns and without Redis' weight tie-break, COPY without a DB option, GEORADIUS/GEOSEARCH in geohash order unless sorted, a watched key dirtied by any write, Lua 5.4 scripting (non-integral numbers as doubles, Redis 6-style error wrapping, admin commands refused inside scripts), and its own JSON quirks (legacy paths wrapped like JSONPath, no filter expressions) (#560, #561, #562, #563)

🐛 Bug Fixes

  • fix: redis.call in a Lua script now returns RESP2 shapes whatever protocol the client negotiated, matching real Redis, where a script must opt into RESP3. redis.setresp(2)/redis.setresp(3) are now supported and reset to RESP2 for each run. Dragonfly has no redis.setresp, so fakeredis does not expose one when emulating it, and a script returning {double=...} there answers with an empty array the way the real server does (#543)
  • fix: XCLAIM/XAUTOCLAIM now move an entry's pending count to the claiming consumer instead of leaving it on the previous owner, so a later XACK no longer drives that count negative (#548)
  • fix: XACK no longer raises a raw Python KeyError when a pending entry has no live consumer, and XGROUP DELCONSUMER now removes the entries that consumer owned, returning how many it dropped (#549)
  • fix: XCLAIM now honours RETRYCOUNT, and XCLAIM/XAUTOCLAIM honour JUSTID, when updating an entry's delivery counter. RETRYCOUNT takes precedence over JUSTID, and a negative RETRYCOUNT means "not given" (#544)
  • fix: cancelling a blocking async command (BRPOP, BLPOP, XREAD BLOCK 0, ...) no longer leaves the connection unusable — it went back to the pool with its socket still paused, so every later command on it hung (#471)
  • fix: XAUTOCLAIM now returns the cursor its next scan should start from, and 0-0 once the pending list is exhausted (#547)
  • fix: SMOVE no longer raises WRONGTYPE for a wrongly typed destination when the source key is missing, BITCOUNT reports the syntax error before decoding its range arguments on a pre-7.0 server, and GEORADIUS returns an unsorted reply in geohash order rather than insertion order (#553)
  • fix: reap TcpFakeServer handler threads when a client disconnects (#541)

... (truncated)

Commits
  • 18234b0 chore: bump version to 2.38.0
  • b994ff3 add kividb support
  • 38006ed add site/ dir to gitignore
  • 36c1b5c typo in filename
  • c5af047 dependabot issues
  • e109a0c style: wrap comments to the project's 120-column limit
  • 5e02da3 remove unneeded comments
  • ebccad3 remove unneeded comments
  • 5127fe6 fix(dragonfly): a script returning {double=...} answers with an empty array (...
  • c73a6e3 ci: have test.yml call the test-combination.yml workflow (#576)
  • 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

Updates the requirements on [ruff](https://github.com/astral-sh/ruff), [boto3-stubs[s3]](https://github.com/youtype/mypy_boto3_builder) and [fakeredis](https://github.com/cunla/fakeredis-py) to permit the latest version.

Updates `ruff` from 0.16.5 to 0.16.7
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.16.5...0.16.7)

Updates `boto3-stubs[s3]` to 1.43.93
- [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
- [Commits](https://github.com/youtype/mypy_boto3_builder/commits)

Updates `fakeredis` from 2.37.1 to 2.38.0
- [Release notes](https://github.com/cunla/fakeredis-py/releases)
- [Commits](cunla/fakeredis-py@v2.37.1...v2.38.0)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.16.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: boto3-stubs[s3]
  dependency-version: 1.43.93
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: fakeredis
  dependency-version: 2.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants