Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

Bumps the production-dependencies group with 8 updates in the /demos/python/sdk_wireless_camera_control directory:

Package From To
construct 2.10.68 2.10.70
requests 2.32.4 2.32.5
protobuf 6.31.1 6.33.0
rich 14.0.0 14.2.0
zeroconf 0.147.0 0.148.0
pydantic 2.11.7 2.12.3
opencv-python 4.11.0.86 4.12.0.88
returns 0.25.0 0.26.0

Updates construct from 2.10.68 to 2.10.70

Release notes

Sourced from construct's releases.

v2.10.70

No release notes provided.

v2.10.69

Took a long time to get here... apologies...

Commits
  • c25a471 version uped to 2.10.70
  • a51ff8e version-increment fixed (uses python3 instead of 3.9)
  • 17fde99 Makefile changed (python3 instead of 3.10)
  • 8687b05 Merge pull request #1049 from kohlrabi/ordered_dict
  • a45ab3a Update conf.py (copyright 2023)
  • 363db84 Implement getstate and setstate on Container
  • 7a85d81 Use builtin dict instead of collections.OrderedDict for class Container if in...
  • 09bdd30 Issue 1014: testing new BytesIOWithOffsets class
  • 5733a95 Merge pull request #1015 from ntrrgc/tell-global-offsets
  • 164e1b7 Missing asserts in core tests fixed (issue #1013, thanks ntrrgc)
  • Additional commits viewable in compare view

Updates requests from 2.32.4 to 2.32.5

Release notes

Sourced from requests's releases.

v2.32.5

2.32.5 (2025-08-18)

Bugfixes

  • The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.

Deprecations

  • Added support for Python 3.14.
  • Dropped support for Python 3.8 following its end of support.
Changelog

Sourced from requests's changelog.

2.32.5 (2025-08-18)

Bugfixes

  • The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.

Deprecations

  • Added support for Python 3.14.
  • Dropped support for Python 3.8 following its end of support.
Commits
  • b25c87d v2.32.5
  • 131e506 Merge pull request #7010 from psf/dependabot/github_actions/actions/checkout-...
  • b336cb2 Bump actions/checkout from 4.2.0 to 5.0.0
  • 46e939b Update publish workflow to use artifact-id instead of name
  • 4b9c546 Merge pull request #6999 from psf/dependabot/github_actions/step-security/har...
  • 7618dbe Bump step-security/harden-runner from 2.12.0 to 2.13.0
  • 2edca11 Add support for Python 3.14 and drop support for Python 3.8 (#6993)
  • fec96cd Update Makefile rules (#6996)
  • d58d8aa docs: clarify timeout parameter uses seconds in Session.request (#6994)
  • 91a3eab Bump github/codeql-action from 3.28.5 to 3.29.0
  • Additional commits viewable in compare view

Updates protobuf from 6.31.1 to 6.33.0

Commits

Updates rich from 14.0.0 to 14.2.0

Release notes

Sourced from rich's releases.

The Easy as Pi release

This release bumps Python compatibility to the just-released Python 3.14.

[14.2.0] - 2025-10-09

Changed

The Lively Release

Live objects may now be nested. Previously a progress bar inside another progress context would fail. See the changelog below for this and other changes.

[14.1.0] - 2025-06-25

Changed

Fixed

Added

  • Added TTY_INTERACTIVE environment variable to force interactive mode off or on Textualize/rich#3777
Changelog

Sourced from rich's changelog.

[14.2.0] - 2025-10-09

Changed

[14.1.0] - 2025-06-25

Changed

Fixed

Added

  • Added TTY_INTERACTIVE environment variable to force interactive mode off or on Textualize/rich#3777
Commits

Updates zeroconf from 0.147.0 to 0.148.0

Release notes

Sourced from zeroconf's releases.

0.148.0

v0.148.0 (2025-10-05)

This release is published under the LGPL-2.1-or-later License.

Features


Detailed Changes: 0.147.3...0.148.0

0.147.3

v0.147.3 (2025-10-04)

This release is published under the LGPL-2.1-or-later License.

Bug Fixes


Detailed Changes: 0.147.2...0.147.3

0.147.2

v0.147.2 (2025-09-05)

Bug Fixes


Detailed Changes: 0.147.1...0.147.2

0.147.1

v0.147.1 (2025-09-05)

Bug Fixes

  • Increase check time and add random wait to avoid service collisions (#1611, 8c382ee)

Co-authored-by: J. Nick Koston nick@koston.org


Detailed Changes: 0.147.0...0.147.1

Changelog

Sourced from zeroconf's changelog.

CHANGELOG

v0.147.3 (2025-10-04)

Bug Fixes

v0.147.2 (2025-09-05)

Bug Fixes

v0.147.1 (2025-09-05)

Bug Fixes

  • Increase check time and add random wait to avoid service collisions (#1611, 8c382ee)

Co-authored-by: J. Nick Koston nick@koston.org

Commits

Updates pydantic from 2.11.7 to 2.12.3

Release notes

Sourced from pydantic's releases.

v2.12.3 2025-10-17

v2.12.3 (2025-10-17)

What's Changed

This is the third 2.13 patch release, fixing issues related to the FieldInfo class, and reverting a change to the supported after model validator function signatures.

  • Raise a warning when an invalid after model validator function signature is raised by @​Viicos in #12414. Starting in 2.12.0, using class methods for after model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.
  • Add FieldInfo.asdict() method, improve documentation around FieldInfo by @​Viicos in #12411. This also adds back support for mutations on FieldInfo classes, that are reused as Annotated metadata. However, note that this is still not a supported pattern. Instead, please refer to the added example in the documentation.

The blog post section on changes was also updated to document the changes related to serialize_as_any.

Full Changelog: pydantic/pydantic@v2.12.2...v2.12.3

v2.12.2 2025-10-14

v2.12.2 (2025-10-14)

What's Changed

Fixes

  • Release a new pydantic-core version, as a corrupted CPython 3.10 manylinux2014_aarch64 wheel got uploaded (pydantic-core#1843).
  • Fix issue with recursive generic models with a parent model class by @​Viicos in #12398

Full Changelog: pydantic/pydantic@v2.12.1...v2.12.2

v2.12.1 2025-10-13

v2.12.1 (2025-10-13)

GitHub release

What's Changed

This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.

Fixes

New Contributors

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.12.3 (2025-10-17)

GitHub release

What's Changed

This is the third 2.12 patch release, fixing issues related to the FieldInfo class, and reverting a change to the supported after model validator function signatures.

  • Raise a warning when an invalid after model validator function signature is raised by @​Viicos in #12414. Starting in 2.12.0, using class methods for after model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.
  • Add FieldInfo.asdict() method, improve documentation around FieldInfo by @​Viicos in #12411. This also add back support for mutations on FieldInfo classes, that are reused as Annotated metadata. However, note that this is still not a supported pattern. Instead, please refer to the added example in the documentation.

The blog post section on changes was also updated to document the changes related to serialize_as_any.

v2.12.2 (2025-10-14)

GitHub release

What's Changed

Fixes

  • Release a new pydantic-core version, as a corrupted CPython 3.10 manylinux2014_aarch64 wheel got uploaded (pydantic-core#1843).
  • Fix issue with recursive generic models with a parent model class by @​Viicos in #12398

v2.12.1 (2025-10-13)

GitHub release

What's Changed

This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.

Fixes

New Contributors

... (truncated)

Commits
  • 1a8850d Prepare release 2.12.3
  • 09dbcf2 Add FieldInfo.asdict() method, improve documentation around FieldInfo
  • 5da4331 Improve documentation about serialize as any behavior
  • 9c86324 Raise a warning when an invalid after model validator function signature is r...
  • 36a73c6 Update pydantic-extra-types dependency to version >=2.10.6
  • 1e616a3 Prepare release v2.12.2
  • dc302e2 Fix issue with recursive generic models with a parent model class
  • 6876485 Bump pydantic-core to v2.41.4
  • b4076c6 Prepare release 2.12.1
  • b67f072 Bump pydantic-core to v2.41.3
  • Additional commits viewable in compare view

Updates opencv-python from 4.11.0.86 to 4.12.0.88

Release notes

Sourced from opencv-python's releases.

4.12.0.88

Complete OpenCV 4.12.0 changelog: https://github.com/opencv/opencv/wiki/OpenCV-Change-Logs#version4120

Python:

  • Added libavif to the package and corresponding image format support on Linux and Mac OS. Windows is in progress.
  • Enabled GIF support by default.
  • Updated Numpy dependency rules. Packages for Python 3.9+ are built with Numpy 2.x. Packages for older Python version are built with Numpy 1.x.
  • Improved libjpeg-turbo performance in Windows builds (added NASM and assembly branches).
  • Made DNN, FLANN, G-API modules optional during the package build (bindings generation and typing).
Commits

Updates returns from 0.25.0 to 0.26.0

Release notes

Sourced from returns's releases.

0.26.0

Features

  • Added mypy>=1.16,<1.18 support
  • Added __bool__ to Maybe, only Nothing ever returns False

New Contributors

Full Changelog: dry-python/returns@0.25.0...0.26.0

Changelog

Sourced from returns's changelog.

0.26.0

Features

  • Added mypy>=1.16,<1.18 support
  • Added __bool__ to Maybe, only Nothing ever returns False
Commits

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 sdk Python SDK labels Nov 3, 2025
@dependabot dependabot bot requested a review from tcamise-gpsw as a code owner November 3, 2025 11:08
@dependabot dependabot bot added python sdk Python SDK dependencies Pull requests that update a dependency file labels Nov 3, 2025
Bumps the production-dependencies group with 8 updates in the /demos/python/sdk_wireless_camera_control directory:

| Package | From | To |
| --- | --- | --- |
| [construct](https://github.com/construct/construct) | `2.10.68` | `2.10.70` |
| [requests](https://github.com/psf/requests) | `2.32.4` | `2.32.5` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `6.31.1` | `6.33.0` |
| [rich](https://github.com/Textualize/rich) | `14.0.0` | `14.2.0` |
| [zeroconf](https://github.com/python-zeroconf/python-zeroconf) | `0.147.0` | `0.148.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.11.7` | `2.12.3` |
| [opencv-python](https://github.com/opencv/opencv-python) | `4.11.0.86` | `4.12.0.88` |
| [returns](https://github.com/dry-python/returns) | `0.25.0` | `0.26.0` |



Updates `construct` from 2.10.68 to 2.10.70
- [Release notes](https://github.com/construct/construct/releases)
- [Commits](construct/construct@v2.10.68...v2.10.70)

Updates `requests` from 2.32.4 to 2.32.5
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.32.4...v2.32.5)

Updates `protobuf` from 6.31.1 to 6.33.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `rich` from 14.0.0 to 14.2.0
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v14.0.0...v14.2.0)

Updates `zeroconf` from 0.147.0 to 0.148.0
- [Release notes](https://github.com/python-zeroconf/python-zeroconf/releases)
- [Changelog](https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md)
- [Commits](python-zeroconf/python-zeroconf@0.147.0...0.148.0)

Updates `pydantic` from 2.11.7 to 2.12.3
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.11.7...v2.12.3)

Updates `opencv-python` from 4.11.0.86 to 4.12.0.88
- [Release notes](https://github.com/opencv/opencv-python/releases)
- [Commits](https://github.com/opencv/opencv-python/commits)

Updates `returns` from 0.25.0 to 0.26.0
- [Release notes](https://github.com/dry-python/returns/releases)
- [Changelog](https://github.com/dry-python/returns/blob/master/CHANGELOG.md)
- [Commits](dry-python/returns@0.25.0...0.26.0)

---
updated-dependencies:
- dependency-name: construct
  dependency-version: 2.10.70
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: requests
  dependency-version: 2.32.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: protobuf
  dependency-version: 6.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rich
  dependency-version: 14.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: zeroconf
  dependency-version: 0.148.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pydantic
  dependency-version: 2.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: opencv-python
  dependency-version: 4.12.0.88
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: returns
  dependency-version: 0.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/demos/python/sdk_wireless_camera_control/production-dependencies-78ae28f470 branch from 524b743 to cf81d9d Compare November 7, 2025 17:49
@tcamise-gpsw tcamise-gpsw merged commit d0f7482 into main Nov 7, 2025
9 checks passed
@tcamise-gpsw tcamise-gpsw deleted the dependabot/pip/demos/python/sdk_wireless_camera_control/production-dependencies-78ae28f470 branch November 7, 2025 17:56
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 sdk Python SDK

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants