Skip to content

[Chore] Bump redis from 8.0.0 to 8.0.1#34

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/redis-8.0.1
Closed

[Chore] Bump redis from 8.0.0 to 8.0.1#34
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/redis-8.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor

Bumps redis from 8.0.0 to 8.0.1.

Release notes

Sourced from redis's releases.

8.0.1

Changes

🐛 Bug Fixes

  • Fix Unix socket maintenance notification handling and tests (#4097)
  • Fix async cluster node connection release on write errors (#4111)
  • Fixed async MultiDBClient with underlying RedisCluster (#4108)
  • Fix hiredis readiness checks for high file descriptors (#4115)
  • fix(search): parse RESP3 FT.SEARCH responses with bytes-typed keys (#4109)
  • Fixing pubsub's listen method to be blocking. (#4119)
  • fix(asyncio): release pooled connection when Pipeline.reset() is cancelled (#4123)
  • Avoid per-check fd allocation in hiredis _socket_can_read() — use poll() instead of a per-call selector (#4118)

🧰 Maintenance

  • Updating PyJWT dependency. (#4100)
  • Update CI badge in README.md (#4099)
  • Add missing url query argument parser for ssl_min_version (#4047)
  • ci: least-privilege permissions on spellcheck (read) and stale-issues (job-level write for actions/stale) (#4080)
  • Bumping github-versions actions (#4102)
  • Updating lib version + supported Redis versions in README.md + updating the Redis versions in CI test matrix (#4092)

We'd like to thank all the contributors who worked on this release! @​violuke @​mokashang @​arpitjain099 @​coredumperror @​elena-kolevska @​vladvildanov @​petyaslavova

Commits
  • 7c0fd11 Updating lib version to 8.0.1
  • b7a4d7d Avoid per-check fd allocation in hiredis _socket_can_read() — use poll() ...
  • eec778e fix(asyncio): release pooled connection when Pipeline.reset() is cancelled (#...
  • 08e01bb Fixing pubsub's listen method to be blocking. (#4119)
  • 3d5257a fix(search): parse RESP3 FT.SEARCH responses with bytes-typed keys (#4109)
  • cce28ff Fix hiredis readiness checks for high file descriptors (#4115)
  • e20691c Fixed async MultiDBClient with underlying RedisCluster (#4108)
  • ea37fcc Fix async cluster node connection release on write errors (#4111)
  • f4146fa Updating lib version + supported Redis versions in README.md + updating the R...
  • d47674e Bumping github-versions actions (#4102)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [redis](https://github.com/redis/redis-py) from 8.0.0 to 8.0.1.
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v8.0.0...v8.0.1)

---
updated-dependencies:
- dependency-name: redis
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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 Jul 13, 2026
MejiroRina added a commit that referenced this pull request Jul 14, 2026
The five dependabot PRs (#34-#38) are green, but they are green against `main` -- which
is 156 commits behind this branch. Three of them land squarely on code this branch just
rewrote, so they were tested here instead, against the code that will actually run:

  * pillow 12.2.0 -> 12.3.0. Pillow is the fallback renderer AND the parity sweep's
    ground truth, so a rendering change would break the gate. Batch-hashing all 63
    Pillow renders under both versions first suggested 8 endpoints had changed -- all
    sk_*, all clock-driven. Rendering sk_line and sk_csb under each version and diffing
    the images settles it: identical in all four channels, zero changed pixels. The
    hash delta was the clock ticking between the two batches, not Pillow.
  * fastapi 0.138 -> 0.139 and granian 2.7.6 -> 2.7.9 touch the response path this
    branch just rewrote (StreamingResponse over BytesIO -> one Response body, worth 32x
    throughput). Verified over real HTTP across 12 endpoints: 200s, correct
    Content-Length, no chunked encoding, every image decodes. tests/test_image_response
    still pins the ASGI body-message count at 1.
  * ruff 0.15.17 -> 0.15.21: no new violations, nothing to reformat.

Gates on the new pins: parity 63/63, warm-cache parity 0 drift, 340 tests, lint and
format clean.

Note redis 8.0.0 -> 8.0.1 (#34) bumps a dependency nothing imports. `redis` appears in
exactly one place in the entire repo: this line of pyproject.toml. Bumped rather than
removed -- that is a call for the owner, not a drive-by.

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
@MejiroRina

Copy link
Copy Markdown
Member

Superseded by #33 (feat/rust-skia-render-ir), where all five bumps are already applied and verified — commit d395dd9.

These PRs are green against main, but main is 156 commits behind #33, and three of the five land directly on code that branch rewrote. So they were tested there, against the code that will actually run:

  • pillow 12.2.0 → 12.3.0 — Pillow is both the fallback renderer and the parity sweep's ground truth. Rendering sk_line and sk_csb under each version and diffing the images: identical in all four channels, zero changed pixels. (A batch hash comparison first suggested 8 endpoints had changed — all of them clock-driven sk_*; that was the clock ticking between the two sampling runs, not Pillow.)
  • fastapi 0.138 → 0.139, granian 2.7.6 → 2.7.9 — both touch the response path [Feat] Rust+Skia rendering for all endpoints (63/63 parity, use_skia_plot on by default) #33 rewrote (StreamingResponse over a BytesIO → a single Response body, worth 32x throughput). Verified over real HTTP across 12 endpoints: 200s, correct Content-Length, no chunked encoding, every image decodes.
  • ruff 0.15.17 → 0.15.21 — no new violations, nothing to reformat.
  • redis 8.0.0 → 8.0.1 — bumped, though nothing in the repo imports redis; it appears in exactly one place, the pyproject.toml line itself.

Gates on the new pins: parity 63/63, warm-cache parity 0 drift, 340 tests, lint and format clean.

Merging these into main separately would only conflict with #33 on pyproject.toml / uv.lock.

@MejiroRina MejiroRina closed this Jul 14, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 14, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/uv/redis-8.0.1 branch July 14, 2026 20:10
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