Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 26, 2025

Bumps the all group with 8 updates in the / directory:

Package From To
certifi 2025.1.31 2025.4.26
h11 0.14.0 0.16.0
httpcore 1.0.8 1.0.9
more-itertools 10.6.0 10.7.0
multidict 6.4.3 6.4.4
pydantic 2.11.3 2.11.5
pydantic-core 2.33.1 2.34.1
typing-inspection 0.4.0 0.4.1

Updates certifi from 2025.1.31 to 2025.4.26

Commits
  • 275c9eb 2025.04.26 (#347)
  • 3788331 Bump actions/setup-python from 5.4.0 to 5.5.0 (#346)
  • 9d1f1b7 Bump actions/download-artifact from 4.1.9 to 4.2.1 (#344)
  • 96b97a5 Bump actions/upload-artifact from 4.6.1 to 4.6.2 (#343)
  • c054ed3 Bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (#342)
  • 44547fc Bump actions/download-artifact from 4.1.8 to 4.1.9 (#341)
  • 5ea5124 Bump actions/upload-artifact from 4.6.0 to 4.6.1 (#340)
  • 2f142b7 Bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 (#339)
  • 80d2ebd Bump actions/setup-python from 5.3.0 to 5.4.0 (#337)
  • See full diff in compare view

Updates h11 from 0.14.0 to 0.16.0

Commits

Updates httpcore from 1.0.8 to 1.0.9

Release notes

Sourced from httpcore's releases.

Version 1.0.9 (April 24th, 2025)

Changelog

Sourced from httpcore's changelog.

Version 1.0.9 (April 24th, 2025)

Commits

Updates more-itertools from 10.6.0 to 10.7.0

Release notes

Sourced from more-itertools's releases.

Version 10.7.0

See the change log here for details.

Commits
  • 28ab736 Merge pull request #977 from more-itertools/version-10.7.0
  • 4c1a0c7 Bump version: 10.6.0 → 10.7.0
  • f2d5c9f Late-breaking changes for 10.7.0
  • 5d5a9e6 Merge remote-tracking branch 'origin/master' into version-10.7.0
  • 8988de6 Merge pull request #975 from rhettinger/groupby_transform_overloads
  • c925c2e Fix inner Iterable types as well
  • cc38c74 Fix #974: Inconsistent @​overload signatures
  • 3742de9 Merge pull request #972 from ricbit/master
  • c904030 Fix some typos
  • 6d0fe02 Merge pull request #971 from rhettinger/small_doc_edits
  • Additional commits viewable in compare view

Updates multidict from 6.4.3 to 6.4.4

Release notes

Sourced from multidict's releases.

6.4.4

Bug fixes

  • Fixed a segmentation fault when calling :py:meth:multidict.MultiDict.setdefault with a single argument -- by :user:bdraco.

    Related issues and pull requests on GitHub: #1160.

  • Fixed a segmentation fault when attempting to directly instantiate view objects (multidict._ItemsView, multidict._KeysView, multidict._ValuesView) -- by :user:bdraco.

    View objects now raise a proper :exc:TypeError with the message "cannot create '...' instances directly" when direct instantiation is attempted.

    View objects should only be created through the proper methods: :py:meth:multidict.MultiDict.items, :py:meth:multidict.MultiDict.keys, and :py:meth:multidict.MultiDict.values.

    Related issues and pull requests on GitHub: #1164.

Miscellaneous internal changes

  • :class:multidict.MultiDictProxy was refactored to rely only on :class:multidict.MultiDict public interface and don't touch any implementation details.

    Related issues and pull requests on GitHub: #1150.

  • Multidict views were refactored to rely only on :class:multidict.MultiDict API and don't touch any implementation details.

    Related issues and pull requests on GitHub: #1152.

  • Dropped internal _Impl class from pure Python implementation, both pure Python and C Extension follows the same design internally now.

    Related issues and pull requests on GitHub: #1153.


Changelog

Sourced from multidict's changelog.

6.4.4

(2025-05-19)

Bug fixes

  • Fixed a segmentation fault when calling :py:meth:multidict.MultiDict.setdefault with a single argument -- by :user:bdraco.

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

  • Fixed a segmentation fault when attempting to directly instantiate view objects (multidict._ItemsView, multidict._KeysView, multidict._ValuesView) -- by :user:bdraco.

    View objects now raise a proper :exc:TypeError with the message "cannot create '...' instances directly" when direct instantiation is attempted.

    View objects should only be created through the proper methods: :py:meth:multidict.MultiDict.items, :py:meth:multidict.MultiDict.keys, and :py:meth:multidict.MultiDict.values.

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

Miscellaneous internal changes

  • :class:multidict.MultiDictProxy was refactored to rely only on :class:multidict.MultiDict public interface and don't touch any implementation details.

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

  • Multidict views were refactored to rely only on :class:multidict.MultiDict API and don't touch any implementation details.

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

  • Dropped internal _Impl class from pure Python implementation, both pure Python and C Extension follows the same design internally now.

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

... (truncated)

Commits

Updates pydantic from 2.11.3 to 2.11.5

Release notes

Sourced from pydantic's releases.

v2.11.5 2025-05-22

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.4...v2.11.5

v2.11.4 2025-04-29

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

Fixes

Changelog

Sourced from pydantic's changelog.

v2.11.5 (2025-05-22)

GitHub release

What's Changed

Fixes

v2.11.4 (2025-04-29)

GitHub release

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

Fixes

Commits
  • 5e6d1dc Prepare release v2.11.5
  • 1b63218 Do not duplicate metadata on model rebuild (#11902)
  • 5aefad8 Do not delete mock validator/serializer in model_rebuild()
  • 8fbe658 Check if FieldInfo is complete after applying type variable map
  • 12b371a Update documentation about @dataclass_transform support
  • 3a6aef4 Fix missing link in documentation
  • 0506b9c Fix light/dark mode documentation toggle
  • 58078c8 Fix typo in documentation
  • d444cd1 Prepare release v2.11.4
  • 828fc48 Add documentation note about common pitfall with the annotated pattern
  • Additional commits viewable in compare view

Updates pydantic-core from 2.33.1 to 2.34.1

Release notes

Sourced from pydantic-core's releases.

v2.34.1

No release notes provided.

v2.34.0 2025-04-17

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-core@v2.33.1...v2.34.0

v2.33.2 2025-04-23

What's Changed

Full Changelog: pydantic/pydantic-core@v2.33.1...v2.33.2

Commits

Updates typing-inspection from 0.4.0 to 0.4.1

Changelog

Sourced from typing-inspection's changelog.

v0.4.1 (2025-05-21)

  • Use list as a type hint for InspectedAnnotation.metadata by @​Viicos in #43
Commits
  • 3bc3f96 Prepare release 0.4.1 (#44)
  • 17b939c Bump development dependencies (#46)
  • dcdd318 Add proper reference to dataclasses.IniVar in AnnotationSource.DATACLASS ...
  • 5f86b14 Use list as a type hint for InspectedAnnotation.metadata (#43)
  • b737855 Add SPDX license identifier (#42)
  • 61c25e5 Improve test coverage (#41)
  • a56b8c3 Fix implementation of is_union_origin() (#40)
  • e20451f Add typing_objects.is_forwardref() (#38)
  • eb7654b Fix some typos (#36)
  • 5cb7257 Fix compatibility with latest Python 3.14 release (#37)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels May 26, 2025
Bumps the all group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [certifi](https://github.com/certifi/python-certifi) | `2025.1.31` | `2025.4.26` |
| [h11](https://github.com/python-hyper/h11) | `0.14.0` | `0.16.0` |
| [httpcore](https://github.com/encode/httpcore) | `1.0.8` | `1.0.9` |
| [more-itertools](https://github.com/more-itertools/more-itertools) | `10.6.0` | `10.7.0` |
| [multidict](https://github.com/aio-libs/multidict) | `6.4.3` | `6.4.4` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.11.3` | `2.11.5` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.33.1` | `2.34.1` |
| [typing-inspection](https://github.com/pydantic/typing-inspection) | `0.4.0` | `0.4.1` |



Updates `certifi` from 2025.1.31 to 2025.4.26
- [Commits](certifi/python-certifi@2025.01.31...2025.04.26)

Updates `h11` from 0.14.0 to 0.16.0
- [Commits](python-hyper/h11@v0.14.0...v0.16.0)

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

Updates `more-itertools` from 10.6.0 to 10.7.0
- [Release notes](https://github.com/more-itertools/more-itertools/releases)
- [Commits](more-itertools/more-itertools@v10.6.0...v10.7.0)

Updates `multidict` from 6.4.3 to 6.4.4
- [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.4.3...v6.4.4)

Updates `pydantic` from 2.11.3 to 2.11.5
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.11.3...v2.11.5)

Updates `pydantic-core` from 2.33.1 to 2.34.1
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.33.1...v2.34.1)

Updates `typing-inspection` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/pydantic/typing-inspection/releases)
- [Changelog](https://github.com/pydantic/typing-inspection/blob/main/HISTORY.md)
- [Commits](pydantic/typing-inspection@v0.4.0...v0.4.1)

---
updated-dependencies:
- dependency-name: certifi
  dependency-version: 2025.4.26
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: h11
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: httpcore
  dependency-version: 1.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: more-itertools
  dependency-version: 10.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: multidict
  dependency-version: 6.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pydantic
  dependency-version: 2.11.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pydantic-core
  dependency-version: 2.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typing-inspection
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/uv/all-31974dba06 branch from 50d672a to fe95f2c Compare June 9, 2025 03:21
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 16, 2025

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

@dependabot dependabot bot closed this Jun 16, 2025
@dependabot dependabot bot deleted the dependabot/uv/all-31974dba06 branch June 16, 2025 03:51
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.

1 participant