Skip to content

chore(deps): bump the all-dependencies group across 1 directory with 26 updates - #178

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/libs/bog-agents/all-dependencies-20b1dde732
Open

chore(deps): bump the all-dependencies group across 1 directory with 26 updates#178
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/libs/bog-agents/all-dependencies-20b1dde732

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the all-dependencies group with 26 updates in the /libs/bog-agents directory:

Package From To
anyio 4.13.0 4.14.2
langchain-core 1.5.1 1.5.3
langgraph 1.2.9 1.2.10
langchain-anthropic 1.5.2 1.5.3
langchain-google-genai 4.3.1 4.3.2
uvicorn 0.47.0 0.52.0
sse-starlette 3.4.4 3.4.6
pypdf 6.13.3 6.14.2
av 17.1.0 18.0.0
langsmith 0.10.10 0.10.14
langchain-aws 1.5.0 1.6.4
langchain-openai 1.2.1 1.4.1
pytest 9.0.3 9.1.1
pytest-socket 0.7.0 0.8.0
ruff 0.15.13 0.16.1
ty 0.0.37 0.0.65
pytest-asyncio 1.3.0 1.4.0
twine 6.2.0 7.0.0
langchain-xai 1.2.2 1.3.0
langchain-mistralai 1.1.4 1.1.6
langchain-deepseek 1.0.1 1.1.0
langchain-groq 1.1.2 1.1.3
langchain-fireworks 1.3.1 1.5.2
langchain-baseten 0.2.0 0.2.3
datasets 4.8.5 5.0.1
aiohttp 3.14.1 3.14.3

Updates anyio from 4.13.0 to 4.14.2

Release notes

Sourced from anyio's releases.

4.14.2

  • Changed ByteReceiveStream.receive() implementations to raise a ValueError when max_bytes is not a positive integer (#1191)
  • Fixed CapacityLimiter.total_tokens rejecting float("inf") when the limiter was instantiated outside of an event loop. The adapter setter checked for infinity by identity (value is math.inf), so only the exact math.inf singleton was accepted, while every backend setter (using math.isinf()) accepts any positive infinity (#1189; PR by @​greymoth-jp).
  • Fixed to_process.run_sync() deadlocking when the worker function writes enough data to sys.stderr to fill the (undrained) pipe buffer. The worker process now redirects sys.stderr to os.devnull as well, matching the documented behavior
  • Fixed TLSStream.wrap() matching an internationalized (unicode) host name against the peer certificate using IDNA 2003 (via the standard library) instead of IDNA 2008, which could cause the host name to be matched against the wrong certificate (#1208)
  • Fixed anyio.open_process() (and run_process()) ignoring the extra_groups argument, as it mistakenly passed the value of the group argument instead (#1209)
  • Fixed CapacityLimiter.acquire_nowait() and CapacityLimiter.acquire_nowait_on_behalf_of() raising trio.WouldBlock instead of anyio.WouldBlock on the trio backend when there are no tokens available (#1218)
  • Fixed CapacityLimiter on the asyncio backend over-granting tokens (borrowed_tokens exceeding total_tokens and available_tokens going negative) when a non-blocking acquire was made in the window between a token being released and the notified waiter resuming. The freed token is now reserved for the woken waiter right away, so the non-blocking acquire correctly raises WouldBlock (#1170; PR by @​gaoflow)
  • Fixed unnecessary CPU spin when delivering cancellation from CancelScope on asyncio under certain conditions, including improper cancel scope nesting (#1111)

4.14.1

  • Fixed teardown of higher-scoped async fixtures failing on asyncio with RuntimeError: Attempted to exit cancel scope in a different task than it was entered in when an async test raise an outcome exception (e.g., pytest.skip(), pytest.xfail(), or pytest.fail()) (#1179; PR by @​EmmanuelNiyonshuti)
  • Fixed CapacityLimiter.total_tokens rejecting a value of 0 when the limiter was instantiated outside of an event loop, contradicting the documented behavior of allowing 0 total tokens (#1183; PR by @​nyxst4ck)

4.14.0

  • Added support for Python 3.15

  • Added an asynchronous implementation of the itertools module (#998; PR by @​11kkw)

  • Added the local_port parameter to connect_tcp() to allow binding to a specific local port before connecting (#1067; PR by @​nullwiz)

  • Added support for custom capacity limiters in async path and file I/O functions and classes

  • Added the create_task() task group method for easier asyncio migration (returns a TaskHandle) (#1098)

  • Changed TaskGroup.start_soon() to return a TaskHandle

  • Added an option for TaskGroup.start() to return a TaskHandle (which then contains the start value in the start_value property)

  • Added the cancel() convenience method to TaskGroup as a shortcut for cancelling the task group's cancel scope

  • Improved the error message when a known backend is not installed to suggest the install command (#1115; PR by @​EmmanuelNiyonshuti)

  • Improved anyio.Path to preserve subclass types by returning Self in methods that return path objects (#1130; PR by @​EmmanuelNiyonshuti)

  • Changed the parameter type annotation in anyio.Path.write_bytes() to accept any ReadableBuffer, thus allowing it to accept bytearray and memoryview to match pathlib.Path.write_bytes() (#1135; PR by @​SAY-5)

  • Changed several type annotations to only accept callables returning coroutine-like objects instead of arbitrary awaitables:

    • TaskGroup.start_soon()
    • TaskGroup.start()
    • anyio.from_thread.run()

    This reverts an earlier change from v3.7.0 which was made in error. (#1153)

  • Changed anyio.run to support callables returning arbitrary awaitables at runtime on all backends. Previously, this only worked on asyncio (#1171; PR by @​gschaffner)

  • Changed several classes (and their subclasses) to have __slots__ (with __weakref__):

    • anyio.CancelScope

... (truncated)

Commits
  • c384f99 Bumped up the version
  • dbba29d Fixed 100% CPU spin on cancel scope misuse (#1217)
  • 6bbc6c3 Fix CapacityLimiter over-granting tokens on asyncio (#1172)
  • 6f82b25 Refactored TestTLSStream.test_receive_invalid_max_bytes() to be less flaky
  • be24b04 Relaxed timeouts to fix test flakiness
  • 8113506 Fix test flakiness caused by slow callback duration logging
  • 1e988b6 Fixed CapacityLimiter raising trio.WouldBlock instead of anyio.WouldBlock (#1...
  • 44713f3 Pin setup-uv to a commit sha across downstream jobs (#1213)
  • f1b7301 Fixed stderr writes in a worker subprocess causing a deadlock (#1207)
  • 212be93 Fix flaky test_tcp_listener_same_port using a hardcoded port (#1206)
  • Additional commits viewable in compare view

Updates langchain-core from 1.5.1 to 1.5.3

Release notes

Sourced from langchain-core's releases.

langchain-core==1.5.3

Changes since langchain-core==1.5.2

release(core): 1.5.3 (#39145) fix(core): fall back to LANGSMITH_API_KEY for gateway (#39115)

langchain-core==1.5.2

Changes since langchain-core==1.5.1

release(core): 1.5.2 (#39108) fix(core): handle empty string in gateway env vars (#39107) chore: bump setuptools from 82.0.0 to 83.0.0 in /libs/core (#39032) chore: bump jupyterlab from 4.5.9 to 4.5.10 in /libs/core (#39033) chore: bump setuptools from 80.9.0 to 83.0.0 in /libs/text-splitters (#39029)

Commits
  • 01d8481 release(core): 1.5.3 (#39145)
  • b8a6e36 chore(model-profiles): refresh model profile data (#39141)
  • cdca311 fix(core): fall back to LANGSMITH_API_KEY for gateway (#39115)
  • a5a8762 ci: annotate uv bump workflow with PR links (#39112)
  • 557c0a9 chore(deps): bump uv to 0.12.0 (#39111)
  • 835c85a release(anthropic): 1.5.3 (#39109)
  • c1ab807 release(core): 1.5.2 (#39108)
  • 3132233 fix(anthropic): preserve empty thinking field in signature_delta streaming (#...
  • b3a6d9a chore(model-profiles): refresh model profile data (#39105)
  • 447b51a fix(anthropic): strip unsupported fields from system message content blocks (...
  • Additional commits viewable in compare view

Updates langgraph from 1.2.9 to 1.2.10

Release notes

Sourced from langgraph's releases.

langgraph==1.2.10

Changes since 1.2.9

  • release(langgraph): 1.2.10 (#8462)
  • chore(deps): bump jupyterlab from 4.5.9 to 4.5.10 in /libs/langgraph (#8440)
  • chore(deps): bump setuptools from 80.9.0 to 83.0.0 in /libs/langgraph (#8435)
  • feat(langgraph): type v3 stream_events return and native projections (#8389)
  • revert(langgraph): delete TracePolicy (#8403)
  • feat(langgraph): drop tags from TracePolicy (#8402)
  • feat(langgraph): expose trace_policy on add_node (#8362)
  • chore(deps): bump mistune from 3.2.1 to 3.3.0 in /libs/langgraph (#8317)
  • chore(deps): bump soupsieve from 2.8.1 to 2.8.4 in /libs/langgraph (#8318)
  • chore(cli): allow langgraph-api versions up to 1.0.0 (#8319)
Commits
  • 4134145 release(langgraph): 1.2.10 (#8462)
  • 30c4d58 chore(deps): bump jupyterlab from 4.5.9 to 4.5.10 in /libs/langgraph (#8440)
  • 1f2f88b chore(deps): bump js-yaml from 4.2.0 to 4.3.0 in /libs/cli/js-monorepo-exampl...
  • 2708203 chore(deps): bump setuptools from 82.0.1 to 83.0.0 in /libs/cli (#8434)
  • 9f1e40b chore(deps): bump setuptools from 80.9.0 to 83.0.0 in /libs/langgraph (#8435)
  • 1e1ca88 feat(langgraph): type v3 stream_events return and native projections (#8389)
  • 31f90df revert(langgraph): delete TracePolicy (#8403)
  • f02c0f0 feat(langgraph): drop tags from TracePolicy (#8402)
  • 8b39db3 feat(langgraph): expose trace_policy on add_node (#8362)
  • 9578140 feat(checkpoint,checkpoint-postgres): add opt-in omit_expired to skip expired...
  • Additional commits viewable in compare view

Updates langchain-anthropic from 1.5.2 to 1.5.3

Release notes

Sourced from langchain-anthropic's releases.

langchain-anthropic==1.5.3

Changes since langchain-anthropic==1.5.2

release(anthropic): 1.5.3 (#39109) fix(anthropic): preserve empty thinking field in signature_delta streaming (#38765) fix(anthropic): strip unsupported fields from system message content blocks (#39101)

Commits
  • 835c85a release(anthropic): 1.5.3 (#39109)
  • c1ab807 release(core): 1.5.2 (#39108)
  • 3132233 fix(anthropic): preserve empty thinking field in signature_delta streaming (#...
  • b3a6d9a chore(model-profiles): refresh model profile data (#39105)
  • 447b51a fix(anthropic): strip unsupported fields from system message content blocks (...
  • 55af8a4 fix(core): handle empty string in gateway env vars (#39107)
  • 7316020 fix(ci): repair model profile refresh workflow expressions (#39095)
  • a24f9eb ci: add provider filter to model profile refresh workflow (#39094)
  • 40956c3 release(fireworks): 1.5.2 (#39093)
  • 828335a chore(model-profiles): refresh model profile data (#39092)
  • Additional commits viewable in compare view

Updates langchain-google-genai from 4.3.1 to 4.3.2

Release notes

Sourced from langchain-google-genai's releases.

langchain-google-genai==4.3.2

Changes since libs/genai/v4.3.1

release(genai): 4.3.2 (#1911) feat(genai): support langsmith gateway through env var (#1907) chore: bump pyasn1 from 0.6.3 to 0.6.4 in /libs/genai (#1901)

Commits
  • 942b7cc release(genai): 4.3.2 (#1911)
  • f2e9511 feat(genai): support langsmith gateway through env var (#1907)
  • fca4dd1 chore: bump httplib2 from 0.31.0 to 0.32.0 in /libs/vertexai (#1908)
  • 0186e94 chore: bump httplib2 from 0.31.0 to 0.32.0 in /libs/community (#1909)
  • 9b0571f chore: bump pillow from 12.2.0 to 12.3.0 in /libs/community (#1904)
  • b25d4a9 chore: bump pyasn1 from 0.6.3 to 0.6.4 in /libs/community (#1902)
  • 4f7aa69 chore: bump pyasn1 from 0.6.3 to 0.6.4 in /libs/vertexai (#1903)
  • c21a59b chore: bump pyasn1 from 0.6.3 to 0.6.4 in /libs/genai (#1901)
  • See full diff in compare view

Updates uvicorn from 0.47.0 to 0.52.0

Release notes

Sourced from uvicorn's releases.

Version 0.52.0

This release adds an experimental HTTP/1.1 implementation backed by zttp, a sans-IO HTTP parser I've been developing on the side: a core written in Zig, with bindings to Python. It has been running under a fuzzer for some weeks now, and has been through multiple rounds of security auditing.

It is still experimental, so don't put it in front of production traffic yet. Try it with --http zttp, and please send any feedback to the issue tracker.

Added

  • Add an experimental zttp HTTP/1.1 implementation, selectable with --http zttp (#2979)

Fixed

  • Keep non-ASCII WebSocket request headers intact with websockets 17.0, which encodes them with ISO-8859-1 (#3036)

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

Version 0.51.0

What's Changed

Full Changelog: Kludex/uvicorn@0.50.2...0.51.0

Version 0.50.1

What's Changed

New Contributors

Full Changelog: Kludex/uvicorn@0.50.0...0.50.1

Version 0.50.0

What's Changed

Full Changelog: Kludex/uvicorn@0.49.0...0.50.0

Version 0.49.0

What's Changed

... (truncated)

Changelog

Sourced from uvicorn's changelog.

0.52.0 (July 29, 2026)

This release adds an experimental HTTP/1.1 implementation backed by zttp, a sans-IO HTTP parser I've been developing on the side: a core written in Zig, with bindings to Python. It has been running under a fuzzer for some weeks now, and has been through multiple rounds of security auditing.

It is still experimental, so don't put it in front of production traffic yet. Try it with --http zttp, and please send any feedback to the issue tracker.

Added

  • Add an experimental zttp HTTP/1.1 implementation, selectable with --http zttp (#2979)

Fixed

  • Keep non-ASCII WebSocket request headers intact with websockets 17.0, which encodes them with ISO-8859-1 (#3036)

0.51.0 (July 8, 2026)

Added

  • Restart workers one at a time on SIGHUP, bringing each replacement up before retiring the old worker, so reloads no longer drop requests (#3025)

Removed

  • Remove colorama from the standard extra (#3027)

0.50.2 (July 6, 2026)

Fixed

  • Require websockets>=13.0, which the default websockets-sansio implementation needs (#3021)

0.50.1 (July 6, 2026)

Fixed

  • Split comma-separated Sec-WebSocket-Protocol values in the websockets-sansio implementation (#3019)

0.50.0 (July 4, 2026)

If you use WebSockets, note that --ws auto now picks the websockets-sansio implementation. You shouldn't need it, but you can pin --ws websockets to get the deprecated legacy one back.

Changed

  • Exit with the dedicated code 3 on any startup failure: app loading, socket bind and lifespan startup errors previously exited with a mix of 0, 1 and 3 (#3001)
  • Stop the multiprocess supervisor when a worker exits with code 3 instead of restarting it forever (#3001)
  • Default --ws auto to websockets-sansio when websockets is installed (#2985)
  • Skip the eager app import in the parent process with --reload or --workers, fixing a memory regression introduced in 0.47.0 (#3012)
  • Build a fresh asgi scope dict per request (#2977)
  • Cache the asgi scope sub-dict per connection (#2976)
  • Avoid copying single-frame WebSocket payloads in websockets-sansio (#2983)
  • Memoize trusted host checks in ProxyHeadersMiddleware (#2970)

... (truncated)

Commits

Updates sse-starlette from 3.4.4 to 3.4.6

Release notes

Sourced from sse-starlette's releases.

v3.4.6

What's Changed

New Contributors

Full Changelog: sysid/sse-starlette@v3.4.5...v3.4.6

v3.4.5

What's Changed

Full Changelog: sysid/sse-starlette@v3.4.4...v3.4.5

Commits
  • c956ba3 Bump version to 3.4.6
  • 2dd7924 Merge pull request #202 from mahenzon/fix/deterministic-ping-tests
  • 6ffcd0d update test_sse: make ping tests independent of wall-clock timing
  • d630709 Merge pull request #200 from sysid/dependabot/github_actions/actions/checkout-7
  • 91e4bb3 Merge pull request #201 from sysid/dependabot/uv/daphne-4.2.2
  • 8c68e01 chore(deps): bump daphne from 4.2.1 to 4.2.2
  • d160387 chore(deps): bump actions/checkout from 6 to 7
  • d45e482 Bump version to 3.4.5
  • 32fbde5 Merge pull request #195 from sysid/dependabot/uv/starlette-1.3.1
  • eba4008 Merge pull request #199 from sysid/fix/test-selection
  • Additional commits viewable in compare view

Updates pypdf from 6.13.3 to 6.14.2

Release notes

Sourced from pypdf's releases.

Version 6.14.2, 2026-06-23

What's new

Security (SEC)

Full Changelog

Version 6.14.1, 2026-06-23

What's new

Security (SEC)

Full Changelog

Version 6.14.0, 2026-06-22

What's new

Security (SEC)

New Features (ENH)

Robustness (ROB)

Full Changelog

Changelog

Sourced from pypdf's changelog.

Version 6.14.2, 2026-06-23

Security (SEC)

  • Avoid infinite loops for incomplete ASCII85 and ASCIIHex inline images (#3892)

Full Changelog

Version 6.14.1, 2026-06-23

Security (SEC)

  • Detect end of stream during inline image end marker detection (#3891)

Full Changelog

Version 6.14.0, 2026-06-22

Security (SEC)

  • Apply general limit for requested image size (#3888)
  • Speed up recovery when reading broken cross-reference table (#3887)

New Features (ENH)

  • Check whether image is displayed on a given page (#3738)

Robustness (ROB)

  • Several fixes

Full Changelog

Commits
  • 2266ee8 REL: 6.14.2
  • 5a33a46 SEC: Avoid infinite loops for incomplete ASCII85 and ASCIIHex inline images (...
  • 1ee4e58 REL: 6.14.1
  • ec3b145 SEC: Detect end of stream during inline image end marker detection (#3891)
  • c6cd82e ROB: Tolerate malformed inline image settings in _read_inline_image (#3889)
  • 0ae42ba ROB: Tolerate malformed page label entries in get_label_from_nums (#3884)
  • 50617b5 ROB: Tolerate malformed Tm operand count in extract_text (#3877)
  • 86e5a82 MAINT: Improve readability (#3874)
  • 83cb25f DEV: Fix sample files commit
  • 06588ec REL: 6.14.0
  • Additional commits viewable in compare view

Updates av from 17.1.0 to 18.0.0

Release notes

Sourced from av's releases.

v18.0.0

Major

  • Remove Support for Python 3.10
  • Upgrade binary wheels to ffmpeg 8.1.2

Features

  • Support HW encoding via a hwaccel parameter on OutputContainer.add_stream (e.g. h264_vaapi, h264_nvenc, h264_videotoolbox); software frames passed to encode are uploaded to the device automatically by @​WyattBlue (#2156).
  • Expose sw_format on VideoCodecContext, and allow configuring the software format of hardware encoders by @​WyattBlue.
  • Add options parameter to AudioResampler for passing libswresample options (e.g. resampler, filter_size, cutoff) by @​WyattBlue (#2262).
  • Support yuv420p10le in VideoFrame.to_ndarray and VideoFrame.from_ndarray by @​WyattBlue (#1981).
  • Add at parameter to Graph.push and Graph.vpush to push a frame to a single buffer source by index, for multi-input filters like overlay by @​WyattBlue.
  • find_best_pix_fmt_of_list now returns the loss as a PixFmtLoss enum.IntFlag instead of a plain int by @​WyattBlue (#2300).
  • Add Colorspace.BT2020 by @​mark-oshea.
  • BitStreamFilterContext now accepts a Codec or a codec-name str as in_stream to pin the input codec without a full Stream by @​WyattBlue.

Fixes

  • Fix VideoFrame.reformat (and to_ndarray/to_rgb/to_image) raising OSError Operation not supported on frames tagged with reserved or otherwise unsupported color_primaries/color_trc values (e.g. VP9 and NVDEC output); a transfer/primaries conversion is now only performed when explicitly requested by @​WyattBlue (#2208).
  • Fix add_mux_stream producing unwritable Matroska files by extracting codec extradata from the bitstream before the header is written by @​WyattBlue (#2198).
  • Encode GPU frames (e.g. CUDA frames from DLPack) directly with pix_fmt="cuda" by adopting the frame's hw_frames_ctx before opening the encoder by @​WyattBlue (#2199).
  • Fix a crash when reading VideoCodecContext.pix_fmt before it is set; it now returns None by @​CarlosRDomin.
  • Preserve frame attributes (pts, time_base, colorspace, etc.) when downloading hardware frames to system memory by @​CarlosRDomin.

New Contributors

Full Changelog: PyAV-Org/PyAV@v17.1.0...v18.0.0

Changelog

Sourced from av's changelog.

v18.0.0

Breaking:

  • Remove Python 3.10

Features:

  • Support HW encoding via a hwaccel parameter on OutputContainer.add_stream (e.g. h264_vaapi, h264_nvenc, h264_videotoolbox); software frames passed to encode are uploaded to the device automatically by :gh-user:WyattBlue (:issue:2156).
  • Use FFmpeg 8.1.2 in the binary wheels by :gh-user:WyattBlue.
  • Expose sw_format on VideoCodecContext, and allow configuring the software format of hardware encoders by :gh-user:WyattBlue.
  • Add options parameter to AudioResampler for passing libswresample options (e.g. resampler, filter_size, cutoff) by :gh-user:WyattBlue (:issue:2262).
  • Support yuv420p10le in VideoFrame.to_ndarray and VideoFrame.from_ndarray by :gh-user:WyattBlue (:issue:1981).
  • Add at parameter to Graph.push and Graph.vpush to push a frame to a single buffer source by index, for multi-input filters like overlay by :gh-user:WyattBlue.
  • find_best_pix_fmt_of_list now returns the loss as a PixFmtLoss enum.IntFlag instead of a plain int by :gh-user:WyattBlue (:issue:2300).
  • Add Colorspace.BT2020 by :gh-user:mark-oshea.
  • BitStreamFilterContext now accepts a Codec or a codec-name str as in_stream to pin the input codec without a full Stream by :gh-user:WyattBlue.

Fixes:

  • Fix VideoFrame.reformat (and to_ndarray/to_rgb/to_image) raising OSError Operation not supported on frames tagged with reserved or otherwise unsupported color_primaries/color_trc values (e.g. VP9 and NVDEC output); a transfer/primaries conversion is now only performed when explicitly requested by :gh-user:WyattBlue (:issue:2208).
  • Fix add_mux_stream producing unwritable Matroska files by extracting codec extradata from the bitstream before the header is written by :gh-user:WyattBlue (:issue:2198).
  • Encode GPU frames (e.g. CUDA frames from DLPack) directly with pix_fmt="cuda" by adopting the frame's hw_frames_ctx before opening the encoder by :gh-user:WyattBlue (:issue:2199).
  • Fix a crash when reading VideoCodecContext.pix_fmt before it is set; it now returns None by :gh-user:CarlosRDomin.
  • Preserve frame attributes (pts, time_base, colorspace, etc.) when downloading hardware frames to system memory by :gh-user:CarlosRDomin.
Commits
  • 54a4395 Release 18.0.0
  • debd890 Accept Codec or codec name as BitStreamFilterContext in_stream
  • 52b8f6b Make transfer/primaries conversion opt-in in reformat, fixes #2208
  • 69ecd26 Update ffmpeg binary
  • daa8231 We set -Wno-incompatible-pointer-types in setup.py
  • f5f5f7b Return None for unset video codec pix_fmt
  • e5104e4 Allow configuring hardware encoder sw_format
  • d0d7746 Expose sw_format on VideoCodecContext
  • 3c95a75 actions/checkout 6 => 7
  • dd22c37 Simplify code
  • Additional commits viewable in compare view

Updates langsmith from 0.10.10 to 0.10.14

Release notes

Sourced from langsmith's releases.

v0.10.14

What's Changed

Full Changelog: langchain-ai/langsmith-sdk@v0.10.13...v0.10.14

v0.10.13

What's Changed

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Aug 1, 2026
…26 updates

Bumps the all-dependencies group with 26 updates in the /libs/bog-agents directory:

| Package | From | To |
| --- | --- | --- |
| [anyio](https://github.com/agronholm/anyio) | `4.13.0` | `4.14.2` |
| [langchain-core](https://github.com/langchain-ai/langchain) | `1.5.1` | `1.5.3` |
| [langgraph](https://github.com/langchain-ai/langgraph) | `1.2.9` | `1.2.10` |
| [langchain-anthropic](https://github.com/langchain-ai/langchain) | `1.5.2` | `1.5.3` |
| [langchain-google-genai](https://github.com/langchain-ai/langchain-google) | `4.3.1` | `4.3.2` |
| [uvicorn](https://github.com/Kludex/uvicorn) | `0.47.0` | `0.52.0` |
| [sse-starlette](https://github.com/sysid/sse-starlette) | `3.4.4` | `3.4.6` |
| [pypdf](https://github.com/py-pdf/pypdf) | `6.13.3` | `6.14.2` |
| [av](https://github.com/PyAV-Org/PyAV) | `17.1.0` | `18.0.0` |
| [langsmith](https://github.com/langchain-ai/langsmith-sdk) | `0.10.10` | `0.10.14` |
| [langchain-aws](https://github.com/langchain-ai/langchain-aws) | `1.5.0` | `1.6.4` |
| [langchain-openai](https://github.com/langchain-ai/langchain) | `1.2.1` | `1.4.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `9.0.3` | `9.1.1` |
| [pytest-socket](https://github.com/miketheman/pytest-socket) | `0.7.0` | `0.8.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.13` | `0.16.1` |
| [ty](https://github.com/astral-sh/ty) | `0.0.37` | `0.0.65` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `1.3.0` | `1.4.0` |
| [twine](https://github.com/pypa/twine) | `6.2.0` | `7.0.0` |
| [langchain-xai](https://github.com/langchain-ai/langchain) | `1.2.2` | `1.3.0` |
| [langchain-mistralai](https://github.com/langchain-ai/langchain) | `1.1.4` | `1.1.6` |
| [langchain-deepseek](https://github.com/langchain-ai/langchain) | `1.0.1` | `1.1.0` |
| [langchain-groq](https://github.com/langchain-ai/langchain) | `1.1.2` | `1.1.3` |
| [langchain-fireworks](https://github.com/langchain-ai/langchain) | `1.3.1` | `1.5.2` |
| [langchain-baseten](https://github.com/basetenlabs/langchain-baseten) | `0.2.0` | `0.2.3` |
| [datasets](https://github.com/huggingface/datasets) | `4.8.5` | `5.0.1` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.14.1` | `3.14.3` |



Updates `anyio` from 4.13.0 to 4.14.2
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Commits](agronholm/anyio@4.13.0...4.14.2)

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

Updates `langgraph` from 1.2.9 to 1.2.10
- [Release notes](https://github.com/langchain-ai/langgraph/releases)
- [Commits](langchain-ai/langgraph@1.2.9...1.2.10)

Updates `langchain-anthropic` from 1.5.2 to 1.5.3
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-anthropic==1.5.2...langchain-anthropic==1.5.3)

Updates `langchain-google-genai` from 4.3.1 to 4.3.2
- [Release notes](https://github.com/langchain-ai/langchain-google/releases)
- [Commits](langchain-ai/langchain-google@libs/genai/v4.3.1...libs/genai/v4.3.2)

Updates `uvicorn` from 0.47.0 to 0.52.0
- [Release notes](https://github.com/Kludex/uvicorn/releases)
- [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.47.0...0.52.0)

Updates `sse-starlette` from 3.4.4 to 3.4.6
- [Release notes](https://github.com/sysid/sse-starlette/releases)
- [Commits](sysid/sse-starlette@v3.4.4...v3.4.6)

Updates `pypdf` from 6.13.3 to 6.14.2
- [Release notes](https://github.com/py-pdf/pypdf/releases)
- [Changelog](https://github.com/py-pdf/pypdf/blob/main/CHANGELOG.md)
- [Commits](py-pdf/pypdf@6.13.3...6.14.2)

Updates `av` from 17.1.0 to 18.0.0
- [Release notes](https://github.com/PyAV-Org/PyAV/releases)
- [Changelog](https://github.com/PyAV-Org/PyAV/blob/main/CHANGELOG.rst)
- [Commits](PyAV-Org/PyAV@v17.1.0...v18.0.0)

Updates `langsmith` from 0.10.10 to 0.10.14
- [Release notes](https://github.com/langchain-ai/langsmith-sdk/releases)
- [Commits](langchain-ai/langsmith-sdk@v0.10.10...v0.10.14)

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

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

Updates `pytest` from 9.0.3 to 9.1.1
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@9.0.3...9.1.1)

Updates `pytest-socket` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/miketheman/pytest-socket/releases)
- [Changelog](https://github.com/miketheman/pytest-socket/blob/main/CHANGELOG.md)
- [Commits](miketheman/pytest-socket@0.7.0...0.8.0)

Updates `ruff` from 0.15.13 to 0.16.1
- [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.13...0.16.1)

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

Updates `pytest-asyncio` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.3.0...v1.4.0)

Updates `twine` from 6.2.0 to 7.0.0
- [Release notes](https://github.com/pypa/twine/releases)
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst)
- [Commits](pypa/twine@6.2.0...7.0.0)

Updates `langchain-xai` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-xai==1.2.2...langchain-xai==1.3.0)

Updates `langchain-mistralai` from 1.1.4 to 1.1.6
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-mistralai==1.1.4...langchain-mistralai==1.1.6)

Updates `langchain-deepseek` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-deepseek==1.0.1...langchain-deepseek==1.1.0)

Updates `langchain-groq` from 1.1.2 to 1.1.3
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-groq==1.1.2...langchain-groq==1.1.3)

Updates `langchain-fireworks` from 1.3.1 to 1.5.2
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-fireworks==1.3.1...langchain-fireworks==1.5.2)

Updates `langchain-baseten` from 0.2.0 to 0.2.3
- [Release notes](https://github.com/basetenlabs/langchain-baseten/releases)
- [Commits](basetenlabs/langchain-baseten@libs/baseten/v0.2.0...libs/baseten/v0.2.3)

Updates `datasets` from 4.8.5 to 5.0.1
- [Release notes](https://github.com/huggingface/datasets/releases)
- [Commits](huggingface/datasets@4.8.5...5.0.1)

Updates `aiohttp` from 3.14.1 to 3.14.3
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.14.1...v3.14.3)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-version: 3.14.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: anyio
  dependency-version: 4.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: av
  dependency-version: 18.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: datasets
  dependency-version: 5.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: langchain-anthropic
  dependency-version: 1.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: langchain-aws
  dependency-version: 1.6.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: langchain-baseten
  dependency-version: 0.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: langchain-core
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: langchain-deepseek
  dependency-version: 1.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: langchain-fireworks
  dependency-version: 1.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: langchain-google-genai
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: langchain-groq
  dependency-version: 1.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: langchain-mistralai
  dependency-version: 1.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: langchain-openai
  dependency-version: 1.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: langchain-xai
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: langgraph
  dependency-version: 1.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: langsmith
  dependency-version: 0.10.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: pypdf
  dependency-version: 6.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pytest
  dependency-version: 9.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pytest-asyncio
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pytest-socket
  dependency-version: 0.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ruff
  dependency-version: 0.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: sse-starlette
  dependency-version: 3.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: twine
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: ty
  dependency-version: 0.0.64
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: uvicorn
  dependency-version: 0.51.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the all-dependencies group in /libs/bog-agents with 26 updates chore(deps): bump the all-dependencies group across 1 directory with 26 updates Aug 3, 2026
@dependabot
dependabot Bot force-pushed the dependabot/uv/libs/bog-agents/all-dependencies-20b1dde732 branch from 63e1369 to 4a36eff Compare August 3, 2026 02:02
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