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

chore(deps): bump the dependencies group across 1 directory with 24 updates #251

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2024

Bumps the dependencies group with 24 updates in the / directory:

Package From To
aiohttp 3.9.5 3.11.8
async-timeout 4.0.3 5.0.1
attrs 23.2.0 24.2.0
certifi 2024.6.2 2024.8.30
charset-normalizer 3.3.2 3.4.0
frozenlist 1.4.1 1.5.0
idna 3.7 3.10
inflect 7.3.0 7.4.0
irc 20.4.1 20.5.0
jaraco-collections 5.0.1 5.1.0
jaraco-context 5.3.0 6.0.1
jaraco-functools 4.0.1 4.1.0
jaraco-stream 3.0.3 3.0.4
jaraco-text 3.12.1 4.0.0
more-itertools 10.3.0 10.5.0
multidict 6.0.5 6.1.0
pydantic 2.7.4 2.10.2
pydantic-core 2.18.4 2.27.1
pytz 2024.1 2024.2
sentry-sdk 2.7.1 2.19.0
tempora 5.6.0 5.7.0
typeguard 4.3.0 4.4.1
urllib3 2.2.2 2.2.3
yarl 1.9.4 1.18.0

Updates aiohttp from 3.9.5 to 3.11.8

Release notes

Sourced from aiohttp's releases.

3.11.8

Miscellaneous internal changes

  • Improved performance of creating :class:aiohttp.ClientResponse objects when there are no cookies -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10029.

  • Improved performance of creating :class:aiohttp.ClientResponse objects -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10030.

  • Improved performances of creating objects during the HTTP request lifecycle -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10037.

  • Improved performance of constructing :class:aiohttp.web.Response with headers -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10043.

  • Improved performance of making requests when there are no auto headers to skip -- by :user:bdraco.

    Related issues and pull requests on GitHub: #10049.

  • Downgraded logging of invalid HTTP method exceptions on the first request to debug level -- by :user:bdraco.

    HTTP requests starting with an invalid method are relatively common, especially when connected to the public internet, because browsers or other clients may try to speak SSL to a plain-text server or vice-versa. These exceptions can quickly fill the log with noise when nothing is wrong.

    Related issues and pull requests on GitHub:

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.11.8 (2024-11-27)

Miscellaneous internal changes

  • Improved performance of creating :class:aiohttp.ClientResponse objects when there are no cookies -- by :user:bdraco.

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

  • Improved performance of creating :class:aiohttp.ClientResponse objects -- by :user:bdraco.

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

  • Improved performances of creating objects during the HTTP request lifecycle -- by :user:bdraco.

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

  • Improved performance of constructing :class:aiohttp.web.Response with headers -- by :user:bdraco.

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

  • Improved performance of making requests when there are no auto headers to skip -- by :user:bdraco.

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

  • Downgraded logging of invalid HTTP method exceptions on the first request to debug level -- by :user:bdraco.

    HTTP requests starting with an invalid method are relatively common, especially when connected to the public internet, because browsers or other clients may try to speak SSL to a plain-text server or vice-versa. These exceptions can quickly fill the log with noise when nothing is wrong.

... (truncated)

Commits
  • 5ddf720 Release 3.11.8 (#10066)
  • 13152c3 [PR #10055/c11fe96 backport][3.11] Downgrade logging of invalid HTTP methods ...
  • 1b78cae [PR #10059/aac6f741 backport][3.11] Combine executor jobs in FileResponse sen...
  • a5a6981 [PR #10058/12372d7 backport][3.11] Remove unreachable content length check fo...
  • 7e628f4 [PR #8699/11f0e7f backport][3.11] Reduce code indent in ResponseHandler.data_...
  • 1a6fafe [PR #10037/2e369db backport][3.11] Refactor requests and responses to use cla...
  • 653302e [PR #10049/006fbc37 backport][3.11] Improve client performance when there are...
  • d411bc5 [PR #10043/5255cec backport][3.11] Avoid constructing headers mulitidict twic...
  • 3dfd7ae Bump pypa/cibuildwheel from 2.21.3 to 2.22.0 (#10042)
  • 65dab0e [PR #10038/6f4e9615 backport][3.11] Small speed up to StreamWriter.__init__...
  • Additional commits viewable in compare view

Updates async-timeout from 4.0.3 to 5.0.1

Release notes

Sourced from async-timeout's releases.

5.0.1

Misc

  • [#423](https://github.com/aio-libs/async-timeout/issues/423) <https://github.com/aio-libs/async-timeout/issues/423>_

5.0.0

Features

  • Make asyncio_timeout fully compatible with the standard asyncio.Timeout but keep backward compatibility with existing asyncio_timeout.Timeout API. ([#422](https://github.com/aio-libs/async-timeout/issues/422) <https://github.com/aio-libs/async-timeout/issues/422>_)

Improved Documentation

  • On the CHANGES/README.rst <https://github.com/aio-libs/async-timeout/tree/master/CHANGES/README.rst>_ page, a link to the Towncrier philosophy has been fixed. ([#388](https://github.com/aio-libs/async-timeout/issues/388) <https://github.com/aio-libs/async-timeout/issues/388>_)

Deprecations and Removals

  • Drop deprecated sync context manager support, use async with timeout(...): ... instead. ([#421](https://github.com/aio-libs/async-timeout/issues/421) <https://github.com/aio-libs/async-timeout/issues/421>_)
Changelog

Sourced from async-timeout's changelog.

5.0.1 (2024-11-06)

Misc

  • [#423](https://github.com/aio-libs/async-timeout/issues/423) <https://github.com/aio-libs/async-timeout/issues/423>_

5.0.0 (2024-10-31)

Features

  • Make asyncio_timeout fully compatible with the standard asyncio.Timeout but keep backward compatibility with existing asyncio_timeout.Timeout API. ([#422](https://github.com/aio-libs/async-timeout/issues/422) <https://github.com/aio-libs/async-timeout/issues/422>_)

Improved Documentation

  • On the CHANGES/README.rst <https://github.com/aio-libs/async-timeout/tree/master/CHANGES/README.rst>_ page, a link to the Towncrier philosophy has been fixed. ([#388](https://github.com/aio-libs/async-timeout/issues/388) <https://github.com/aio-libs/async-timeout/issues/388>_)

Deprecations and Removals

  • Drop deprecated sync context manager support, use async with timeout(...): ... instead. ([#421](https://github.com/aio-libs/async-timeout/issues/421) <https://github.com/aio-libs/async-timeout/issues/421>_)
Commits

Updates attrs from 23.2.0 to 24.2.0

Commits

Updates certifi from 2024.6.2 to 2024.8.30

Commits

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 frozenlist from 1.4.1 to 1.5.0

Release notes

Sourced from frozenlist's releases.

1.5.0

Bug fixes

  • An incorrect signature of the __class_getitem__ class method has been fixed, adding a missing class_item argument under Python 3.8 and older.

    This change also improves the code coverage of this method that was previously missing -- by :user:webknjaz.

    Related issues and pull requests on GitHub: #567, #571.

Improved documentation

  • Rendered issue, PR, and commit links now lead to frozenlist's repo instead of yarl's repo.

    Related issues and pull requests on GitHub: #573.

  • On the :doc:Contributing docs <contributing/guidelines> page, a link to the Towncrier philosophy has been fixed.

    Related issues and pull requests on GitHub: #574.

Packaging updates and notes for downstreams

  • A name of a temporary building directory now reflects that it's related to frozenlist, not yarl.

    Related issues and pull requests on GitHub: #573.

  • Declared Python 3.13 supported officially in the distribution package metadata.

    Related issues and pull requests on GitHub: #595.

... (truncated)

Changelog

Sourced from frozenlist's changelog.

1.5.0 (2024-10-22)

Bug fixes

  • An incorrect signature of the __class_getitem__ class method has been fixed, adding a missing class_item argument under Python 3.8 and older.

    This change also improves the code coverage of this method that was previously missing -- by :user:webknjaz.

    Related issues and pull requests on GitHub: :issue:567, :issue:571.

Improved documentation

  • Rendered issue, PR, and commit links now lead to frozenlist's repo instead of yarl's repo.

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

  • On the :doc:Contributing docs <contributing/guidelines> page, a link to the Towncrier philosophy has been fixed.

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

Packaging updates and notes for downstreams

  • A name of a temporary building directory now reflects that it's related to frozenlist, not yarl.

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

  • Declared Python 3.13 supported officially in the distribution package metadata.

    Related issues and pull requests on GitHub:

... (truncated)

Commits

Updates idna from 3.7 to 3.10

Release notes

Sourced from idna's releases.

v3.10

No release notes provided.

v3.9

No release notes provided.

v3.8

What's Changed

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

Full Changelog: kjd/idna@v3.7...v3.8

Changelog

Sourced from idna's changelog.

3.10 (2024-09-15) +++++++++++++++++

  • Reverted to Unicode 15.1.0 data. Unicode 16 has some significant changes to UTS46 processing that will require more work to properly implement.

3.9 (2024-09-13) ++++++++++++++++

  • Update to Unicode 16.0.0
  • Deprecate setup.cfg in favour of pyproject.toml
  • Use ruff for code formatting

Thanks to Waket Zheng for contributions to this release.

3.8 (2024-08-23) ++++++++++++++++

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

Commits

Updates inflect from 7.3.0 to 7.4.0

Changelog

Sourced from inflect's changelog.

v7.4.0

Features

  • Handle a single apostrophe more gracefully. (#218)

v7.3.1

Bugfixes

  • Set minimum version of more-itertools to 8.5 (#215)
Commits

Updates irc from 20.4.1 to 20.5.0

Changelog

Sourced from irc's changelog.

v20.5.0

Features

  • Refactored commands processing so now every command has a numeric and a name. Programs reliant on numeric values not yet defined can do so without breaking once they are defined. (#214)

v20.4.3

Bugfixes

  • Unconditionally close the socket, even if shutdown fails. (#224)

v20.4.2

Bugfixes

  • Stop excluding scripts. Prevents docs and scripts from being installed. (#231)
Commits
  • 4513dc3 Finalize
  • 92e7d76 Add news fragment.
  • d0df1e3 Rename Code to Command for clarity.
  • 90d541b Always resolve a command to a Code object.
  • 497aba6 Inline the compatibility shim.
  • 4d4ba1b Restore compatibility for Python 3.11.
  • c95c063 Load codes from a text file and model them as unified objects.
  • e051a49 Add some type hints to help with ServerConnection.connect.
  • 63599db Merge pull request #233 from rmblau/main
  • 98dc33d 👹 Feed the hobgoblins (delint).
  • Additional commits viewable in compare view

Updates jaraco-collections from 5.0.1 to 5.1.0

Changelog

Sourced from jaraco-collections's changelog.

v5.1.0

Features

  • Fully typed RangeMap and avoid complete iterations to find matches (#16)
Commits

Updates jaraco-context from 5.3.0 to 6.0.1

Changelog

Sourced from jaraco-context's changelog.

v6.0.1

Bugfixes

  • Removed type declarations as suggested by Gemini. (#13)

v6.0.0

Bugfixes

  • Fixed bug in repo_context where standard output from git would not be hidden (because git emits standard output on the stderr stream).

Deprecations and Removals

  • Removed deprecated 'tarball_context', 'infer_compression', and 'null' contexts.
Commits
  • 088151e Finalize
  • 97cd186 Add news fragment.
  • 591cb84 Revert "Apply Gemini's ideas for improving the types."
  • 04c905d 🚡 Toil the docs.
  • 9c41698 Add workaround for cleaning out read-only files when wiping repo context.
  • e051242 Apply Gemini's ideas for improving the types.
  • d892f53 Finalize
  • 2ae9f20 Declare project as typed.
  • 0483ad7 Expanded test coverage to cover 100% of the code.
  • 9226589 Suppress logging from the tarfile_served.
  • Additional commits viewable in compare view

Updates jaraco-functools from 4.0.1 to 4.1.0

Changelog

Sourced from jaraco-functools's changelog.

v4.1.0

Features

  • Added chainable decorator.

v4.0.2

No significant changes.

Commits

Updates jaraco-stream from 3.0.3 to 3.0.4

Changelog

Sourced from jaraco-stream's changelog.

v3.0.4

Bugfixes

  • Moved more_itertools into the dependencies. (#5)
Commits

Updates jaraco-text from 3.12.1 to 4.0.0

Changelog

Sourced from jaraco-text's changelog.

v4.0.0

Deprecations and Removals

  • Made 'inflect' an optional dependency. The show-newlines script now will crash unless jaraco.text[inflect] is installed.

v3.14.0

Features

  • Add new 'clean' function, extracted from 'yield_lines'.

v3.13.1

Bugfixes

  • Fix EncodingWarning.

v3.13.0

Features

  • Add 'lines_from' function.
Commits

Updates more-itertools from 10.3.0 to 10.5.0

Release notes

Sourced from more-itertools's releases.

v10.5.0

What's Changed

Full Changelog: more-itertools/more-itertools@v10.4.0...v10.5.0

Version 10.4.0

What's Changed

New Contributors

Full Changelog: more-itertools/more-itertools@v10.3.0...v10.4.0

Commits
  • 4998a25 Merge pull request #906 from more-itertools/version-10.5.0
  • b585bb5 Version notes for 10.5.0
  • 2f9036c Bump version: 10.4.0 → 10.5.0
  • 7384f9e Merge pull request #905 from more-itertools/issue-887
  • c381a42 Fix types.UnionType for 3.10+
  • 35f8e41 Merge pull request #903 from more-itertools/issue-902
  • ebe42b0 Reduce groupby.next calls in all_equal
  • 4f4217c Fix issue 897
  • 390a3db Merge pull request #899 from more-itertools/issue-896-all-equal
  • fa05e90 Use loops
  • Additional commits viewable in compare view

Updates multidict from 6.0.5 to 6.1.0

Release notes

Sourced from multidict's releases.

6.1.0

Bug fixes

  • Covered the unreachable code path in multidict._multidict_base._abc_itemsview_register() with typing -- by :user:skinnyBat.

    Related issues and pull requests on GitHub: #928.

Features

  • Added support for Python 3.13 -- by :user:bdraco.

    Related issues and pull requests on GitHub: #1002.

Removals and backward incompatible breaking changes

  • Removed Python 3.7 support -- by :user:bdraco.

    Related issues and pull requests on GitHub: #997.

Contributor-facing changes

  • Added tests to have full code coverage of the multidict._multidict_base._viewbaseset_richcmp() function -- by :user:skinnyBat.

    Related issues and pull requests on GitHub: #928.

... (truncated)

Changelog

Sourced from multidict's changelog.

6.1.0 (2024-09-09)

Bug fixes

  • Covered the unreachable code path in multidict._multidict_base._abc_itemsview_register() with typing -- by :user:skinnyBat.

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

Features

  • Added support for Python 3.13 -- by :user:bdraco.

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

Removals and backward incompatible breaking changes

  • Removed Python 3.7 support -- by :user:bdraco.

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

Contributor-facing changes

  • Added tests to have full code coverage of the multidict._multidict_base._viewbaseset_richcmp() function -- by :user:skinnyBat.

    Related issues and pull requests on GitHub:

…pdates

Bumps the dependencies group with 24 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.9.5` | `3.11.8` |
| [async-timeout](https://github.com/aio-libs/async-timeout) | `4.0.3` | `5.0.1` |
| [attrs](https://github.com/sponsors/hynek) | `23.2.0` | `24.2.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2024.6.2` | `2024.8.30` |
| [charset-normalizer](https://github.com/Ousret/charset_normalizer) | `3.3.2` | `3.4.0` |
| [frozenlist](https://github.com/aio-libs/frozenlist) | `1.4.1` | `1.5.0` |
| [idna](https://github.com/kjd/idna) | `3.7` | `3.10` |
| [inflect](https://github.com/jaraco/inflect) | `7.3.0` | `7.4.0` |
| [irc](https://github.com/jaraco/irc) | `20.4.1` | `20.5.0` |
| [jaraco-collections](https://github.com/jaraco/jaraco.collections) | `5.0.1` | `5.1.0` |
| [jaraco-context](https://github.com/jaraco/jaraco.context) | `5.3.0` | `6.0.1` |
| [jaraco-functools](https://github.com/jaraco/jaraco.functools) | `4.0.1` | `4.1.0` |
| [jaraco-stream](https://github.com/jaraco/jaraco.stream) | `3.0.3` | `3.0.4` |
| [jaraco-text](https://github.com/jaraco/jaraco.text) | `3.12.1` | `4.0.0` |
| [more-itertools](https://github.com/more-itertools/more-itertools) | `10.3.0` | `10.5.0` |
| [multidict](https://github.com/aio-libs/multidict) | `6.0.5` | `6.1.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.7.4` | `2.10.2` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.18.4` | `2.27.1` |
| [pytz](https://github.com/stub42/pytz) | `2024.1` | `2024.2` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.7.1` | `2.19.0` |
| [tempora](https://github.com/jaraco/tempora) | `5.6.0` | `5.7.0` |
| [typeguard](https://github.com/agronholm/typeguard) | `4.3.0` | `4.4.1` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.2.2` | `2.2.3` |
| [yarl](https://github.com/aio-libs/yarl) | `1.9.4` | `1.18.0` |



Updates `aiohttp` from 3.9.5 to 3.11.8
- [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.9.5...v3.11.8)

Updates `async-timeout` from 4.0.3 to 5.0.1
- [Release notes](https://github.com/aio-libs/async-timeout/releases)
- [Changelog](https://github.com/aio-libs/async-timeout/blob/master/CHANGES.rst)
- [Commits](aio-libs/async-timeout@v4.0.3...v5.0.1)

Updates `attrs` from 23.2.0 to 24.2.0
- [Commits](https://github.com/sponsors/hynek/commits)

Updates `certifi` from 2024.6.2 to 2024.8.30
- [Commits](certifi/python-certifi@2024.06.02...2024.08.30)

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 `frozenlist` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/aio-libs/frozenlist/releases)
- [Changelog](https://github.com/aio-libs/frozenlist/blob/master/CHANGES.rst)
- [Commits](aio-libs/frozenlist@v1.4.1...v1.5.0)

Updates `idna` from 3.7 to 3.10
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.7...v3.10)

Updates `inflect` from 7.3.0 to 7.4.0
- [Release notes](https://github.com/jaraco/inflect/releases)
- [Changelog](https://github.com/jaraco/inflect/blob/main/NEWS.rst)
- [Commits](jaraco/inflect@v7.3.0...v7.4.0)

Updates `irc` from 20.4.1 to 20.5.0
- [Release notes](https://github.com/jaraco/irc/releases)
- [Changelog](https://github.com/jaraco/irc/blob/main/NEWS.rst)
- [Commits](jaraco/irc@v20.4.1...v20.5.0)

Updates `jaraco-collections` from 5.0.1 to 5.1.0
- [Release notes](https://github.com/jaraco/jaraco.collections/releases)
- [Changelog](https://github.com/jaraco/jaraco.collections/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.collections@v5.0.1...v5.1.0)

Updates `jaraco-context` from 5.3.0 to 6.0.1
- [Release notes](https://github.com/jaraco/jaraco.context/releases)
- [Changelog](https://github.com/jaraco/jaraco.context/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.context@v5.3.0...v6.0.1)

Updates `jaraco-functools` from 4.0.1 to 4.1.0
- [Release notes](https://github.com/jaraco/jaraco.functools/releases)
- [Changelog](https://github.com/jaraco/jaraco.functools/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.functools@v4.0.1...v4.1.0)

Updates `jaraco-stream` from 3.0.3 to 3.0.4
- [Release notes](https://github.com/jaraco/jaraco.stream/releases)
- [Changelog](https://github.com/jaraco/jaraco.stream/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.stream@v3.0.3...v3.0.4)

Updates `jaraco-text` from 3.12.1 to 4.0.0
- [Release notes](https://github.com/jaraco/jaraco.text/releases)
- [Changelog](https://github.com/jaraco/jaraco.text/blob/main/NEWS.rst)
- [Commits](jaraco/jaraco.text@v3.12.1...v4.0.0)

Updates `more-itertools` from 10.3.0 to 10.5.0
- [Release notes](https://github.com/more-itertools/more-itertools/releases)
- [Commits](more-itertools/more-itertools@v10.3.0...v10.5.0)

Updates `multidict` from 6.0.5 to 6.1.0
- [Release notes](https://github.com/aio-libs/multidict/releases)
- [Changelog](https://github.com/aio-libs/multidict/blob/master/CHANGES.rst)
- [Commits](aio-libs/multidict@v6.0.5...v6.1.0)

Updates `pydantic` from 2.7.4 to 2.10.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.7.4...v2.10.2)

Updates `pydantic-core` from 2.18.4 to 2.27.1
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.18.4...v2.27.1)

Updates `pytz` from 2024.1 to 2024.2
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2024.1...release_2024.2)

Updates `sentry-sdk` from 2.7.1 to 2.19.0
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.7.1...2.19.0)

Updates `tempora` from 5.6.0 to 5.7.0
- [Release notes](https://github.com/jaraco/tempora/releases)
- [Changelog](https://github.com/jaraco/tempora/blob/main/NEWS.rst)
- [Commits](jaraco/tempora@v5.6.0...v5.7.0)

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

Updates `urllib3` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.2.2...2.2.3)

Updates `yarl` from 1.9.4 to 1.18.0
- [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.9.4...v1.18.0)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: async-timeout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: attrs
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: frozenlist
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: inflect
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: irc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jaraco-collections
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jaraco-context
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: jaraco-functools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jaraco-stream
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: jaraco-text
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: more-itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: multidict
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydantic-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pytz
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: sentry-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tempora
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typeguard
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: yarl
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 1, 2024
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 Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants