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

Bump the poetry-dependencies group with 15 updates #424

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the poetry-dependencies group with 15 updates:

Package From To
pydantic 2.10.1 2.10.2
pandas-stubs 2.2.3.241009 2.2.3.241126
cryptography 43.0.3 44.0.0
aiohttp 3.11.7 3.11.8
ruff 0.8.0 0.8.1
ipython 8.29.0 8.30.0
aiohappyeyeballs 2.4.3 2.4.4
asttokens 2.4.1 3.0.0
fastjsonschema 2.20.0 2.21.0
httpx 0.27.2 0.28.0
json5 0.9.28 0.10.0
nbclient 0.10.0 0.10.1
protobuf 5.28.3 5.29.0
pyjwt 2.10.0 2.10.1
tomli 2.1.0 2.2.1

Updates pydantic from 2.10.1 to 2.10.2

Release notes

Sourced from pydantic's releases.

v2.10.2 2024-11-26

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.10.1...v2.10.2

Changelog

Sourced from pydantic's changelog.

v2.10.2 (2024-11-25)

GitHub release

What's Changed

Fixes

Commits
  • fe32515 Prepare for v2.10.2 release (#10982)
  • 226cfaf Hide BaseModel.__replace__ definition from type checkers (#10979)
  • 02229a6 hashing support for urls (#10975)
  • a9cf39c Fix type hint of Field.default to be compatible with Python 3.8 and 3.9 (#1...
  • 869eafd Support serialization as any for Secret types and Url types (#10947)
  • 7c0ed72 Do not evaluate annotations for private fields (#10962)
  • d6fc7fc Only evaluate FieldInfo annotations if required during schema building (#10...
  • See full diff in compare view

Updates pandas-stubs from 2.2.3.241009 to 2.2.3.241126

Commits
  • 7f06ab1 Version 2.2.3.241126
  • 4ac23d6 GH1043 Update _typing.pyi: add "cross" option to JoinHow (#1044)
  • 02b0d7f GH1053 @ for DataFrame, eval in place for DataFrame, test migrations (#1054)
  • c5eecf8 Change signature of StringMethods.rsplit to match pandas (#1056)
  • facb30f GH1049 Deprecate Index and Grouper methods for 2.0 migration (#1050)
  • d289ef5 Fix Series.rename_axis and DataFrame.rename_axis typing (#1048)
  • 47fc9b6 GH1037 Remove na_sentinel from factorize methods (#1038)
  • 70ee340 GH1045 Split overload of groupby on as_index for all cases (#1046)
  • 03396ef Add @ operator type hints for Series (#1047)
  • 92bd9cb GH1033 Add overloads of engine for pd.read_json (#1035)
  • Additional commits viewable in compare view

Updates cryptography from 43.0.3 to 44.0.0

Changelog

Sourced from cryptography's changelog.

44.0.0 - 2024-11-27


* **BACKWARDS INCOMPATIBLE:** Dropped support for LibreSSL < 3.9.
* Deprecated Python 3.7 support. Python 3.7 is no longer supported by the
  Python core team. Support for Python 3.7 will be removed in a future
  ``cryptography`` release.
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.4.0.
* macOS wheels are now built against the macOS 10.13 SDK. Users on older
  versions of macOS should upgrade, or they will need to build
  ``cryptography`` themselves.
* Enforce the :rfc:`5280` requirement that extended key usage extensions must
  not be empty.
* Added support for timestamp extraction to the
  :class:`~cryptography.fernet.MultiFernet` class.
* Relax the Authority Key Identifier requirements on root CA certificates
  during X.509 verification to allow fields permitted by :rfc:`5280` but
  forbidden by the CA/Browser BRs.
* Added support for :class:`~cryptography.hazmat.primitives.kdf.argon2.Argon2id`
  when using OpenSSL 3.2.0+.
* Added support for the :class:`~cryptography.x509.Admissions` certificate extension.
* Added basic support for PKCS7 decryption (including S/MIME 3.2) via
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_der`,
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_pem`, and
  :func:`~cryptography.hazmat.primitives.serialization.pkcs7.pkcs7_decrypt_smime`.

.. _v43-0-3:

Commits

Updates aiohttp from 3.11.7 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 ruff from 0.8.0 to 0.8.1

Release notes

Sourced from ruff's releases.

0.8.1

Release Notes

Preview features

  • Formatter: Avoid invalid syntax for format-spec with quotes for all Python versions (#14625)
  • Formatter: Consider quotes inside format-specs when choosing the quotes for an f-string (#14493)
  • Formatter: Do not consider f-strings with escaped newlines as multiline (#14624)
  • Formatter: Fix f-string formatting in assignment statement (#14454)
  • Formatter: Fix unnecessary space around power operator (**) in overlong f-string expressions (#14489)
  • [airflow] Avoid implicit schedule argument to DAG and @dag (AIR301) (#14581)
  • [flake8-builtins] Exempt private built-in modules (A005) (#14505)
  • [flake8-pytest-style] Fix pytest.mark.parametrize rules to check calls instead of decorators (#14515)
  • [flake8-type-checking] Implement runtime-cast-value (TC006) (#14511)
  • [flake8-type-checking] Implement unquoted-type-alias (TC007) and quoted-type-alias (TC008) (#12927)
  • [flake8-use-pathlib] Recommend Path.iterdir() over os.listdir() (PTH208) (#14509)
  • [pylint] Extend invalid-envvar-default to detect os.environ.get (PLW1508) (#14512)
  • [pylint] Implement len-test (PLC1802) (#14309)
  • [refurb] Fix bug where methods defined using lambdas were flagged by FURB118 (#14639)
  • [ruff] Auto-add r prefix when string has no backslashes for unraw-re-pattern (RUF039) (#14536)
  • [ruff] Implement invalid-assert-message-literal-argument (RUF040) (#14488)
  • [ruff] Implement unnecessary-nested-literal (RUF041) (#14323)
  • [ruff] Implement unnecessary-regular-expression (RUF055) (#14659)

Rule changes

  • Ignore more rules for stub files (#14541)
  • [pep8-naming] Eliminate false positives for single-letter names (N811, N814) (#14584)
  • [pyflakes] Avoid false positives in @no_type_check contexts (F821, F722) (#14615)
  • [ruff] Detect redirected-noqa in file-level comments (RUF101) (#14635)
  • [ruff] Mark fixes for unsorted-dunder-all and unsorted-dunder-slots as unsafe when there are complex comments in the sequence (RUF022, RUF023) (#14560)

Bug fixes

  • Avoid fixing code to None | None for redundant-none-literal (PYI061) and never-union (RUF020) (#14583, #14589)
  • [flake8-bugbear] Fix mutable-contextvar-default to resolve annotated function calls properly (B039) (#14532)
  • [flake8-pyi, ruff] Fix traversal of nested literals and unions (PYI016, PYI051, PYI055, PYI062, RUF041) (#14641)
  • [flake8-pyi] Avoid rewriting invalid type expressions in unnecessary-type-union (PYI055) (#14660)
  • [flake8-type-checking] Avoid syntax errors and type checking problem for quoted annotations autofix (TC003, TC006) (#14634)
  • [pylint] Do not wrap function calls in parentheses in the fix for unnecessary-dunder-call (PLC2801) (#14601)
  • [ruff] Handle attrs's auto_attribs correctly (RUF009) (#14520)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.8.1

Preview features

  • Formatter: Avoid invalid syntax for format-spec with quotes for all Python versions (#14625)
  • Formatter: Consider quotes inside format-specs when choosing the quotes for an f-string (#14493)
  • Formatter: Do not consider f-strings with escaped newlines as multiline (#14624)
  • Formatter: Fix f-string formatting in assignment statement (#14454)
  • Formatter: Fix unnecessary space around power operator (**) in overlong f-string expressions (#14489)
  • [airflow] Avoid implicit schedule argument to DAG and @dag (AIR301) (#14581)
  • [flake8-builtins] Exempt private built-in modules (A005) (#14505)
  • [flake8-pytest-style] Fix pytest.mark.parametrize rules to check calls instead of decorators (#14515)
  • [flake8-type-checking] Implement runtime-cast-value (TC006) (#14511)
  • [flake8-type-checking] Implement unquoted-type-alias (TC007) and quoted-type-alias (TC008) (#12927)
  • [flake8-use-pathlib] Recommend Path.iterdir() over os.listdir() (PTH208) (#14509)
  • [pylint] Extend invalid-envvar-default to detect os.environ.get (PLW1508) (#14512)
  • [pylint] Implement len-test (PLC1802) (#14309)
  • [refurb] Fix bug where methods defined using lambdas were flagged by FURB118 (#14639)
  • [ruff] Auto-add r prefix when string has no backslashes for unraw-re-pattern (RUF039) (#14536)
  • [ruff] Implement invalid-assert-message-literal-argument (RUF040) (#14488)
  • [ruff] Implement unnecessary-nested-literal (RUF041) (#14323)
  • [ruff] Implement unnecessary-regular-expression (RUF055) (#14659)

Rule changes

  • Ignore more rules for stub files (#14541)
  • [pep8-naming] Eliminate false positives for single-letter names (N811, N814) (#14584)
  • [pyflakes] Avoid false positives in @no_type_check contexts (F821, F722) (#14615)
  • [ruff] Detect redirected-noqa in file-level comments (RUF101) (#14635)
  • [ruff] Mark fixes for unsorted-dunder-all and unsorted-dunder-slots as unsafe when there are complex comments in the sequence (RUF022, RUF023) (#14560)

Bug fixes

  • Avoid fixing code to None | None for redundant-none-literal (PYI061) and never-union (RUF020) (#14583, #14589)
  • [flake8-bugbear] Fix mutable-contextvar-default to resolve annotated function calls properly (B039) (#14532)
  • [flake8-pyi, ruff] Fix traversal of nested literals and unions (PYI016, PYI051, PYI055, PYI062, RUF041) (#14641)
  • [flake8-pyi] Avoid rewriting invalid type expressions in unnecessary-type-union (PYI055) (#14660)
  • [flake8-type-checking] Avoid syntax errors and type checking problem for quoted annotations autofix (TC003, TC006) (#14634)
  • [pylint] Do not wrap function calls in parentheses in the fix for unnecessary-dunder-call (PLC2801) (#14601)
  • [ruff] Handle attrs's auto_attribs correctly (RUF009) (#14520)
Commits
  • b3b2c98 Update CHANGELOG.md with the new commits for 0.8.1 (#14664)
  • abb3c6e [flake8-pyi] Avoid rewriting invalid type expressions in `unnecessary-type-...
  • 224fe75 [ruff] Implement unnecessary-regular-expression (RUF055) (#14659)
  • dc29f52 [flake8-pyi, ruff] Fix traversal of nested literals and unions (PYI016,...
  • d9cbf2f Avoids unnecessary overhead for TC004, when TC001-003 are disabled (#14657)
  • 3f6c65e [red-knot] Fix merged type after if-else without explicit else branch (#14621)
  • 976c37a Bump version to 0.8.1 (#14655)
  • a378ff3 [red-knot] Fix Boolean flags in mdtests (#14654)
  • d8bca0d Fix bug where methods defined using lambdas were flagged by FURB118 (#14639)
  • 6f1cf5b [red-knot] Minor fix in MRO tests (#14652)
  • Additional commits viewable in compare view

Updates ipython from 8.29.0 to 8.30.0

Commits

Updates aiohappyeyeballs from 2.4.3 to 2.4.4

Release notes

Sourced from aiohappyeyeballs's releases.

v2.4.4 (2024-11-30)

Fix

  • fix: handle OSError on failure to close socket instead of raising IndexError (#114)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@​users.noreply.github.com> Co-authored-by: J. Nick Koston <[email protected]> (c542f68)

Changelog

Sourced from aiohappyeyeballs's changelog.

v2.4.4 (2024-11-30)

Fix

  • Handle oserror on failure to close socket instead of raising indexerror (#114) (c542f68)
Commits

Updates asttokens from 2.4.1 to 3.0.0

Commits
  • 0ebecde Update setup.cfg to use newer licence_files key; update commands and notes in...
  • 89f02d2 More cleanup of code for Python before 3.8, fix astroid import (#156)
  • eb1e401 Bump requests from 2.31.0 to 2.32.2 in /docs (#154)
  • 4eebd86 remove dependency on six (#155)
  • ad41ab6 Bump urllib3 from 2.0.7 to 2.2.2 in /docs (#146)
  • d8910b4 Bump certifi from 2023.7.22 to 2024.7.4 in /docs (#147)
  • 7a8f3a8 trim Python2 <-> 3 hybridation (#153)
  • d025140 Test Python 3.13 (#152)
  • 0224610 Fix edge cases in test failures involving padding and TypeVar (#151)
  • 71ea82b Stop testing on Python < 3.8 (#149)
  • Additional commits viewable in compare view

Updates fastjsonschema from 2.20.0 to 2.21.0

Changelog

Sourced from fastjsonschema's changelog.

=== 2.21.0 (2024-11-27)

  • Updated test suite
  • Fixed detecting when infinity is reached with multipleOf
  • Fixed that min/max items/lenght/properties can be float
  • Fixed that everything with empty not is invalid
  • Fixed missing re import when using regex pattern
  • Improved regexp for email format to comfort test suite
  • Improved regexp for date format to comfort test suite
  • Improved regexp for ipv4 format to comfort test suite
  • Added partial support of idn-hostname format
  • Added detailed_exceptions flag (default to True to avoid breaking change) - when used, results are twice as fast
Commits
  • acf076e v2.21.0
  • 52458fe Add re import when using regex pattern
  • b0e2bcc Add detailed_exception parameter
  • 356bfa2 Merge pull request #188 from edgarrmondragon/cp313
  • 437ccf4 Test on Python 3.13
  • c66483f Update ignored test list
  • 14cf7af Added partial support of idn-hostname format
  • bb03f7c Improved regexp for ipv4 format to comfort test suite
  • 524b9e8 Improved regexp for date format to comfort test suite
  • 952c501 Improved regexp for email format to comfort test suite
  • Additional commits viewable in compare view

Updates httpx from 0.27.2 to 0.28.0

Release notes

Sourced from httpx's releases.

Version 0.28.0

0.28.0 (28th November, 2024)

The 0.28 release includes a limited set of deprecations.

Deprecations:

We are working towards a simplified SSL configuration API.

For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated...

  • The verify argument as a string argument is now deprecated and will raise warnings.
  • The cert argument is now deprecated and will raise warnings.

Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.

The following changes are also included:

  • The deprecated proxies argument has now been removed.
  • The deprecated app argument has now been removed.
  • JSON request bodies use a compact representation. (#3363)
  • Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
  • Ensure certifi and httpcore are only imported if required. (#3377)
  • Treat socks5h as a valid proxy scheme. (#3178)
  • Cleanup Request() method signature in line with client.request() and httpx.request(). (#3378)
Changelog

Sourced from httpx's changelog.

0.28.0 (28th November, 2024)

The 0.28 release includes a limited set of deprecations.

Deprecations:

We are working towards a simplified SSL configuration API.

For users of the standard verify=True or verify=False cases, or verify=<ssl_context> case this should require no changes. The following cases have been deprecated...

  • The verify argument as a string argument is now deprecated and will raise warnings.
  • The cert argument is now deprecated and will raise warnings.

Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.

The following changes are also included:

  • The deprecated proxies argument has now been removed.
  • The deprecated app argument has now been removed.
  • JSON request bodies use a compact representation. (#3363)
  • Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
  • Ensure certifi and httpcore are only imported if required. (#3377)
  • Treat socks5h as a valid proxy scheme. (#3178)
  • Cleanup Request() method signature in line with client.request() and httpx.request(). (#3378)
Commits

Updates json5 from 0.9.28 to 0.10.0

Commits
  • 3bc470c Add custom encoding to dump/dumps. (#88)
  • 9adb352 format //run
  • af8fae2 Rework //run script to be more consistent and use uv for more things.
  • e3b2ffa Disable too-many-statements in pylintrc.
  • 795b6fc Fix format of version for dev builds.
  • 8dbdc58 Use astral GitHub Action rule to install uv.
  • a0963ac Add uv.lock lockfile
  • 4702255 Bump version to 0.9.29_dev.
  • See full diff in compare view

Updates nbclient from 0.10.0 to 0.10.1

Release notes

Sourced from nbclient's releases.

v0.10.1

0.10.1

(Full Changelog)

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​davidbrochart | @​lucascolley

Changelog

Sourced from nbclient's changelog.

0.10.1

(Full Changelog)

Maintenance and upkeep improvements

Other merged PRs

Contributors to this release

(GitHub contributors page for this release)

@​blink1073 | @​davidbrochart | @​lucascolley

Commits

Updates protobuf from 5.28.3 to 5.29.0

Commits
  • 2d4414f Updating version.json and repo version numbers to: 29.0
  • 870e599 Revert upgrade to rules_java 8.3.1. This is a partial roll-back of fb8ee79 (#...
  • 02cffa4 Fix typo in BCR maintainer name config for acozzette@ (#19307)
  • 7537b03 Remove Bazel 6 in BCR presubmits (#19309)
  • 325aa80 Merge pull request #19305 from protocolbuffers/29.x-202411182222
  • c13eb62 Updating version.json and repo version numbers to: 29.0-dev
  • 71c2594 Updating version.json and repo version numbers to: 29.0-rc3
  • b69ea96 Fixed non-conformance in JSON parsing for empty strings in numeric fields. (#...
  • fb8ee79 Upgrade rules_cc 0.0.15 and rules_java 8.3.1 (#19215)
  • 6f310d5 Add missing line to docstring after Args (#19213)
  • Additional commits viewable in compare view

Updates pyjwt from 2.10.0 to 2.10.1

Release notes

Sourced from pyjwt's releases.

2.10.1

Fixed

Full Changelog: jpadilla/pyjwt@2.10.0...2.10.1

Changelog

Sourced from pyjwt's changelog.

v2.10.1 <https://github.com/jpadilla/pyjwt/compare/2.10.0...2.10.1>__

Fixed


- Prevent partial matching of `iss` claim by @fabianbadoi in `GHSA-75c5-xw7c-p5pm <https://github.com/jpadilla/pyjwt/security/advisories/GHSA-75c5-xw7c-p5pm>`__
Description has been truncated


This change is Reviewable

Bumps the poetry-dependencies group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.1` | `2.10.2` |
| [pandas-stubs](https://github.com/pandas-dev/pandas-stubs) | `2.2.3.241009` | `2.2.3.241126` |
| [cryptography](https://github.com/pyca/cryptography) | `43.0.3` | `44.0.0` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.11.7` | `3.11.8` |
| [ruff](https://github.com/astral-sh/ruff) | `0.8.0` | `0.8.1` |
| [ipython](https://github.com/ipython/ipython) | `8.29.0` | `8.30.0` |
| [aiohappyeyeballs](https://github.com/aio-libs/aiohappyeyeballs) | `2.4.3` | `2.4.4` |
| [asttokens](https://github.com/gristlabs/asttokens) | `2.4.1` | `3.0.0` |
| [fastjsonschema](https://github.com/horejsek/python-fastjsonschema) | `2.20.0` | `2.21.0` |
| [httpx](https://github.com/encode/httpx) | `0.27.2` | `0.28.0` |
| [json5](https://github.com/dpranke/pyjson5) | `0.9.28` | `0.10.0` |
| [nbclient](https://github.com/jupyter/nbclient) | `0.10.0` | `0.10.1` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `5.28.3` | `5.29.0` |
| [pyjwt](https://github.com/jpadilla/pyjwt) | `2.10.0` | `2.10.1` |
| [tomli](https://github.com/hukkin/tomli) | `2.1.0` | `2.2.1` |


Updates `pydantic` from 2.10.1 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.10.1...v2.10.2)

Updates `pandas-stubs` from 2.2.3.241009 to 2.2.3.241126
- [Changelog](https://github.com/pandas-dev/pandas-stubs/blob/main/docs/release_procedure.md)
- [Commits](pandas-dev/pandas-stubs@v2.2.3.241009...v2.2.3.241126)

Updates `cryptography` from 43.0.3 to 44.0.0
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@43.0.3...44.0.0)

Updates `aiohttp` from 3.11.7 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.11.7...v3.11.8)

Updates `ruff` from 0.8.0 to 0.8.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.8.0...0.8.1)

Updates `ipython` from 8.29.0 to 8.30.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.29.0...8.30.0)

Updates `aiohappyeyeballs` from 2.4.3 to 2.4.4
- [Release notes](https://github.com/aio-libs/aiohappyeyeballs/releases)
- [Changelog](https://github.com/aio-libs/aiohappyeyeballs/blob/main/CHANGELOG.md)
- [Commits](aio-libs/aiohappyeyeballs@v2.4.3...v2.4.4)

Updates `asttokens` from 2.4.1 to 3.0.0
- [Commits](gristlabs/asttokens@v2.4.1...v3.0.0)

Updates `fastjsonschema` from 2.20.0 to 2.21.0
- [Changelog](https://github.com/horejsek/python-fastjsonschema/blob/master/CHANGELOG.txt)
- [Commits](horejsek/python-fastjsonschema@v2.20.0...v2.21.0)

Updates `httpx` from 0.27.2 to 0.28.0
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.27.2...0.28.0)

Updates `json5` from 0.9.28 to 0.10.0
- [Commits](dpranke/pyjson5@v0.9.28...v0.10.0)

Updates `nbclient` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/jupyter/nbclient/releases)
- [Changelog](https://github.com/jupyter/nbclient/blob/main/CHANGELOG.md)
- [Commits](jupyter/nbclient@v0.10.0...v0.10.1)

Updates `protobuf` from 5.28.3 to 5.29.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](protocolbuffers/protobuf@v5.28.3...v5.29.0)

Updates `pyjwt` from 2.10.0 to 2.10.1
- [Release notes](https://github.com/jpadilla/pyjwt/releases)
- [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst)
- [Commits](jpadilla/pyjwt@2.10.0...2.10.1)

Updates `tomli` from 2.1.0 to 2.2.1
- [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md)
- [Commits](hukkin/tomli@2.1.0...2.2.1)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: pandas-stubs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: cryptography
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: aiohappyeyeballs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: asttokens
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: fastjsonschema
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: httpx
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: json5
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: nbclient
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: protobuf
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: pyjwt
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: tomli
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-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
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 1, 2025
@dependabot dependabot bot deleted the dependabot/pip/poetry-dependencies-1b73097ee6 branch January 1, 2025 02:14
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