chore(deps): bump the python-minor-and-patch group with 4 updates#789
Merged
rafeekpro merged 5 commits intoJun 17, 2026
Merged
Conversation
Bumps the python-minor-and-patch group with 4 updates: [fastapi](https://github.com/fastapi/fastapi), [langgraph](https://github.com/langchain-ai/langgraph), [anthropic](https://github.com/anthropics/anthropic-sdk-python) and [openai](https://github.com/openai/openai-python). Updates `fastapi` from 0.136.3 to 0.137.0 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](fastapi/fastapi@0.136.3...0.137.0) Updates `langgraph` from 1.2.4 to 1.2.5 - [Release notes](https://github.com/langchain-ai/langgraph/releases) - [Commits](langchain-ai/langgraph@1.2.4...1.2.5) Updates `anthropic` from 0.107.1 to 0.109.1 - [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases) - [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md) - [Commits](anthropics/anthropic-sdk-python@v0.107.1...v0.109.1) Updates `openai` from 2.41.0 to 2.41.1 - [Release notes](https://github.com/openai/openai-python/releases) - [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md) - [Commits](openai/openai-python@v2.41.0...v2.41.1) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.137.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor-and-patch - dependency-name: langgraph dependency-version: 1.2.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-minor-and-patch - dependency-name: anthropic dependency-version: 0.109.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor-and-patch - dependency-name: openai dependency-version: 2.41.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
fastapi 0.137 (#15745) refactored router internals: ``router.routes`` is no longer a flat list of ``APIRoute`` objects and now contains ``_IncludedRouter`` wrappers that expose their effective leaves via ``effective_candidates()`` (each an ``_EffectiveRouteContext`` carrying the rendered ``path``). The OAuth-routes smoke test iterated ``app.routes`` and read ``.path`` on every entry, which broke with ``AttributeError: '_IncludedRouter' object has no attribute 'path'``. Replace the comprehension with a recursive walker that descends through ``effective_candidates()`` (the new fastapi 0.137 wrapper API) or ``.routes`` (legacy) and only collects entries that carry a ``.path``. Also reconciles ``uv.lock`` with develop's ``dap-database`` workspace addition so ``uv lock --check`` is green. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
5 tasks
Mypy strict mode flagged the new helper as missing a parameter annotation. Type the iterable of route-like objects as ``Iterable[Any]`` — they can be ``APIRoute``, ``Mount``, ``_IncludedRouter``, or ``_EffectiveRouteContext`` depending on fastapi version and tree depth. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
rafeekpro
added a commit
that referenced
this pull request
Jun 17, 2026
…lear active CVEs (#791) * fix(security): floor cryptography / python-multipart / starlette to clear active CVEs Develop's Python deps CVE scan started failing after fresh advisories were published against transitive dependencies. None of these were explicitly pinned in apps/engine/pyproject.toml at versions above the patched floor, so 'uv lock' was happily resolving the vulnerable versions and the gate was blocking every Python PR (#789, #790, plus any future ones). Add explicit floors: - cryptography>=48.0.1 GHSA-537c-gmf6-5ccf - python-multipart>=0.0.31 CVE-2026-53538/53539/53540 - starlette>=1.3.1 CVE-2026-54282/54283 Resolution result (uv.lock): cryptography 48.0.0 -> 49.0.0 python-multipart 0.0.28 -> 0.0.32 starlette 1.1.0 -> 1.3.1 Smoke-test sweep on the bumped resolution passes the same set develop passes today — the two failures observed (test_assistant test_chat_returns_assistant_message and test_error_explainer test_explain_endpoint_ai_falls_back_to_deterministic_without_provider) also fail on develop verbatim, are unrelated to the bumps, and stem from a pre-existing GLM provider auto-detection bug. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * chore(types): wrap status-code range comparisons in bool() Starlette 1.3 ships stricter type stubs and httpx now returns ``Any`` for ``response.status_code`` in some contexts, so the ``return 200 <= response.status_code < 300`` pattern in the standalone JWT-login helpers trips mypy's ``no-any-return``. Explicit ``bool(...)`` keeps the semantics identical and gives mypy a concrete annotation without an ``# type: ignore`` escape hatch. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Collaborator
|
@dependabot rebase |
Contributor
Author
|
Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry! If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request |
rlagowski
approved these changes
Jun 17, 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.
Bumps the python-minor-and-patch group with 4 updates: fastapi, langgraph, anthropic and openai.
Updates
fastapifrom 0.136.3 to 0.137.0Release notes
Sourced from fastapi's releases.
... (truncated)
Commits
9a9c4ad🔖 Release version 0.137.0 (#15748)c6d5897📝 Update release notes31d097f📝 Update release notes (#15747)ba609a8📝 Update release notes8e1d774♻️ Refactor internals to preserveAPIRouterandAPIRouteinstances (#15745)016ab76📝 Update release notese2fcd55🔧 Update sponsors: remove TalorData (#15744)d3e6a29📝 Update release notese4b6a36🔧 Update sponsors: remove ExoFlare (#15736)944fb70📝 Update release notesUpdates
langgraphfrom 1.2.4 to 1.2.5Release notes
Sourced from langgraph's releases.
Commits
7ab79f9release(langgraph): 1.2.5 (#8062)385033ffix(langgraph): mergelc_versionsconfig metadata (#8052)93307d6release(cli): 0.4.29 (#8046)e05ba29feat(cli): add support for passing certfile and cert key to run dev server un...f0e8147release(cli): 0.4.28 (#8041)d57a74ffix: updateState bug for deltaChannel on empty thread (#8011)6f83cc9chore(deps): bump starlette from 1.0.0 to 1.0.1 in /libs/cli (#8005)2ae62c6chore(deps-dev): bump starlette from 1.0.0 to 1.0.1 in /libs/sdk-py (#8006)2b1abc8chore: migrate Python type checking to ty (#8002)43682f0chore(deps): bump the minor-and-patch group in /libs/cli with 4 updates (#7962)Updates
anthropicfrom 0.107.1 to 0.109.1Release notes
Sourced from anthropic's releases.
Changelog
Sourced from anthropic's changelog.
Commits
992f11crelease: 0.109.12ff6aeefix(api): addfrontier_llmrefusal category42704bcrelease: 0.109.079c22fcfeat(api): add support for Managed Agents deployments and environment variabl...402be64release: 0.108.0 (#1667)Updates
openaifrom 2.41.0 to 2.41.1Release notes
Sourced from openai's releases.
Changelog
Sourced from openai's changelog.
Commits
7198756release: 2.41.13842a5eci: use PyPI trusted publishing (#3365)2a91011build: Remove scheduled release workflow trigger (#3366)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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