Skip to content

chore(deps): update all non-major documentation dependencies#893

Draft
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/all-minor-patch-documentation
Draft

chore(deps): update all non-major documentation dependencies#893
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/all-minor-patch-documentation

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 6, 2026

This PR contains the following updates:

Package Change Age Confidence
certifi ==2025.10.5==2025.11.12 age confidence
docutils (changelog) ==0.21.2==0.22.4 age confidence
sphinx-rtd-theme ==3.0.2==3.1.0 age confidence
starlette (changelog) ==0.50.0==0.52.1 age confidence
uvicorn (changelog) ==0.38.0==0.44.0 age confidence
zipp ==3.23.0==3.23.1 age confidence

Release Notes

certifi/python-certifi (certifi)

v2025.11.12

Compare Source

readthedocs/sphinx_rtd_theme (sphinx-rtd-theme)

v3.1.0

Compare Source

Kludex/starlette (starlette)

v0.52.1: Version 0.52.1

Compare Source

What's Changed


Full Changelog: Kludex/starlette@0.52.0...0.52.1

v0.52.0: Version 0.52.0

Compare Source

In this release, State can be accessed using dictionary-style syntax for improved type safety (#​3036).

from collections.abc import AsyncIterator
from contextlib import asynccontextmanager
from typing import TypedDict

import httpx

from starlette.applications import Starlette
from starlette.requests import Request

class State(TypedDict):
    http_client: httpx.AsyncClient

@​asynccontextmanager
async def lifespan(app: Starlette) -> AsyncIterator[State]:
    async with httpx.AsyncClient() as client:
        yield {"http_client": client}

async def homepage(request: Request[State]):
    client = request.state["http_client"]
    # If you run the below line with mypy or pyright, it will reveal the correct type.
    reveal_type(client)  # Revealed type is 'httpx.AsyncClient'

See Accessing State for more details.


Full Changelog: Kludex/starlette@0.51.0...0.52.0

v0.51.0: Version 0.51.0

Compare Source

Added

  • Add allow_private_network in CORSMiddleware #​3065.

Changed

  • Increase warning stacklevel on DeprecationWarning for wsgi module #​3082.

New Contributors

Full Changelog: Kludex/starlette@0.50.0...0.51.0

Kludex/uvicorn (uvicorn)

v0.44.0: Version 0.44.0

Compare Source

What's Changed

Full Changelog: Kludex/uvicorn@0.43.0...0.44.0

v0.43.0: Version 0.43.0

Compare Source

Changed

  • Emit http.disconnect ASGI receive() event on server shutting down for streaming responses (#​2829)
  • Use native context parameter for create_task on Python 3.11+ (#​2859)
  • Drop cast in ASGI types (#​2875)

Full Changelog: Kludex/uvicorn@0.42.0...0.43.0

v0.42.0: Version 0.42.0

Compare Source

Changed

  • Use bytearray for request body accumulation to avoid O(n^2) allocation on fragmented bodies (#​2845)

Fixed

  • Escape brackets and backslash in httptools HEADER_RE regex (#​2824)
  • Fix multiple issues in websockets sans-io implementation (#​2825)

New Contributors


Full Changelog: Kludex/uvicorn@0.41.0...0.42.0

v0.41.0: Version 0.41.0

Compare Source

Added

  • Add --limit-max-requests-jitter to stagger worker restarts (#​2707)
  • Add socket path to scope["server"] (#​2561)

Changed

  • Rename LifespanOn.error_occured to error_occurred (#​2776)

Fixed

  • Ignore permission denied errors in watchfiles reloader (#​2817)
  • Ensure lifespan shutdown runs when should_exit is set during startup (#​2812)
  • Reduce the log level of 'request limit exceeded' messages (#​2788)

New Contributors


Full Changelog: Kludex/uvicorn@0.40.0...0.41.0

v0.40.0: Version 0.40.0

Compare Source

What's Changed

Full Changelog: Kludex/uvicorn@0.39.0...0.40.0

v0.39.0: Version 0.39.0

Compare Source

What's Changed

New Contributors

Full Changelog: Kludex/uvicorn@0.38.0...0.39.0

jaraco/zipp (zipp)

v3.23.1

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the documentation Improvements or additions to documentation label Mar 6, 2026
@github-actions github-actions bot added the size:S label Mar 6, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch-documentation branch 2 times, most recently from 707fd4a to 6b21094 Compare March 13, 2026 16:53
@renovate renovate bot force-pushed the renovate/all-minor-patch-documentation branch from 6b21094 to e5473a0 Compare March 16, 2026 09:14
@github-actions
Copy link
Copy Markdown

There hasn't been any activity on this pull request recently. Therefore, this pull request has been automatically marked as stale and will be closed if no further activity occurs within seven days. Thank you for your contributions.

@github-actions github-actions bot added the stale label Mar 23, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch-documentation branch from e5473a0 to 27a76f2 Compare March 25, 2026 16:55
@github-actions github-actions bot removed the stale label Mar 26, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch-documentation branch 3 times, most recently from 318343e to fe87200 Compare March 30, 2026 22:16
@renovate renovate bot force-pushed the renovate/all-minor-patch-documentation branch from fe87200 to 5bc3854 Compare April 3, 2026 18:58
@codacy-production
Copy link
Copy Markdown

codacy-production bot commented Apr 3, 2026

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

🟢 Coverage ∅ diff coverage · +0.00% coverage variation

Metric Results
Coverage variation +0.00% coverage variation (-1.00%)
Diff coverage diff coverage

View coverage diff in Codacy

Coverage variation details
Coverable lines Covered lines Coverage
Common ancestor commit (a1c09b2) 9844 4048 41.12%
Head commit (f119a38) 9844 (+0) 4048 (+0) 41.12% (+0.00%)

Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: <coverage of head commit> - <coverage of common ancestor commit>

Diff coverage details
Coverable lines Covered lines Diff coverage
Pull request (#893) 0 0 ∅ (not applicable)

Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: <covered lines added or modified>/<coverable lines added or modified> * 100%

TIP This summary will be updated as you push new changes. Give us feedback

@renovate renovate bot force-pushed the renovate/all-minor-patch-documentation branch from 5bc3854 to 1c84a7c Compare April 6, 2026 12:41
@renovate renovate bot force-pushed the renovate/all-minor-patch-documentation branch from 1c84a7c to f119a38 Compare April 14, 2026 01:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

documentation Improvements or additions to documentation size:S

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants