Skip to content

Bump the python-minor-and-patch group with 5 updates - #57

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/uv/python-minor-and-patch-d422e4b267
Aug 3, 2026
Merged

Bump the python-minor-and-patch group with 5 updates#57
github-actions[bot] merged 1 commit into
mainfrom
dependabot/uv/python-minor-and-patch-d422e4b267

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the python-minor-and-patch group with 5 updates:

Package From To
langchain-core 1.5.0 1.5.1
langchain-openai 1.3.5 1.4.1
fastapi 0.139.2 0.140.0
sphinx-autodoc-typehints 3.12.1 3.13.0
ruff 0.15.22 0.16.0

Updates langchain-core from 1.5.0 to 1.5.1

Release notes

Sourced from langchain-core's releases.

langchain-core==1.5.1

Changes since langchain-core==1.5.0

release(core): 1.5.1 (#39042) feat(anthropic,fireworks,openai): support langsmith gateway through env var (#38742) fix(core): use tool_call_schema cache for BaseTool token counting in count_tokens_approximately (#39020)

Commits
  • eb705ca release(core): 1.5.1 (#39042)
  • d35a4ef feat(anthropic,fireworks,openai): support langsmith gateway through env var (...
  • 64f5ebf chore(model-profiles): refresh model profile data (#39036)
  • 6a97222 fix(core): use tool_call_schema cache for BaseTool token counting in `cou...
  • 1e385eb release(openrouter): 0.2.7 (#39022)
  • 50e9126 fix(anthropic): enable structured output for Claude Opus 4.8 (#39021)
  • 339fcf3 chore(model-profiles): refresh model profile data (#39010)
  • 592055e fix(openai): correct gpt-5.3-chat-latest profile (#39009)
  • 789c6ab release(xai): 1.3.0 (#38984)
  • 8ccd16a release(anthropic): 1.5.0 (#38985)
  • Additional commits viewable in compare view

Updates langchain-openai from 1.3.5 to 1.4.1

Release notes

Sourced from langchain-openai's releases.

langchain-openai==1.4.1

Changes since langchain-openai==1.4.0

release(openai): 1.4.1 (#39045) feat(anthropic,fireworks,openai): support langsmith gateway through env var (#38742) fix(openai): correct gpt-5.3-chat-latest profile (#39009)

langchain-openai==1.4.0

Changes since langchain-openai==1.3.5

release(openai): 1.4.0 (#38983) chore: bump pillow from 12.2.0 to 12.3.0 in /libs/partners/openai (#38999) feat(core): add reasoning_effort as a standard chat model parameter (#38887) chore(model-profiles): refresh model profile data (#38797)

Commits

Updates fastapi from 0.139.2 to 0.140.0

Release notes

Sourced from fastapi's releases.

0.140.0

Refactors

Docs

Internal

Commits

Updates sphinx-autodoc-typehints from 3.12.1 to 3.13.0

Release notes

Sourced from sphinx-autodoc-typehints's releases.

3.13.0

What's Changed

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.11.1...3.13.0

Commits
  • 39e9e1c 👷 ci(python): test against Python 3.15 beta (#735)
  • 6620c76 [pre-commit.ci] pre-commit autoupdate (#734)
  • 1463cb4 Replace prettier with mdformat and yamlfmt (#733)
  • 2275416 🐛 fix(overloads): keep summary above overloads (#731)
  • 543af34 🐛 fix(annotations): use py:class for types on 3.13+ (#732)
  • b9a1be9 build(deps): bump astral-sh/setup-uv from 8.3.1 to 8.3.2 (#729)
  • 18d1350 build(deps): bump astral-sh/setup-uv from 8.3.0 to 8.3.1 (#728)
  • 6f451f9 [pre-commit.ci] pre-commit autoupdate (#727)
  • 0226995 build(deps): bump astral-sh/setup-uv from 8.2.0 to 8.3.0 (#726)
  • 1a53a63 [pre-commit.ci] pre-commit autoupdate (#725)
  • Additional commits viewable in compare view

Updates ruff from 0.15.22 to 0.16.0

Release notes

Sourced from ruff's releases.

0.16.0

Release Notes

Released on 2026-07-23.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now enables a much larger set of rules by default (413, up from 59). See the blog post for more details and the new Default Rules page for a full listing of the enabled rules. Note that this is primarily an expansion, but 18 of the more opinionated pycodestyle (E) and pyflakes (F) rules have been removed from the default set: E401, E402, E701, E702, E703, E711, E712, E713, E714, E721, E731, E741, E742, E743, F403, F405, F406, and F722.

  • Ruff can now format Python code blocks in Markdown files and will do this by default. See the documentation for more details.

  • Ruff now supports ruff: ignore comments at the ends of lines, like noqa comments, or on the line preceding a diagnostic. For example, these both suppress an unused-import (F401) diagnostic:

    import math  # ruff: ignore[F401]
    ruff: ignore[F401]
    import os

  • Fixes are now shown in check and format --check output:

    ruff format --check .
    unformatted: File would be reformatted
     --> try.md:1:1
      |
    1 | ```python
      - import   math
    2 + import math
    3 | ```
      |
    1 file would be reformatted

    This example also shows off the Markdown formatting.

  • format --check now supports the same output formats as the linter, including the github and gitlab outputs for rendering annotations in CI:

    ruff format --check --output-format github .
    ::error title=ruff (unformatted),file=try.md,line=2,col=8,endLine=2,endColumn=10::try.md:2:8: unformatted: File would be reformatted

    See the CLI help or documentation for the full list of supported formats.

  • The filename, location, end_location, fix.edits[].location, and fix.edits[].end_location fields in the JSON output format may now be null rather than defaulting to the empty string and row 1, column 1, respectively.

... (truncated)

Changelog

Sourced from ruff's changelog.

0.16.0

Released on 2026-07-23.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now enables a much larger set of rules by default (413, up from 59). See the blog post for more details and the new Default Rules page for a full listing of the enabled rules. Note that this is primarily an expansion, but 18 of the more opinionated pycodestyle (E) and pyflakes (F) rules have been removed from the default set: E401, E402, E701, E702, E703, E711, E712, E713, E714, E721, E731, E741, E742, E743, F403, F405, F406, and F722.

  • Ruff can now format Python code blocks in Markdown files and will do this by default. See the documentation for more details.

  • Ruff now supports ruff: ignore comments at the ends of lines, like noqa comments, or on the line preceding a diagnostic. For example, these both suppress an unused-import (F401) diagnostic:

    import math  # ruff: ignore[F401]
    ruff: ignore[F401]
    import os

  • Fixes are now shown in check and format --check output:

    ruff format --check .
    unformatted: File would be reformatted
     --> try.md:1:1
      |
    1 | ```python
      - import   math
    2 + import math
    3 | ```
      |
    1 file would be reformatted

    This example also shows off the Markdown formatting.

  • format --check now supports the same output formats as the linter, including the github and gitlab outputs for rendering annotations in CI:

... (truncated)

Commits
  • a2635fd Bump 0.16.0 (#27136)
  • 3433449 [ty] Reuse full call diagnostics for implicit setter calls (#27115)
  • 2240070 Reflect ruff: ignore and --add-ignore stabilization in documentation (#27...
  • 17ef711 Stabilize --add-ignore (#27125)
  • ef912bb Add newly stabilized rules to defaults (#27055)
  • b30f040 Stabilize new default rules (#27035)
  • bcd70c5 Exclude Markdown files from format-dev runs (#27052)
  • 87e51e2 Fix format --check spans for syntax errors (#27045)
  • afe2723 [flake8-gettext] Stabilize qualified-name and built-in binding resolution (...
  • a9702d8 [flake8-bandit] Stabilize string literal binding resolution (S310) (#26944)
  • Additional commits viewable in compare view

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 <dependency name> major version will 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 version will 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

Bumps the python-minor-and-patch group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [langchain-core](https://github.com/langchain-ai/langchain) | `1.5.0` | `1.5.1` |
| [langchain-openai](https://github.com/langchain-ai/langchain) | `1.3.5` | `1.4.1` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.139.2` | `0.140.0` |
| [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) | `3.12.1` | `3.13.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.22` | `0.16.0` |


Updates `langchain-core` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-core==1.5.0...langchain-core==1.5.1)

Updates `langchain-openai` from 1.3.5 to 1.4.1
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-openai==1.3.5...langchain-openai==1.4.1)

Updates `fastapi` from 0.139.2 to 0.140.0
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.139.2...0.140.0)

Updates `sphinx-autodoc-typehints` from 3.12.1 to 3.13.0
- [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases)
- [Commits](tox-dev/sphinx-autodoc-typehints@3.12.1...3.13.0)

Updates `ruff` from 0.15.22 to 0.16.0
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.15.22...0.16.0)

---
updated-dependencies:
- dependency-name: langchain-core
  dependency-version: 1.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-minor-and-patch
- dependency-name: langchain-openai
  dependency-version: 1.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-and-patch
- dependency-name: fastapi
  dependency-version: 0.140.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-and-patch
- dependency-name: sphinx-autodoc-typehints
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-and-patch
- dependency-name: ruff
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-minor-and-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 Aug 3, 2026
@github-actions
github-actions Bot enabled auto-merge (squash) August 3, 2026 02:58
@github-actions
github-actions Bot merged commit e24b385 into main Aug 3, 2026
6 checks passed
@dependabot
dependabot Bot deleted the dependabot/uv/python-minor-and-patch-d422e4b267 branch August 3, 2026 02:58
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.

0 participants