Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 19, 2025

Bumps the pip-production-dependencies group with 4 updates in the /src directory: grpcio-health-checking, openfeature-provider-flagd, psutil and openai.
Bumps the pip-production-dependencies group with 1 update in the /src/llm directory: openfeature-provider-flagd.
Bumps the pip-production-dependencies group with 4 updates in the /src/product-reviews directory: grpcio-health-checking, openfeature-provider-flagd, psutil and openai.
Bumps the pip-production-dependencies group with 3 updates in the /src/recommendation directory: grpcio-health-checking, openfeature-provider-flagd and psutil.

Updates grpcio-health-checking from 1.71.0 to 1.76.0

Updates openfeature-provider-flagd from 0.2.3 to 0.2.6

Release notes

Sourced from openfeature-provider-flagd's releases.

openfeature-provider-flagd: v0.2.6

0.2.6 (2025-07-22)

🐛 Bug Fixes

  • flagd: Add upperbound to protobuf version to reduce potential conflict with other version (5ad2896)
  • flagd: adjust flagd to updated error codes (#285) (64d755b)
  • flagd: fix protobuf version for file generation to lowest 5.x version (#280) (5ad2896)

openfeature-provider-flagd: v0.2.5

0.2.5 (2025-07-08)

🐛 Bug Fixes

  • flagd: reduce loglevel of expected logs (#277) (cca865f)

openfeature-provider-flagd: v0.2.4

0.2.4 (2025-06-10)

🐛 Bug Fixes

🧹 Chore

  • deps: update dependency grpcio-health-checking to v1.72.1 (#258) (e087353)
  • deps: update dependency grpcio-health-checking to v1.73.0 (#259) (7a080b0)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.7.4 (#237) (65f70d2)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.8.0 (#239) (709ed25)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 18cde17 (#233) (bf9ef82)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 36944c6 (#240) (030c6ed)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to bb2dc2c (#256) (34979b6)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to cbfa0a9 (#260) (d0ec36f)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to d27e000 (#242) (fd97b35)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to edf0deb (#248) (1771423)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to f014806 (#253) (067f19f)
Commits
  • d89b5b8 chore(main): release openfeature-provider-flagd 0.2.6 (#284)
  • 64d755b fix(flagd): adjust flagd to updated error codes (#285)
  • abd39e4 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.4 (#286)
  • 5ad2896 fix(flagd): fix protobuf version for file generation to lowest 5.x version (#...
  • 72e6bd3 feat: Add basic env var provider (#276)
  • 144c725 chore(main): release openfeature-provider-flagd 0.2.5 (#264)
  • cca865f fix(flagd): reduce loglevel of expected logs (#277)
  • be40f24 chore: reduce release please noise
  • fd5ee15 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.2 (#275)
  • 5da2af5 chore(deps): update providers/openfeature-provider-flagd/openfeature/spec dig...
  • Additional commits viewable in compare view

Updates psutil from 7.0.0 to 7.1.3

Changelog

Sourced from psutil's changelog.

7.1.3

2025-11-02

Enhancements

  • 2667_: enforce clang-format on all C and header files. It is now the mandatory formatting style for all C sources.
  • 2672_, [macOS], [BSD]: increase the chances to recognize zombie processes and raise the appropriate exception (ZombieProcess_).
  • 2676_, 2678_: replace unsafe sprintf / snprintf / sprintf_s calls with str_format(). Replace strlcat / strlcpy with safe str_copy / str_append. This unifies string handling across platforms and reduces unsafe usage of standard string functions, improving robustness.

Bug fixes

  • 2674_, [Windows]: disk_usage()_ could truncate values on 32-bit platforms, potentially reporting incorrect total/free/used space for drives larger than 4GB.
  • 2675_, [macOS]: Process.status()_ incorrectly returns "running" for 99% of the processes.
  • 2677_, [Windows]: fix MAC address string construction in net_if_addrs()_. Previously, the MAC address buffer was incorrectly updated using a fixed increment and sprintf_s, which could overflow or misformat the string if the MAC length or formatting changed. Also, the final '\n' was inserted unnecessarily.
  • 2679_, [OpenBSD], [NetBSD], [critical]: can't build due to C syntax error.

7.1.2

2025-10-25

Enhancements

  • 2657_: stop publishing prebuilt Linux and Windows wheels for 32-bit Python. 32-bit CPython is still supported, but psutil must now be built from source. 2565_: produce wheels for free-thread cPython 3.13 and 3.14 (patch by Lysandros Nikolaou)

Bug fixes

  • 2650_, [macOS]: Process.cmdline()_ and Process.environ()_ may incorrectly raise NoSuchProcess_ instead of ZombieProcess_.
  • 2658_, [macOS]: double free() in Process.environ()_ when it fails internally. This posed a risk of segfault.
  • 2662_, [macOS]: massive C code cleanup to guard against possible segfaults which were (not so) sporadically spotted on CI.

... (truncated)

Commits
  • 5904ff9 Pre-release
  • d42db80 Update DEVGUIDE.rst
  • e4e1003 psutil_kinfo_proc: return in case of badargs; also print to stderr in case of...
  • bcdede4 Introduce PSUTIL_TESTING mode. Terminate execution if str_* funcs fail
  • 6822ba7 Replace strlcat/strlcpy with safe str_copy/str_append (#2678)
  • 0a7465c Windows: use str_format() in psutil_users().
  • fd05690 [Windows] fix MAC address string construction in net_if_addrs() (#2677)
  • 7d82135 NetBSD: refact proc cwd()
  • 262977f Replace unsafe sprintf/snprintf/sprintf_s calls with str_format() (#2676)
  • 1ba3cf5 Fix #2675 / macOS: convert process status() to a meaningful value
  • Additional commits viewable in compare view

Updates openai from 2.13.0 to 2.14.0

Release notes

Sourced from openai's releases.

v2.14.0

2.14.0 (2025-12-19)

Full Changelog: v2.13.0...v2.14.0

Features

  • api: slugs for new audio models; make all model params accept strings (e517792)

Bug Fixes

  • use async_to_httpx_files in patch method (a6af9ee)

Chores

  • internal: add --fix argument to lint script (93107ef)
Changelog

Sourced from openai's changelog.

2.14.0 (2025-12-19)

Full Changelog: v2.13.0...v2.14.0

Features

  • api: slugs for new audio models; make all model params accept strings (e517792)

Bug Fixes

  • use async_to_httpx_files in patch method (a6af9ee)

Chores

  • internal: add --fix argument to lint script (93107ef)
Commits
  • d3e6321 release: 2.14.0
  • 4547f1a codegen metadata
  • a3c27a2 chore(internal): add --fix argument to lint script
  • 51c6885 feat(api): slugs for new audio models; make all model params accept strings
  • 62699d9 fix: use async_to_httpx_files in patch method
  • 20af6aa codegen metadata
  • See full diff in compare view

Updates openfeature-provider-flagd from 0.2.3 to 0.2.6

Release notes

Sourced from openfeature-provider-flagd's releases.

openfeature-provider-flagd: v0.2.6

0.2.6 (2025-07-22)

🐛 Bug Fixes

  • flagd: Add upperbound to protobuf version to reduce potential conflict with other version (5ad2896)
  • flagd: adjust flagd to updated error codes (#285) (64d755b)
  • flagd: fix protobuf version for file generation to lowest 5.x version (#280) (5ad2896)

openfeature-provider-flagd: v0.2.5

0.2.5 (2025-07-08)

🐛 Bug Fixes

  • flagd: reduce loglevel of expected logs (#277) (cca865f)

openfeature-provider-flagd: v0.2.4

0.2.4 (2025-06-10)

🐛 Bug Fixes

🧹 Chore

  • deps: update dependency grpcio-health-checking to v1.72.1 (#258) (e087353)
  • deps: update dependency grpcio-health-checking to v1.73.0 (#259) (7a080b0)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.7.4 (#237) (65f70d2)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.8.0 (#239) (709ed25)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 18cde17 (#233) (bf9ef82)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 36944c6 (#240) (030c6ed)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to bb2dc2c (#256) (34979b6)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to cbfa0a9 (#260) (d0ec36f)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to d27e000 (#242) (fd97b35)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to edf0deb (#248) (1771423)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to f014806 (#253) (067f19f)
Commits
  • d89b5b8 chore(main): release openfeature-provider-flagd 0.2.6 (#284)
  • 64d755b fix(flagd): adjust flagd to updated error codes (#285)
  • abd39e4 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.4 (#286)
  • 5ad2896 fix(flagd): fix protobuf version for file generation to lowest 5.x version (#...
  • 72e6bd3 feat: Add basic env var provider (#276)
  • 144c725 chore(main): release openfeature-provider-flagd 0.2.5 (#264)
  • cca865f fix(flagd): reduce loglevel of expected logs (#277)
  • be40f24 chore: reduce release please noise
  • fd5ee15 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.2 (#275)
  • 5da2af5 chore(deps): update providers/openfeature-provider-flagd/openfeature/spec dig...
  • Additional commits viewable in compare view

Updates grpcio-health-checking from 1.71.0 to 1.76.0

Updates openfeature-provider-flagd from 0.2.3 to 0.2.6

Release notes

Sourced from openfeature-provider-flagd's releases.

openfeature-provider-flagd: v0.2.6

0.2.6 (2025-07-22)

🐛 Bug Fixes

  • flagd: Add upperbound to protobuf version to reduce potential conflict with other version (5ad2896)
  • flagd: adjust flagd to updated error codes (#285) (64d755b)
  • flagd: fix protobuf version for file generation to lowest 5.x version (#280) (5ad2896)

openfeature-provider-flagd: v0.2.5

0.2.5 (2025-07-08)

🐛 Bug Fixes

  • flagd: reduce loglevel of expected logs (#277) (cca865f)

openfeature-provider-flagd: v0.2.4

0.2.4 (2025-06-10)

🐛 Bug Fixes

🧹 Chore

  • deps: update dependency grpcio-health-checking to v1.72.1 (#258) (e087353)
  • deps: update dependency grpcio-health-checking to v1.73.0 (#259) (7a080b0)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.7.4 (#237) (65f70d2)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.8.0 (#239) (709ed25)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 18cde17 (#233) (bf9ef82)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 36944c6 (#240) (030c6ed)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to bb2dc2c (#256) (34979b6)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to cbfa0a9 (#260) (d0ec36f)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to d27e000 (#242) (fd97b35)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to edf0deb (#248) (1771423)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to f014806 (#253) (067f19f)
Commits
  • d89b5b8 chore(main): release openfeature-provider-flagd 0.2.6 (#284)
  • 64d755b fix(flagd): adjust flagd to updated error codes (#285)
  • abd39e4 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.4 (#286)
  • 5ad2896 fix(flagd): fix protobuf version for file generation to lowest 5.x version (#...
  • 72e6bd3 feat: Add basic env var provider (#276)
  • 144c725 chore(main): release openfeature-provider-flagd 0.2.5 (#264)
  • cca865f fix(flagd): reduce loglevel of expected logs (#277)
  • be40f24 chore: reduce release please noise
  • fd5ee15 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.2 (#275)
  • 5da2af5 chore(deps): update providers/openfeature-provider-flagd/openfeature/spec dig...
  • Additional commits viewable in compare view

Updates psutil from 7.0.0 to 7.1.3

Changelog

Sourced from psutil's changelog.

7.1.3

2025-11-02

Enhancements

  • 2667_: enforce clang-format on all C and header files. It is now the mandatory formatting style for all C sources.
  • 2672_, [macOS], [BSD]: increase the chances to recognize zombie processes and raise the appropriate exception (ZombieProcess_).
  • 2676_, 2678_: replace unsafe sprintf / snprintf / sprintf_s calls with str_format(). Replace strlcat / strlcpy with safe str_copy / str_append. This unifies string handling across platforms and reduces unsafe usage of standard string functions, improving robustness.

Bug fixes

  • 2674_, [Windows]: disk_usage()_ could truncate values on 32-bit platforms, potentially reporting incorrect total/free/used space for drives larger than 4GB.
  • 2675_, [macOS]: Process.status()_ incorrectly returns "running" for 99% of the processes.
  • 2677_, [Windows]: fix MAC address string construction in net_if_addrs()_. Previously, the MAC address buffer was incorrectly updated using a fixed increment and sprintf_s, which could overflow or misformat the string if the MAC length or formatting changed. Also, the final '\n' was inserted unnecessarily.
  • 2679_, [OpenBSD], [NetBSD], [critical]: can't build due to C syntax error.

7.1.2

2025-10-25

Enhancements

  • 2657_: stop publishing prebuilt Linux and Windows wheels for 32-bit Python. 32-bit CPython is still supported, but psutil must now be built from source. 2565_: produce wheels for free-thread cPython 3.13 and 3.14 (patch by Lysandros Nikolaou)

Bug fixes

  • 2650_, [macOS]: Process.cmdline()_ and Process.environ()_ may incorrectly raise NoSuchProcess_ instead of ZombieProcess_.
  • 2658_, [macOS]: double free() in Process.environ()_ when it fails internally. This posed a risk of segfault.
  • 2662_, [macOS]: massive C code cleanup to guard against possible segfaults which were (not so) sporadically spotted on CI.

... (truncated)

Commits
  • 5904ff9 Pre-release
  • d42db80 Update DEVGUIDE.rst
  • e4e1003 psutil_kinfo_proc: return in case of badargs; also print to stderr in case of...
  • bcdede4 Introduce PSUTIL_TESTING mode. Terminate execution if str_* funcs fail
  • 6822ba7 Replace strlcat/strlcpy with safe str_copy/str_append (#2678)
  • 0a7465c Windows: use str_format() in psutil_users().
  • fd05690 [Windows] fix MAC address string construction in net_if_addrs() (#2677)
  • 7d82135 NetBSD: refact proc cwd()
  • 262977f Replace unsafe sprintf/snprintf/sprintf_s calls with str_format() (#2676)
  • 1ba3cf5 Fix #2675 / macOS: convert process status() to a meaningful value
  • Additional commits viewable in compare view

Updates openai from 2.13.0 to 2.14.0

Release notes

Sourced from openai's releases.

v2.14.0

2.14.0 (2025-12-19)

Full Changelog: v2.13.0...v2.14.0

Features

  • api: slugs for new audio models; make all model params accept strings (e517792)

Bug Fixes

  • use async_to_httpx_files in patch method (a6af9ee)

Chores

  • internal: add --fix argument to lint script (93107ef)
Changelog

Sourced from openai's changelog.

2.14.0 (2025-12-19)

Full Changelog: v2.13.0...v2.14.0

Features

  • api: slugs for new audio models; make all model params accept strings (e517792)

Bug Fixes

  • use async_to_httpx_files in patch method (a6af9ee)

Chores

  • internal: add --fix argument to lint script (93107ef)
Commits
  • d3e6321 release: 2.14.0
  • 4547f1a codegen metadata
  • a3c27a2 chore(internal): add --fix argument to lint script
  • 51c6885 feat(api): slugs for new audio models; make all model params accept strings
  • 62699d9 fix: use async_to_httpx_files in patch method
  • 20af6aa codegen metadata
  • See full diff in compare view

Updates grpcio-health-checking from 1.71.0 to 1.76.0

Updates openfeature-provider-flagd from 0.2.3 to 0.2.6

Release notes

Sourced from openfeature-provider-flagd's releases.

openfeature-provider-flagd: v0.2.6

0.2.6 (2025-07-22)

🐛 Bug Fixes

  • flagd: Add upperbound to protobuf version to reduce potential conflict with other version (5ad2896)
  • flagd: adjust flagd to updated error codes (#285) (64d755b)
  • flagd: fix protobuf version for file generation to lowest 5.x version (#280) (5ad2896)

openfeature-provider-flagd: v0.2.5

0.2.5 (2025-07-08)

🐛 Bug Fixes

  • flagd: reduce loglevel of expected logs (#277) (cca865f)

openfeature-provider-flagd: v0.2.4

0.2.4 (2025-06-10)

🐛 Bug Fixes

🧹 Chore

  • deps: update dependency grpcio-health-checking to v1.72.1 (#258) (e087353)
  • deps: update dependency grpcio-health-checking to v1.73.0 (#259) (7a080b0)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.7.4 (#237) (65f70d2)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.8.0 (#239) (709ed25)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 18cde17 (#233) (bf9ef82)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 36944c6 (#240) (030c6ed)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to bb2dc2c (#256) (34979b6)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to cbfa0a9 (#260) (d0ec36f)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to d27e000 (#242) (fd97b35)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to edf0deb (#248) (1771423)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to f014806 (#253) (067f19f)
Commits
  • d89b5b8 chore(main): release openfeature-provider-flagd 0.2.6 (#284)
  • 64d755b fix(flagd): adjust flagd to updated error codes (#285)
  • abd39e4 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.4 (#286)
  • 5ad2896 fix(flagd): fix protobuf version for file generation to lowest 5.x version (#...
  • 72e6bd3 feat: Add basic env var provider (#276)
  • 144c725 chore(main): release openfeature-provider-flagd 0.2.5 (#264)
  • cca865f fix(flagd): reduce loglevel of expected logs (#277)
  • be40f24 chore: reduce release please noise
  • fd5ee15 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.2 (#275)
  • 5da2af5 chore(deps): update providers/openfeature-provider-flagd/openfeature/spec dig...
  • Additional commits viewable in compare view

Updates psutil from 7.0.0 to 7.1.3

Changelog

Sourced from psutil's changelog.

7.1.3

2025-11-02

Enhancements

  • 2667_: enforce clang-format on all C and header files. It is now the mandatory formatting style for all C sources.
  • 2672_, [macOS], [BSD]: increase the chances to recognize zombie processes and raise the appropriate exception (ZombieProcess_).
  • 2676_, 2678_: replace unsafe sprintf / snprintf / sprintf_s calls with str_format(). Replace strlcat / strlcpy with safe str_copy / str_append. This unifies string handling across platforms and reduces unsafe usage of standard string functions, improving robustness.

Bug fixes

  • 2674_, [Windows]: disk_usage()_ could truncate values on 32-bit platforms, potentially reporting incorrect total/free/used space for drives larger than 4GB.
  • 2675_, [macOS]: Process.status()_ incorrectly returns "running" for 99% of the processes.
  • 2677_, [Windows]: fix MAC address string construction in net_if_addrs()_. Previously, the MAC address buffer was incorrectly updated using a fixed increment and sprintf_s, which could overflow or misformat the string if the MAC length or formatting changed. Also, the final '\n' was inserted unnecessarily.
  • 2679_, [OpenBSD], [NetBSD], [critical]: can't build due to C syntax error.

7.1.2

2025-10-25

Enhancements

  • 2657_: stop publishing prebuilt Linux and Windows wheels for 32-bit Python. 32-bit CPython is still supported, but psutil must now be built from source. 2565_: produce wheels for free-thread cPython 3.13 and 3.14 (patch by Lysandros Nikolaou)

Bug fixes

  • 2650_, [macOS]: Process.cmdline()_ and Process.environ()_ may incorrectly raise NoSuchProcess_ instead of ZombieProcess_.
  • 2658_, [macOS]: double free() in Process.environ()_ when it fails internally. This posed a risk of segfault.
  • 2662_, [macOS]: massive C code cleanup to guard against possible segfaults which were (not so) sporadically spotted on CI.

... (truncated)

Commits
  • 5904ff9 Pre-release
  • d42db80 Update DEVGUIDE.rst
  • e4e1003 psutil_kinfo_proc: return in case of badargs; also print to stderr in case of...
  • bcdede4 Introduce PSUTIL_TESTING mode. Terminate execution if str_* funcs fail
  • 6822ba7 Replace strlcat/strlcpy with safe str_copy/str_append (#2678)
  • 0a7465c Windows: use str_format() in psutil_users().
  • fd05690 [Windows] fix MAC address string construction in net_if_addrs() (#2677)
  • 7d82135 NetBSD: refact proc cwd()
  • 262977f Replace unsafe sprintf/snprintf/sprintf_s calls with str_format() (#2676)
  • 1ba3cf5 Fix #2675 / macOS: convert process status() to a meaningful value
  • Additional commits viewable in compare view

Updates openfeature-provider-flagd from 0.2.3 to 0.2.6

Release notes

Sourced from openfeature-provider-flagd's releases.

openfeature-provider-flagd: v0.2.6

0.2.6 (2025-07-22)

🐛 Bug Fixes

  • flagd: Add upperbound to protobuf version to reduce potential conflict with other version (5ad2896)
  • flagd: adjust flagd to updated error codes (#285) (64d755b)
  • flagd: fix protobuf version for file generation to lowest 5.x version (#280) (5ad2896)

openfeature-provider-flagd: v0.2.5

0.2.5 (2025-07-08)

🐛 Bug Fixes

  • flagd: reduce loglevel of expected logs (#277) (cca865f)

openfeature-provider-flagd: v0.2.4

0.2.4 (2025-06-10)

🐛 Bug Fixes

🧹 Chore

  • deps: update dependency grpcio-health-checking to v1.72.1 (#258) (e087353)
  • deps: update dependency grpcio-health-checking to v1.73.0 (#259) (7a080b0)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.7.4 (#237) (65f70d2)
  • deps: update dependency providers/openfeature-provider-flagd/openfeature/test-harness to v2.8.0 (#239) (709ed25)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 18cde17 (#233) (bf9ef82)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to 36944c6 (#240) (030c6ed)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to bb2dc2c (#256) (34979b6)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to cbfa0a9 (#260) (d0ec36f)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to d27e000 (#242) (fd97b35)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to edf0deb (#248) (1771423)
  • deps: update providers/openfeature-provider-flagd/openfeature/spec digest to f014806 (#253) (067f19f)
Commits
  • d89b5b8 chore(main): release openfeature-provider-flagd 0.2.6 (#284)
  • 64d755b fix(flagd): adjust flagd to updated error codes (#285)
  • abd39e4 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.12.4 (#286)
  • 5ad2896 fix(flagd): fix protobuf version ...

    Description has been truncated

…ctories with 4 updates

Bumps the pip-production-dependencies group with 4 updates in the /src directory: [grpcio-health-checking](https://grpc.io), [openfeature-provider-flagd](https://github.com/open-feature/python-sdk-contrib), [psutil](https://github.com/giampaolo/psutil) and [openai](https://github.com/openai/openai-python).
Bumps the pip-production-dependencies group with 1 update in the /src/llm directory: [openfeature-provider-flagd](https://github.com/open-feature/python-sdk-contrib).
Bumps the pip-production-dependencies group with 4 updates in the /src/product-reviews directory: [grpcio-health-checking](https://grpc.io), [openfeature-provider-flagd](https://github.com/open-feature/python-sdk-contrib), [psutil](https://github.com/giampaolo/psutil) and [openai](https://github.com/openai/openai-python).
Bumps the pip-production-dependencies group with 3 updates in the /src/recommendation directory: [grpcio-health-checking](https://grpc.io), [openfeature-provider-flagd](https://github.com/open-feature/python-sdk-contrib) and [psutil](https://github.com/giampaolo/psutil).


Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `openai` from 2.13.0 to 2.14.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v2.13.0...v2.14.0)

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `openai` from 2.13.0 to 2.14.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v2.13.0...v2.14.0)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `openai` from 2.13.0 to 2.14.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v2.13.0...v2.14.0)

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `openai` from 2.13.0 to 2.14.0
- [Release notes](https://github.com/openai/openai-python/releases)
- [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md)
- [Commits](openai/openai-python@v2.13.0...v2.14.0)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

Updates `grpcio-health-checking` from 1.71.0 to 1.76.0

Updates `openfeature-provider-flagd` from 0.2.3 to 0.2.6
- [Release notes](https://github.com/open-feature/python-sdk-contrib/releases)
- [Changelog](https://github.com/open-feature/python-sdk-contrib/blob/main/release-please-config.json)
- [Commits](open-feature/python-sdk-contrib@openfeature-provider-flagd/v0.2.3...openfeature-provider-flagd/v0.2.6)

Updates `psutil` from 7.0.0 to 7.1.3
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-7.0.0...release-7.1.3)

---
updated-dependencies:
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openai
  dependency-version: 2.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openai
  dependency-version: 2.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openai
  dependency-version: 2.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openai
  dependency-version: 2.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: grpcio-health-checking
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-dependencies
- dependency-name: openfeature-provider-flagd
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-production-dependencies
- dependency-name: psutil
  dependency-version: 7.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-production-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 19, 2025
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.

1 participant