fix(deps): update non-major python dependencies#135
Merged
Conversation
Contributor
Vulnerability Scan: PassedImage:
Commit: 9477c7e |
af6d876 to
940baa8
Compare
c9c1bbd to
8d2652d
Compare
8d2652d to
77e666e
Compare
77e666e to
72ee887
Compare
abubnalitic-nbl
approved these changes
May 27, 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:
>=3.2.4,<4→>=3.3.1,<4>=2.13.3→>=2.13.4>=2.14.0→>=2.14.1>=9.0.2→>=9.0.3>=0.15.12→>=0.15.14Release Notes
PrefectHQ/fastmcp (fastmcp)
v3.3.1: : Loop There It IsCompare Source
FastMCP 3.3.1 is a hotfix for the 3.3 packaging split. Clean installs of 3.3.0 could fail on standalone component imports like
from fastmcp.tools import toolbecause component modules reached auth and task primitives throughfastmcp.server, pulling in the server/provider stack and exposing a circular import.Component-level auth and task primitives now live in lightweight utility modules, with the old server import paths preserved as compatibility re-exports. Component imports stay lightweight, existing server-facing imports continue to work, and the release also includes small docs corrections from the 3.3 rollout.
What's Changed
Fixes 🐞
Full Changelog: PrefectHQ/fastmcp@v3.3.0...v3.3.1
v3.3.0: : Slim ReaperCompare Source
FastMCP 3.3 ships
fastmcp-slim, a new lightweight distribution that separates the client from the server stack. It also closes out a meaningful backlog of security hardening, observability improvements, and auth additions that accumulated through the 3.2 cycle.fastmcp-slim
The full FastMCP package pulls in Starlette, Uvicorn, and the rest of the server machinery — necessary for running a server, but wasteful if you're writing a client, a script, or an agent that just needs to talk to MCP.
fastmcp-slimis a dependency-light distribution that ships the client and transport layer without any of that.The import namespace is unchanged:
Install
fastmcp-slim[client]anywhere you want FastMCP's client without the server footprint — CI environments, lightweight agents, library dependencies that shouldn't force Uvicorn on downstream users.Security
The OAuth proxy received three hardening upgrades. Silent consent is now guarded against AS-in-the-middle attacks — a malicious authorization server can no longer silently approve a consent it wasn't meant to handle. Redirect URI allowlist matching now rejects dot-segment paths (
/../,/./) that could otherwise bypass prefix checks. AndResponseCachingMiddlewarepartitions its cache by access token, closing a gap where different users could see each other's cached responses.Auth
AzureB2CProvideradds first-class support for Azure AD B2C user flows. The OCI provider is fixed for 3.x installs. AndOAuthProxygains a publicupdate_scopes()API for updating the proxy's required scopes after initialization — useful for servers that determine scope requirements at runtime.Observability
OTEL instrumentation is now fully compliant with MCP semantic conventions. List operations (
list_tools,list_resources,list_prompts,list_resource_templates) are instrumented, and delegate spans on proxy servers are enriched with backend attributes.Thread Affinity
Sync tools run in a thread pool by default. If your tool holds thread-local state or is bound to a specific thread (UI frameworks, some database drivers), you can now opt out:
Under the Hood
Docket is now reentrant, and mounted servers enter their own lifespan — so a server with startup/shutdown logic works correctly when composed into a larger server. The
FastMCPconstructor acceptsexperimental_capabilitiesfor passing raw capability flags. Tool errors accept alog_levelparameter to control how they're logged.FormInputsupports a default prefill value.Fixes: ping loop now exits cleanly when a stream closes; sampling from background tasks works correctly; Windows startup no longer crashes on non-UTF-8 console output; blank query string values are preserved in OpenAPI routing;
$defsintroduced byArgTransformare hoisted to the schema root; HTTP transports are terminated before lifespan shutdown.13 new contributors this release.
What's Changed
New Features 🎉
Enhancements ✨
Security 🔒
Fixes 🐞
Docs 📚
Dependencies 📦
Other Changes 🦾
New Contributors
Full Changelog: PrefectHQ/fastmcp@v3.2.4...v3.3.0
pydantic/pydantic (pydantic)
v2.13.4Compare Source
GitHub release
What's Changed
Packaging
pydantic-corelinker flags on macOS by @washingtoneg and @Viicos in #13147Fixes
RootModelcore metadata by @Viicos in #13129pydantic/pydantic-settings (pydantic-settings)
v2.14.1Compare Source
What's Changed
clsconflicting with classmethod parameter by @hramezani in #858Full Changelog: pydantic/pydantic-settings@v2.14.0...v2.14.1
astral-sh/ruff (ruff)
v0.15.14Compare Source
Released on 2026-05-21.
Preview features
airflow] Implementairflow-task-implicit-multiple-outputs(AIR202) (#25152)flake8-use-pathlib] MarkPTH101fix as unsafe when first argument is a class attribute annotated asint(#25086)pylint] Implementtoo-many-try-statements(W0717) (#23970)ruff] Addincorrect-decorator-order(RUF074) (#23461)ruff] Addfallible-context-manager(RUF075) (#22844)Bug fixes
frozensetannotations as immutable (#25251)flake8-type-checking] Avoidstrictbehavior whenfuture-annotationsare enabled (TC001,TC002,TC003) (#25035)pylint] Avoid false positives inelseclause (PLR1733) (#25177)Rule changes
flake8-comprehensions] SkipC417for lambdas with positional-only parameters (#25272)flake8-simplify] Preserve f-string source verbatim inSIM101fix (#25061)Performance
Documentation
Other changes
ruff_python_stdlibAPIs (#25273)Contributors
v0.15.13Compare Source
Released on 2026-05-14.
Preview features
pylint] Standardize diagnostic message (PLR0914,PLR0917) (#24996)Bug fixes
F811false positive for class methods (#24933)eradicate] Fix false positive for lines with leading whitespace (ERA001) (#25122)flake8-pyi] Fix false positive for f-string debug specifier (PYI016) (#24098)Rule changes
PYI034for in-place operations to enclosing class (#24511)global(#24902)Performance
isort] Avoid constructingglob::Patterns for literal known modules (#25123)CLI
--confighelp text (#25013)Configuration
line-lengthsetting (#24962)Documentation
D203to rules that conflict with the formatter (#25044)COM819and formatter interaction (#25045)NotImplementedis a value, not an exception (F901) (#25054)Other changes
Contributors
Configuration
📅 Schedule: (in timezone UTC)
🚦 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 has been generated by Mend Renovate.