Update Python dependencies#270
Merged
Merged
Conversation
anuraaga
approved these changes
Jun 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.70.0→==1.71.0==2.0.4→==2.0.5==9.1.0→==9.1.1==0.3.0→==0.4.0==0.15.17→==0.15.18==1.1.3→==1.1.4==0.0.49→==0.0.51==0.0.45→==0.0.46Release Notes
bufbuild/buf (buf-bin)
v1.71.0Compare Source
mkdocstrings/python (mkdocstrings-python)
v2.0.5Compare Source
Compare with 2.0.4
Bug Fixes
pytest-dev/pytest (pytest)
v9.1.1Compare Source
pytest 9.1.1 (2026-06-19)
Bug fixes
pytest.RaisesGroupwhich would might cause it to display incorrect "It matches FooError() which was paired with BarError" messages.list-itemtyping errors from mypy in@pytest.mark.parametrize <pytest.mark.parametrize ref>argvaluesparameter.conftest.pyfiles located in<invocation dir>/test*were no longer loaded as initial conftests when invoked without arguments.This could cause certain hooks (like
pytest_addoption) in these files to not fire.curioswitch/pyvoy (pyvoy)
v0.4.0Compare Source
This is a very large release, continuing pyvoy's vision of using Envoy as a standard library for networking operations. Aside from updating Envoy to 1.38, there are two big features in this release.
Websockets
pyvoy now supports ASGI websockets - they have been implemented as a Envoy network filter. Envoy does not have support for websockets, so unlike with normal HTTP servers, we get less features from it, but can still take advantage of it's robust TCP stack and network level controls. The websockets implementation itself is tungstenite, a popular Rust library for websockets. We have patched in support for per-message-deflate so compression is supported. The implementation passes the full autobahn testsuite.
HTTP client
pyvoy now also includes a custom transport for use with pyqwest. The transport uses Envoy itself for outbound HTTP calls. While pyqwest's Rust stack is already quite robust, this is still useful for keeping all I/O on one stack, and Envoy still has some great features like circuit breakers, etc built in. Notably, the clients will do client-side load balancing via DNS, possibly the first such client in Python. This is particularly useful when using HTTP/2.
One hard limitation on the HTTP client is because it is driven by callbacks in the Envoy request handler, any client call is tied to the request handler's lifecycle, meaning fire-and-forget type of invocations are not supported. The response must complete before the application request handler does. For fire-and-forget invocations, use a normal Pyqwest transport - nothing stops from having multiple clients as needed.
The HTTP client currently only supports ASGI - WSGI will come soon.
New Contributors
Full Changelog: curioswitch/pyvoy@v0.3.0...v0.4.0
astral-sh/ruff (ruff)
v0.15.18Compare Source
Released on 2026-06-18.
Preview features
ruff:ignorecomments (#25791)pydocstyle] Prevent property docstrings starting with verbs (D421) (#23775)flake8-pyi] ExtendPYI033to Python files (#26129)Bug fixes
Rule changes
flake8-pyi] RenamePYI033tolegacy-type-comment(#26131)Performance
ThinVecfor call keywords (#25999)Server
Documentation
flake8-tidy-imports] Add fix safety section (TID252) (#17491)Parser
__debug__lambda parameters (#26022)_as a match-pattern target (#25977)yieldexpressions after commas (#26024)Playground
Contributors
tombi-toml/tombi (tombi)
v1.1.4Compare Source
What's Changed
🐛 Bug Fixes
👒 Dependencies
🛠️ Other Changes
Full Changelog: tombi-toml/tombi@v1.1.3...v1.1.4
astral-sh/ty (ty)
v0.0.51Compare Source
Released on 2026-06-18.
Bug fixes
Annotated[Any, ...]as a class base (#26133)LSP server
Core type checking
AnyorUnknownbases are descriptors (#26120)Diagnostics
Performance
Documentation
Contributors
v0.0.50Compare Source
Released on 2026-06-17.
Bug fixes
Finalas a special form on hover (#26029)LSP server
TYPE_CHECKING(#26051)Diagnostics
duplicate-basediagnostics (#26107)@no_type_checkin function validation (#25994)Performance
Core type checking
&and~(#26035)==,!=, andmatch(#25788)__match_args__(#25934)Contributors
zensical/zensical (zensical)
v0.0.46: 0.0.46Compare Source
Summary
This version improves search result quality and includes several bug fixes and refactorings.
Search excerpts
Search results now include excerpts, making it easier to understand why a result matches. Search remains fully client-side and as fast as before, even for projects with thousands of pages. We still consider search an active area of iteration and expect to further improve it and expose more configuration options over time.
Try it in our documentation!
User interface
The user interface is updated to v0.0.19, which includes several navigation and interaction fixes. Search highlighting now ignores single-character tokens, which avoids noisy matches like highlighting every
efor queries such ase-mail. Instant previews now include a hover bridge so moving the cursor from a link to the tooltip no longer drops the popup across the visual gap.Dependencies were also updated, including TypeScript 6 and SVGO 4 compatibility adjustments. 83 new icons were added, 2 icons were removed, and 19 icons were modified. The Lucide icon set was updated to version v1.21.0.
Validation defaults
The validation options
unresolved_references,unresolved_footnotes,unused_definitions,unused_footnotes,shadowed_definitions, andshadowed_footnotesare now disabled by default. These checks remain available when explicitly enabled, but they have proven too unstable in edge cases with the current reference parser. They will eventually be superseded by the higher-fidelity parser that is already used by Zensical Studio and is planned for Open Source release and later integration into Zensical.Changelog
Bug fixes
aeb31adui – update ui to v0.0.1961b6d05compat – preservesmalltags in generated search indexedb0878zensical – search path segment is empty when title is sourced from section index page909f973compat – don't crash on invalid URLs in HTML (#755)e6b55fecompat – strip images from toc labels (#749)0f11c7f– updatepyo3to0.29.0to mitigate 2 vulnerabilitiesRefactorings
e4a370fzensical, compat – change several validation defaults to false (#758)Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 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.
This PR was generated by Mend Renovate. View the repository job log.