Skip to content

chore(deps): bump the production-dependencies group with 6 updates#136

Open
dependabot[bot] wants to merge 1 commit intostagingfrom
dependabot/pip/staging/production-dependencies-2709689a6a
Open

chore(deps): bump the production-dependencies group with 6 updates#136
dependabot[bot] wants to merge 1 commit intostagingfrom
dependabot/pip/staging/production-dependencies-2709689a6a

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the production-dependencies group with 6 updates:

Package From To
grpcio 1.78.0 1.78.1
grpcio-tools 1.78.0 1.78.1
peewee 3.19.0 4.0.0
phonenumbers 9.0.23 9.0.24
sentry-sdk 2.52.0 2.53.0
twilio 9.10.1 9.10.2

Updates grpcio from 1.78.0 to 1.78.1

Release notes

Sourced from grpcio's releases.

Release v1.78.1

This is release 1.78.1 (gutsy) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Python

  • Remove unintentional log WARNING: All log messages before absl::InitializeLog() is called are written to STDERR. (#41639)
  • Fix inconsistent GRPC_ENABLE_FORK_SUPPORT runtime defaults between gRPC Core and Python. (#41588).
    • This fixed #37710, a request processing hang in certain multithreaded environments: Other threads are currently calling into gRPC, skipping fork() handlers.
  • Modernize the API Docs site: https://grpc.github.io/grpc/python. (#41494)

Ruby

  • Build/test ruby 4.0 and build native gems with Ruby 4.0 support. (#41554)
Commits
  • 5b6492e [Release] Bump version to 1.78.1 (on v1.78.x branch) (#41681)
  • 7139801 [Backport][v1.78.x][Python] Resolve absl::InitializeLog warning (#41639)
  • c44abb2 [Backport] Fix BCR build for 1.78.x (#41586)
  • de33c9c [Backport][v1.78.x][Python] Align GRPC_ENABLE_FORK_SUPPORT env defaults in co...
  • 2da3f5e [Backport][v1.78.x][Python] Modernize and revamp Public API Docs (#41494)
  • 704d68e [Backport][v1.78.x][Ruby] Build/test ruby 4.0 and build native gems with Ruby...
  • See full diff in compare view

Updates grpcio-tools from 1.78.0 to 1.78.1

Release notes

Sourced from grpcio-tools's releases.

Release v1.78.1

This is release 1.78.1 (gutsy) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Python

  • Remove unintentional log WARNING: All log messages before absl::InitializeLog() is called are written to STDERR. (#41639)
  • Fix inconsistent GRPC_ENABLE_FORK_SUPPORT runtime defaults between gRPC Core and Python. (#41588).
    • This fixed #37710, a request processing hang in certain multithreaded environments: Other threads are currently calling into gRPC, skipping fork() handlers.
  • Modernize the API Docs site: https://grpc.github.io/grpc/python. (#41494)

Ruby

  • Build/test ruby 4.0 and build native gems with Ruby 4.0 support. (#41554)
Commits
  • 5b6492e [Release] Bump version to 1.78.1 (on v1.78.x branch) (#41681)
  • 7139801 [Backport][v1.78.x][Python] Resolve absl::InitializeLog warning (#41639)
  • c44abb2 [Backport] Fix BCR build for 1.78.x (#41586)
  • de33c9c [Backport][v1.78.x][Python] Align GRPC_ENABLE_FORK_SUPPORT env defaults in co...
  • 2da3f5e [Backport][v1.78.x][Python] Modernize and revamp Public API Docs (#41494)
  • 704d68e [Backport][v1.78.x][Ruby] Build/test ruby 4.0 and build native gems with Ruby...
  • See full diff in compare view

Updates peewee from 3.19.0 to 4.0.0

Release notes

Sourced from peewee's releases.

4.0.0

  • Adds preliminary support for asyncio via a new playhouse extension. See the documentation for details.
  • PostgresqlDatabase can use psycopg (psycopg3) if it is installed. If both psycopg2 and psycopg3 are installed, Peewee will prefer psycopg2, but this can be controlled by specifying prefer_psycopg3=True in the constructor. Same applies to PostgresqlExtDatabase.
  • Psycopg3Database class has been moved to playhouse.postgres_ext and is now just a thin wrapper around PostgresqlExtDatabase.
  • Postgres JSON operations no longer dump and try to do minimal casts, instead relying on the driver-provided Json() wrapper(s).
  • Adds new ISODateTimeField for Sqlite that encodes datetimes in ISO format (more friendly when db is shared with other tools), and also properly reads back UTC offset info.
  • Remove playhouse.sqlite_ext.ClosureTable implementation.
  • Add a Model.dirty_field_names attribute that is safe for membership testing, since testing x in dirty_fields returns True if one or more field exists due to operator overloads returning a truthy Expression object. Refs #3028.
  • Removal of Cython _sqlite_ext extension. The C implementations of the FTS rank functions are moved to sqlite_udf. Most of the remaining functionality is moved to playhouse.cysqlite_ext which supports it natively.

Migrating CSqliteExtDatabase usage:

You can either use sqlite_ext.SqliteExtDatabase or try the new cysqlite_ext.CySqliteDatabase if you want all the old functionality and are willing to try a new driver.

View commits

Changelog

Sourced from peewee's changelog.

4.0.0 (pending)

  • Adds preliminary support for asyncio via a new playhouse extension. See the documentation for details.
  • PostgresqlDatabase can use psycopg (psycopg3) if it is installed. If both psycopg2 and psycopg3 are installed, Peewee will prefer psycopg2, but this can be controlled by specifying prefer_psycopg3=True in the constructor. Same applies to PostgresqlExtDatabase.
  • Psycopg3Database class has been moved to playhouse.postgres_ext and is now just a thin wrapper around PostgresqlExtDatabase.
  • Postgres JSON operations no longer dump and try to do minimal casts, instead relying on the driver-provided Json() wrapper(s).
  • Adds new ISODateTimeField for Sqlite that encodes datetimes in ISO format (more friendly when db is shared with other tools), and also properly reads back UTC offset info.
  • Remove playhouse.sqlite_ext.ClosureTable implementation.
  • Add a Model.dirty_field_names attribute that is safe for membership testing, since testing x in dirty_fields returns True if one or more field exists due to operator overloads returning a truthy Expression object. Refs #3028.
  • Removal of Cython _sqlite_ext extension. The C implementations of the FTS rank functions are moved to sqlite_udf. Most of the remaining functionality is moved to playhouse.cysqlite_ext which supports it natively.

Migrating CSqliteExtDatabase usage:

You can either use sqlite_ext.SqliteExtDatabase or try the new cysqlite_ext.CySqliteDatabase if you want all the old functionality and are willing to try a new driver.

View commits

Commits
  • 19e9b2b 4.0.0
  • 40be6e8 Use AsIs in sqlite_ext where appropriate.
  • 47770ac Clean up AsIs usage.
  • ead61e3 Prep 4.0 stuff
  • c808802 Clean up docs, new theme.
  • d19cac6 Clarify docs on asyncio implementation.
  • 03b9fdf Fix copy/paste typo
  • e184587 SqliteDatabase handles regexp now.
  • 18c8e24 Remove (very niche) sqlite closure-table extension.
  • a4683ec Clarify some notes in changelog, remove dumps= parameter.
  • Additional commits viewable in compare view

Updates phonenumbers from 9.0.23 to 9.0.24

Commits

Updates sentry-sdk from 2.52.0 to 2.53.0

Release notes

Sourced from sentry-sdk's releases.

2.53.0

Bug Fixes 🐛

Openai Agents

Other

Documentation 📚

Internal Changes 🔧

Openai Agents

Other

Changelog

Sourced from sentry-sdk's changelog.

2.53.0

Bug Fixes 🐛

Openai Agents

Other

Documentation 📚

Internal Changes 🔧

Openai Agents

Other

Commits
  • f75a9ac Update CHANGELOG.md
  • b700fa8 Update CHANGELOG.md
  • 45379e2 release: 2.53.0
  • 4d8faf3 test(openai-agents): New tool field and library error log (#5454)
  • d3e2c88 fix(openai-agents): Patch execute_final_output() functions following librar...
  • f71a604 fix(openai-agents): Patch execute_handoffs() functions following library re...
  • bea608c fix(openai-agents): Patch run_single_turn_streamed() functions following li...
  • 14e3e0a fix(openai-agents): Patch run_single_turn() functions following library ref...
  • a5c2906 fix(openai-agents): Patch models functions following library refactor (#5449)
  • f78df7c ci: Use fixed clickhouse action, remove aws-sam-cli dependency (#5457)
  • Additional commits viewable in compare view

Updates twilio from 9.10.1 to 9.10.2

Release notes

Sourced from twilio's releases.

9.10.2

Release Notes

Api

  • Remove inequality examples from Calls StartTime and EndTime filter descriptions

Memory

  • 2026-02-06

  • Minor updates (formatting, metadata)
  • 2026-02-06

  • Minor updates (formatting, metadata)
  • 2026-02-06

  • 2026-01-23

  • 2026-01-23

  • Added 3 new path(s):
  • /v1/Stores/{storeId}/Profiles/Imports (ListProfileImportsV2, CreateProfilesImportV2)
  • /v1/Stores/{storeId}/Profiles/Imports/{importId} (FetchProfileImportV2)
  • Removed 6 path(s):
  • /v1/KnowledgeBases/{kbId}/Knowledge (ListKnowledge, CreateKnowledge)
  • /v1/KnowledgeBases/{kbId}/Search (KnowledgeSearch)
  • /v1/KnowledgeBases/{kbId}/Knowledge/{knowledgeId} (RetrieveKnowledge, PatchKnowledge, DeleteKnowledge)
  • /v1/KnowledgeBases/{kbId}/Knowledge/{knowledgeId}/Chunks (ListKnowledgeChunks)
  • /v1/ControlPlane/KnowledgeBases (ListKnowledgeBases, CreateKnowledgeBase)
  • /v1/ControlPlane/KnowledgeBases/{kbId} (GetKnowledgeBase, UpdateKnowledgeBase, DeleteKnowledgeBase)
  • 2026-01-05

  • 2026-01-05

  • Initial release with 26 paths and 48 operations

Docs

Changelog

Sourced from twilio's changelog.

[2026-02-18] Version 9.10.2

Api

  • Remove inequality examples from Calls StartTime and EndTime filter descriptions

Memory

  • 2026-02-06

  • Minor updates (formatting, metadata)
  • 2026-02-06

  • Minor updates (formatting, metadata)
  • 2026-02-06

  • 2026-01-23

  • 2026-01-23

  • Added 3 new path(s):
  • /v1/Stores/{storeId}/Profiles/Imports (ListProfileImportsV2, CreateProfilesImportV2)
  • /v1/Stores/{storeId}/Profiles/Imports/{importId} (FetchProfileImportV2)
  • Removed 6 path(s):
  • /v1/KnowledgeBases/{kbId}/Knowledge (ListKnowledge, CreateKnowledge)
  • /v1/KnowledgeBases/{kbId}/Search (KnowledgeSearch)
  • /v1/KnowledgeBases/{kbId}/Knowledge/{knowledgeId} (RetrieveKnowledge, PatchKnowledge, DeleteKnowledge)
  • /v1/KnowledgeBases/{kbId}/Knowledge/{knowledgeId}/Chunks (ListKnowledgeChunks)
  • /v1/ControlPlane/KnowledgeBases (ListKnowledgeBases, CreateKnowledgeBase)
  • /v1/ControlPlane/KnowledgeBases/{kbId} (GetKnowledgeBase, UpdateKnowledgeBase, DeleteKnowledgeBase)
  • 2026-01-05

  • 2026-01-05

  • Initial release with 26 paths and 48 operations
Commits
  • 3477f45 Release 9.10.2
  • f34aadb [Librarian] Regenerated @ b71b4c3e1a369dfb33fc0093ed77cf8197b688e1 1ec6a52af6...
  • See full diff 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 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

Bumps the production-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [grpcio](https://github.com/grpc/grpc) | `1.78.0` | `1.78.1` |
| [grpcio-tools](https://github.com/grpc/grpc) | `1.78.0` | `1.78.1` |
| [peewee](https://github.com/coleifer/peewee) | `3.19.0` | `4.0.0` |
| [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers) | `9.0.23` | `9.0.24` |
| [sentry-sdk](https://github.com/getsentry/sentry-python) | `2.52.0` | `2.53.0` |
| [twilio](https://github.com/twilio/twilio-python) | `9.10.1` | `9.10.2` |


Updates `grpcio` from 1.78.0 to 1.78.1
- [Release notes](https://github.com/grpc/grpc/releases)
- [Commits](grpc/grpc@v1.78.0...v1.78.1)

Updates `grpcio-tools` from 1.78.0 to 1.78.1
- [Release notes](https://github.com/grpc/grpc/releases)
- [Commits](grpc/grpc@v1.78.0...v1.78.1)

Updates `peewee` from 3.19.0 to 4.0.0
- [Release notes](https://github.com/coleifer/peewee/releases)
- [Changelog](https://github.com/coleifer/peewee/blob/master/CHANGELOG.md)
- [Commits](coleifer/peewee@3.19.0...4.0.0)

Updates `phonenumbers` from 9.0.23 to 9.0.24
- [Commits](daviddrysdale/python-phonenumbers@v9.0.23...v9.0.24)

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

Updates `twilio` from 9.10.1 to 9.10.2
- [Release notes](https://github.com/twilio/twilio-python/releases)
- [Changelog](https://github.com/twilio/twilio-python/blob/main/CHANGES.md)
- [Commits](twilio/twilio-python@9.10.1...9.10.2)

---
updated-dependencies:
- dependency-name: grpcio
  dependency-version: 1.78.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: grpcio-tools
  dependency-version: 1.78.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: peewee
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: phonenumbers
  dependency-version: 9.0.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: sentry-sdk
  dependency-version: 2.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: twilio
  dependency-version: 9.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 23, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants