Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump the all-dependencies group with 16 updates #778

Merged
merged 3 commits into from
Oct 14, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

Bumps the all-dependencies group with 16 updates:

Package From To
aiohttp 3.10.9 3.10.10
anthropic 0.35.0 0.36.0
anyio 4.6.0 4.6.2
charset-normalizer 3.3.2 3.4.0
debugpy 1.8.6 1.8.7
google-api-core 2.20.0 2.21.0
google-api-python-client 2.147.0 2.149.0
google-generativeai 0.8.2 0.8.3
greenlet 3.0.3 3.1.1
huggingface-hub 0.25.1 0.25.2
jiter 0.5.0 0.6.1
openai 1.51.0 1.51.2
pydantic-core 2.23.4 2.24.1
pyparsing 3.1.4 3.2.0
tokenizers 0.20.0 0.20.1
yarl 1.13.1 1.15.2

Updates aiohttp from 3.10.9 to 3.10.10

Release notes

Sourced from aiohttp's releases.

3.10.10

Bug fixes

  • Fixed error messages from :py:class:~aiohttp.resolver.AsyncResolver being swallowed -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9451, #9455.

Features

  • Added :exc:aiohttp.ClientConnectorDNSError for differentiating DNS resolution errors from other connector errors -- by :user:mstojcevich.

    Related issues and pull requests on GitHub: #8455.

Miscellaneous internal changes

  • Simplified DNS resolution throttling code to reduce chance of race conditions -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9454.


Changelog

Sourced from aiohttp's changelog.

3.10.10 (2024-10-10)

Bug fixes

  • Fixed error messages from :py:class:~aiohttp.resolver.AsyncResolver being swallowed -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:9451, :issue:9455.

Features

  • Added :exc:aiohttp.ClientConnectorDNSError for differentiating DNS resolution errors from other connector errors -- by :user:mstojcevich.

    Related issues and pull requests on GitHub: :issue:8455.

Miscellaneous internal changes

  • Simplified DNS resolution throttling code to reduce chance of race conditions -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:9454.


Commits
  • 47475c5 Release 3.10.10 (#9462)
  • 8b424c8 [PR #8456/b09d7cc backport][3.10] Add ClientConnectorDNSError for differentia...
  • cdf3dca [PR #9454/b20908e backport][3.10] Simplify DNS throttle implementation (#9457)
  • ee87a04 [PR #9455/dfaafac0 backport][3.10] Fix AsyncResolver query fallback swallowin...
  • ba9b33e [PR #9451/216e082 backport][3.10] Fix AsyncResolver swallowing the error mess...
  • bc9e5d6 [PR #9448/93e87c2e backport][3.10] Improve performance of fetching the conten...
  • 3ea557a Increment version to 3.10.10.dev0
  • See full diff in compare view

Updates anthropic from 0.35.0 to 0.36.0

Release notes

Sourced from anthropic's releases.

v0.36.0

0.36.0 (2024-10-08)

Full Changelog: v0.35.0...v0.36.0

Features

  • api: add message batches api (cd1ffcb)

Bug Fixes

  • client: avoid OverflowError with very large retry counts (#676) (93d6eeb)

Chores

Refactors

Changelog

Sourced from anthropic's changelog.

0.36.0 (2024-10-08)

Full Changelog: v0.35.0...v0.36.0

Features

  • api: add message batches api (cd1ffcb)

Bug Fixes

  • client: avoid OverflowError with very large retry counts (#676) (93d6eeb)

Chores

Refactors

Commits

Updates anyio from 4.6.0 to 4.6.2

Release notes

Sourced from anyio's releases.

4.6.2

  • Fixed regression caused by (#807) that prevented the use of parametrized async fixtures

4.6.1

This release contains all the changes from both v4.5.1 and v4.6.0, plus:

  • Fixed TaskGroup and CancelScope producing cyclic references in tracebacks when raising exceptions (#806) (PR by @​graingert)
Changelog

Sourced from anyio's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

4.6.2

  • Fixed regression caused by ([#807](https://github.com/agronholm/anyio/issues/807) <https://github.com/agronholm/anyio/pull/807>_) that prevented the use of parametrized async fixtures

4.6.1

This release contains all the changes from both v4.5.1 and v4.6.0, plus:

  • Fixed TaskGroup and CancelScope producing cyclic references in tracebacks when raising exceptions ([#806](https://github.com/agronholm/anyio/issues/806) <https://github.com/agronholm/anyio/pull/806>_) (PR by @​graingert)

4.6.0

This release is the successor to v4.5.0 with Python 3.8 support dropped, and does not contain the changes from v4.5.1.

  • Dropped support for Python 3.8 (as [#698](https://github.com/agronholm/anyio/issues/698) <https://github.com/agronholm/anyio/issues/698>_ cannot be resolved without cancel message support)
  • Fixed 100% CPU use on asyncio while waiting for an exiting task group to finish while said task group is within a cancelled cancel scope ([#695](https://github.com/agronholm/anyio/issues/695) <https://github.com/agronholm/anyio/issues/695>_)
  • Fixed cancel scopes on asyncio not propagating CancelledError on exit when the enclosing cancel scope has been effectively cancelled ([#698](https://github.com/agronholm/anyio/issues/698) <https://github.com/agronholm/anyio/issues/698>_)
  • Fixed asyncio task groups not yielding control to the event loop at exit if there were no child tasks to wait on
  • Fixed inconsistent task uncancellation with asyncio cancel scopes belonging to a task group when said task group has child tasks running

4.5.1

As Python 3.8 support was dropped in v4.6.0, this interim release was created to bring a regression fix to Python 3.8, and adds a few other fixes also present in v4.6.1.

  • Fixed acquring a lock twice in the same task on asyncio hanging instead of raising a RuntimeError ([#798](https://github.com/agronholm/anyio/issues/798) <https://github.com/agronholm/anyio/issues/798>_)
  • Fixed an async fixture's self being different than the test's self in class-based tests ([#633](https://github.com/agronholm/anyio/issues/633) <https://github.com/agronholm/anyio/issues/633>_) (PR by @​agronholm and @​graingert)
  • Fixed TypeError with TLSStream on Windows when a certificate verification error occurs when using a truststore <https://github.com/sethmlarson/truststore>_ SSL certificate ([#795](https://github.com/agronholm/anyio/issues/795) <https://github.com/agronholm/anyio/issues/795>_)

... (truncated)

Commits
  • 5861355 Bumped up the version
  • f6ddfc8 Fixed a regression in the pytest plugin that broke parametrized async fixtures
  • 4ecc963 Bumped up the version
  • 5489fbd Fixed tox configuration
  • 77b94df Updated Path documentation and made is_junction() conditional (#800)
  • bf130dc Fixed TypeError when TLS handshake fails with truststore SSLContext (#801)
  • 4cb89a5 Migrated to native TOML configuration for Tox
  • 6bebf18 Made test_start_task_soon_cancel_immediately() less flaky
  • e8546bd Rebind instance method fixtures to the same instance as the test (#807)
  • 57bcbc9 Updated macOS and Windows to test on Python 3.13 by default
  • Additional commits viewable in compare view

Updates charset-normalizer from 3.3.2 to 3.4.0

Release notes

Sourced from charset-normalizer's releases.

Version 3.4.0

🚀 charset-normalizer is raising awareness around HTTP/2, and HTTP/3!

Did you know that Internet Explorer 11 shipped with an optional HTTP/2 support back in 2013? also libcurl did ship it in 2014[...] All of this while our community is still struggling to make a firm advancement in HTTP clients. Now, many of you use Requests as the defacto http client, now, and for many years now, Requests has been frozen. Being left in a vegetative state and not evolving, this blocked millions of developers from using more advanced features.

We promptly invite Python developers to look at the drop-in replacement for Requests, namely Niquests. It leverage charset-normalizer in a better way! Check it out, you will be positively surprised! Don't wait another decade.

We are thankful to @​microsoft and involved parties for funding our work through the Microsoft FOSS Fund program.

3.4.0 (2024-10-08)

Added

  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#512)

Fixed

  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#520) (#509) (#498) (#407) (#537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#381)
Changelog

Sourced from charset-normalizer's changelog.

3.4.0 (2024-10-08)

Added

  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#512)

Fixed

  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#520) (#509) (#498) (#407) (#537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#381)
Commits
  • f3118e3 🔧 change download/upload artifact version to last working version
  • 33e67e8 🔧 set compile-generator in generator_generic_slsa3 action
  • 73dd24c 🔧 add explicit build deps to setuptools
  • 78f1e9b 🔧 attempt to fix cd.yml *3
  • 56ae702 🔧 attempt to fix cd.yml *2
  • 9720055 🔧 attempt to fix cd.yml (macos part)
  • 1e10d06 Update CHANGELOG.md
  • 36c103a 🔖 Release 3.4.0 (#545)
  • 7658dfc ⬆️ Bump github/codeql-action from 3.26.11 to 3.26.12 (#544)
  • ca2535d ⬆️ Bump github/codeql-action from 3.26.9 to 3.26.11 (#542)
  • Additional commits viewable in compare view

Updates debugpy from 1.8.6 to 1.8.7

Release notes

Sourced from debugpy's releases.

debugpy v1.8.7

Support for 3.13

Fixes microsoft/debugpy#1689

Commits

Updates google-api-core from 2.20.0 to 2.21.0

Release notes

Sourced from google-api-core's releases.

v2.21.0

2.21.0 (2024-10-07)

Features

  • Add support for asynchronous long running operations (#724) (aaed69b)

Bug Fixes

  • Set chunk size for async stream content (#702) (45b8a6d)

v2.21.0rc0

2.21.0rc0 (2024-10-07)

Features

  • Add support for asynchronous long running operations (#724) (aaed69b)

Bug Fixes

  • Set chunk size for async stream content (#702) (45b8a6d)

v2.20.1rc0

2.20.1rc0 (2024-09-20)

Bug Fixes

  • Set chunk size for async stream content (#702) (45b8a6d)
Changelog

Sourced from google-api-core's changelog.

2.21.0 (2024-10-07)

Features

  • Add support for asynchronous long running operations (#724) (aaed69b)

Bug Fixes

  • Set chunk size for async stream content (#702) (45b8a6d)
Commits

Updates google-api-python-client from 2.147.0 to 2.149.0

Release notes

Sourced from google-api-python-client's releases.

v2.149.0

2.149.0 (2024-10-08)

Features

Bug Fixes

v2.148.0

2.148.0 (2024-10-01)

Features

... (truncated)

Commits

Updates google-generativeai from 0.8.2 to 0.8.3

Commits

Updates greenlet from 3.0.3 to 3.1.1

Changelog

Sourced from greenlet's changelog.

3.1.1 (2024-09-20)

  • Fix crashes on 32-bit PPC Linux. Note that there is no CI for this, and support is best effort; there may be other issues lurking. See issue 422 <https://github.com/python-greenlet/greenlet/issues/422>_.
  • Remove unnecessary logging sometimes during interpreter shutdown. See issue 426 <https://github.com/python-greenlet/greenlet/issues/426>_.
  • Fix some crashes on 32-bit PPC MacOS. This is a very old platform, and is only known to be tested on beta versions of an operating system that was never released, using the GCC 14 only provided by MacPorts; it may or may not work on the final MacOS X release that supported 32-bit PowerPC. It has the known issue of leaking memory when greenlets are used in multiple threads. Help debugging this would be appreciated. See PR 419 <https://github.com/python-greenlet/greenlet/pull/419>_.

3.1.0 (2024-09-10)

.. note::

This will be the last release to support Python 3.7 and 3.8.
  • Adds support for Python 3.13.

.. note::

greenlet will not work in no-gil (free threaded) builds of CPython. Internally, greenlet heavily depends on the GIL.

  • Greatly reduce the chances for crashes during interpreter shutdown. See issue 411 <https://github.com/python-greenlet/greenlet/issues/411>_.

Platform Support

Support for the following platforms was contributed by the community. Note that they are untested by this project's continuous integration services.

  • Hitachi's SuperH CPU <https://github.com/python-greenlet/greenlet/issues/166>_.
  • NetBSD on PowerPC. <https://github.com/python-greenlet/greenlet/pull/402>_
  • RiscV 64 with -fno-omit-frame-pointer <https://github.com/python-greenlet/greenlet/pull/404>. Note that there are known test failures <https://github.com/python-greenlet/greenlet/issues/403>, so this

... (truncated)

Commits
  • dd0a948 Preparing release 3.1.1
  • ab8d3bc Disable thread-local cleanup on 32-bit MacOS PPC with GCC. This will result i...
  • e9db22a Merge pull request #429 from python-greenlet/issue419redux
  • 6081a16 Merge pull request #419 from barracuda156/powerpc
  • dbf311a Greater safety and fewer assumptions doing cross-thread cleanup.
  • 9e8a90b Set back greenlet_thread_state.hpp file
  • 1bf374f Duplicate greenlet_thread_state.hpp history.
  • 64e0b4f Copy greenlet_thread_state.hpp into TThreadStateCreator.hpp
  • 358a2e8 Keep greenlet_thread_state.hpp
  • 5144f70 Sigh. Pip hides compiler output which is, you know, important, and the only w...
  • Additional commits viewable in compare view

Updates huggingface-hub from 0.25.1 to 0.25.2

Release notes

Sourced from huggingface-hub's releases.

[v0.25.2]: Fix snapshot download when local_dir is provided

Full Changelog : v0.25.1...v0.25.2 For more details, refer to the related PR huggingface/huggingface_hub#2592

Commits

Updates jiter from 0.5.0 to 0.6.1

Commits

Updates openai from 1.51.0 to 1.51.2

Release notes

Sourced from openai's releases.

v1.51.2

1.51.2 (2024-10-08)

Full Changelog: v1.51.1...v1.51.2

Chores

v1.51.1

1.51.1 (2024-10-07)

Full Changelog: v1.51.0...v1.51.1

Bug Fixes

  • client: avoid OverflowError with very large retry counts (#1779) (fb1dacf)

Chores

  • internal: add support for parsing bool response content (#1774) (aa2e25f)

Documentation

  • fix typo in fenced code block language (#1769) (57bbc15)
  • improve and reference contributing documentation (#1767) (a985a8b)
Changelog

Sourced from openai's changelog.

1.51.2 (2024-10-08)

Full Changelog: v1.51.1...v1.51.2

Chores

1.51.1 (2024-10-07)

Full Changelog: v1.51.0...v1.51.1

Bug Fixes

  • client: avoid OverflowError with very large retry counts (#1779) (fb1dacf)

Chores

  • internal: add support for parsing bool response content (#1774) (aa2e25f)

Documentation

  • fix typo in fenced code block language (#1769) (57bbc15)
  • improve and reference contributing documentation (#1767) (a985a8b)
Commits

Updates pydantic-core from 2.23.4 to 2.24.1

Release notes

Sourced from pydantic-core's releases.

v2.24.1 2024-10-11

What's Changed

Packaging

Fixes

Changes

Full Changelog: pydantic/pydantic-core@v2.24.0...v2.24.1

v2.24.0 2024-09-20

What's Changed

Features

Fixes

New Contributors

Full Changelog: pydantic/pydantic-core@v2.23.4...v2.24.0

Commits
  • 10374e2 Bump version to v2.24.1 (#1481)
  • b773c9d Relax intensity of error for issubclass and isinstance schemas from json ...
  • dc4846e ci: add flag to integration tests to mitigate schema changes (#1480)
  • 903a1a9 ci: add prebuilt musl for armv7 (#1477)

Bumps the all-dependencies group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.9` | `3.10.10` |
| [anthropic](https://github.com/anthropics/anthropic-sdk-python) | `0.35.0` | `0.36.0` |
| [anyio](https://github.com/agronholm/anyio) | `4.6.0` | `4.6.2` |
| [charset-normalizer](https://github.com/Ousret/charset_normalizer) | `3.3.2` | `3.4.0` |
| [debugpy](https://github.com/microsoft/debugpy) | `1.8.6` | `1.8.7` |
| [google-api-core](https://github.com/googleapis/python-api-core) | `2.20.0` | `2.21.0` |
| [google-api-python-client](https://github.com/googleapis/google-api-python-client) | `2.147.0` | `2.149.0` |
| [google-generativeai](https://github.com/google/generative-ai-python) | `0.8.2` | `0.8.3` |
| [greenlet](https://github.com/python-greenlet/greenlet) | `3.0.3` | `3.1.1` |
| [huggingface-hub](https://github.com/huggingface/huggingface_hub) | `0.25.1` | `0.25.2` |
| [jiter](https://github.com/pydantic/jiter) | `0.5.0` | `0.6.1` |
| [openai](https://github.com/openai/openai-python) | `1.51.0` | `1.51.2` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.23.4` | `2.24.1` |
| [pyparsing](https://github.com/pyparsing/pyparsing) | `3.1.4` | `3.2.0` |
| [tokenizers](https://github.com/huggingface/tokenizers) | `0.20.0` | `0.20.1` |
| [yarl](https://github.com/aio-libs/yarl) | `1.13.1` | `1.15.2` |


Updates `aiohttp` from 3.10.9 to 3.10.10
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.10.9...v3.10.10)

Updates `anthropic` from 0.35.0 to 0.36.0
- [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.35.0...v0.36.0)

Updates `anyio` from 4.6.0 to 4.6.2
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.6.0...4.6.2)

Updates `charset-normalizer` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/Ousret/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.3.2...3.4.0)

Updates `debugpy` from 1.8.6 to 1.8.7
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.6...v1.8.7)

Updates `google-api-core` from 2.20.0 to 2.21.0
- [Release notes](https://github.com/googleapis/python-api-core/releases)
- [Changelog](https://github.com/googleapis/python-api-core/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-api-core@v2.20.0...v2.21.0)

Updates `google-api-python-client` from 2.147.0 to 2.149.0
- [Release notes](https://github.com/googleapis/google-api-python-client/releases)
- [Commits](googleapis/google-api-python-client@v2.147.0...v2.149.0)

Updates `google-generativeai` from 0.8.2 to 0.8.3
- [Release notes](https://github.com/google/generative-ai-python/releases)
- [Changelog](https://github.com/google-gemini/generative-ai-python/blob/main/RELEASE.md)
- [Commits](https://github.com/google/generative-ai-python/commits)

Updates `greenlet` from 3.0.3 to 3.1.1
- [Changelog](https://github.com/python-greenlet/greenlet/blob/master/CHANGES.rst)
- [Commits](python-greenlet/greenlet@3.0.3...3.1.1)

Updates `huggingface-hub` from 0.25.1 to 0.25.2
- [Release notes](https://github.com/huggingface/huggingface_hub/releases)
- [Commits](huggingface/huggingface_hub@v0.25.1...v0.25.2)

Updates `jiter` from 0.5.0 to 0.6.1
- [Release notes](https://github.com/pydantic/jiter/releases)
- [Commits](pydantic/jiter@v0.5.0...v0.6.1)

Updates `openai` from 1.51.0 to 1.51.2
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v1.51.0...v1.51.2)

Updates `pydantic-core` from 2.23.4 to 2.24.1
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.23.4...v2.24.1)

Updates `pyparsing` from 3.1.4 to 3.2.0
- [Release notes](https://github.com/pyparsing/pyparsing/releases)
- [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
- [Commits](pyparsing/pyparsing@3.1.4...3.2.0)

Updates `tokenizers` from 0.20.0 to 0.20.1
- [Release notes](https://github.com/huggingface/tokenizers/releases)
- [Changelog](https://github.com/huggingface/tokenizers/blob/main/RELEASE.md)
- [Commits](huggingface/tokenizers@v0.20.0...v0.20.1)

Updates `yarl` from 1.13.1 to 1.15.2
- [Release notes](https://github.com/aio-libs/yarl/releases)
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst)
- [Commits](aio-libs/yarl@v1.13.1...v1.15.2)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: anthropic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: anyio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: debugpy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: google-api-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: google-api-python-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: google-generativeai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: greenlet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: huggingface-hub
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: jiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: openai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: pydantic-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pyparsing
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tokenizers
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: yarl
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 14, 2024
@Elias2660 Elias2660 merged commit a2a796d into main Oct 14, 2024
6 of 7 checks passed
@dependabot dependabot bot deleted the dependabot-pip-all-dependencies-3a7c6a4a6b branch October 14, 2024 14:28
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant