Skip to content

chore(deps-dev): bump twilio/sdk from 7.3.0 to 8.11.2#1957

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/twilio/sdk-8.11.2
Closed

chore(deps-dev): bump twilio/sdk from 7.3.0 to 8.11.2#1957
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/twilio/sdk-8.11.2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2026

Bumps twilio/sdk from 7.3.0 to 8.11.2.

Release notes

Sourced from twilio/sdk's releases.

8.11.2

Release Notes

Library - Chore

Twiml

  • Rename recording_configuration to recording_configuration_id attribute in <Conference>, <Dial>, <Record> verbs and <Recording> noun

Ace

  • ACE Signals API Changes

  • 2026-02-18

  • Initial release: POST /signals, GET/POST /signals/{signal_id}/results, GET /health
  • Enables OneAdmin integration for synchronous signal ingestion and policy result polling
  • Supports permission-based authorization for signal operations
  • Health endpoint available for monitoring without authentication

Api

  • Added optional parameter Confirmation to Payments create endpoint to enable payment confirmation prompt before gateway submission
  • Added optional parameter RequireMatchingInputs to Payments create endpoint for input confirmation in agent-assisted payment flows
  • Added matcher capture types (payment-card-number-matcher, expiration-date-matcher, security-code-matcher, postal-code-matcher) to Payments update endpoint

Memory

  • 2026-03-06

  • Modified 1 path(s):
  • /v1/Stores/{storeId}/Profiles/{profileId}/ConversationSummaries/{summaryId} (added patch, get)

Docs

8.11.1

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)

... (truncated)

Changelog

Sourced from twilio/sdk's changelog.

[2026-03-10] Version 8.11.2

Library - Chore

Twiml

  • Rename recording_configuration to recording_configuration_id attribute in <Conference>, <Dial>, <Record> verbs and <Recording> noun

Ace

  • ACE Signals API Changes

  • 2026-02-18

  • Initial release: POST /signals, GET/POST /signals/{signal_id}/results, GET /health
  • Enables OneAdmin integration for synchronous signal ingestion and policy result polling
  • Supports permission-based authorization for signal operations
  • Health endpoint available for monitoring without authentication

Api

  • Added optional parameter Confirmation to Payments create endpoint to enable payment confirmation prompt before gateway submission
  • Added optional parameter RequireMatchingInputs to Payments create endpoint for input confirmation in agent-assisted payment flows
  • Added matcher capture types (payment-card-number-matcher, expiration-date-matcher, security-code-matcher, postal-code-matcher) to Payments update endpoint

Memory

  • 2026-03-06

  • Modified 1 path(s):
  • /v1/Stores/{storeId}/Profiles/{profileId}/ConversationSummaries/{summaryId} (added patch, get)

[2026-02-18] Version 8.11.1

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)

... (truncated)

Upgrade guide

Sourced from twilio/sdk's upgrade guide.

Upgrade Guide

MAJOR version bumps will have upgrade notes posted here.

[2023-03-25] 7.x.x to 8.x.x

Twilio Php Helper Library’s major version 8.0.0 is now available. We ensured that you can upgrade to Php helper Library 8.0.0 version without any breaking changes of existing apis

Behind the scenes Php Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages. We're pleased to inform you that version 8.0.0 adds support for the application/json content type in the request body.

[2023-03-08] 6.x.x to 7.x.x

Twilio Php Helper Library’s major version 7.0.1 is now available. We ensured that you can upgrade to Php helper Library 7.0.1 version without any breaking changes. Behind the scenes Php Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages.

[2020-04-15] 6.2.x to 6.3.x

CHANGED - Optional header parameters added to Authy endpoints

Custom headers are now supported in twilio-php. The addition of these optional parameters have caused a breaking change to the read, page, and stream functions for Entity, Service, and Factor resources. These functions now expect an array of optional parameters as the first argument.

6.2.x

<? 
use Twilio\Rest\Client;
$twilio = new Client();
$entities = $twilio->authy->v1->services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
->entities
->read(20);

6.3.x

<? 
use Twilio\Rest\Client;
$twilio = new Client();
$entities = $twilio->authy->v1->services("ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
->entities
->read([], 20);

[2020-02-19] 5.x.x to 6.x.x

Overview

Version 6.x.x is the first version that officially drops support for Php versions 5.5, 5.6, 7.0, and 7.1.

Removal and updates to support removing Php versions 5.5, 5.6, 7.0, and 7.1:

... (truncated)

Commits
  • f4536d5 Release 8.11.2
  • b8a88de [Librarian] Regenerated @ 6e3b90a45885c596ade6b11ff7100254b15c9403 b84ee26554...
  • 7061dc4 chore: disable testFetchMessageUsingPublicOAuth (#909)
  • 3bda0aa Release 8.11.1
  • a4589fb [Librarian] Regenerated @ b71b4c3e1a369dfb33fc0093ed77cf8197b688e1 1ec6a52af6...
  • e3b9248 Release 8.11.0
  • 2b9b71e [Librarian] Regenerated @ b71b4c3e1a369dfb33fc0093ed77cf8197b688e1 ac3dbbbf62...
  • fcfe2e6 Revert "fix: Regional API domain processing (#894)" (#908)
  • 269db8e feat: return response headers (#902)
  • 84fc8e4 Release 8.10.1
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [twilio/sdk](https://github.com/twilio/twilio-php) from 7.3.0 to 8.11.2.
- [Release notes](https://github.com/twilio/twilio-php/releases)
- [Changelog](https://github.com/twilio/twilio-php/blob/main/CHANGES.md)
- [Upgrade guide](https://github.com/twilio/twilio-php/blob/main/UPGRADE.md)
- [Commits](twilio/twilio-php@7.3.0...8.11.2)

---
updated-dependencies:
- dependency-name: twilio/sdk
  dependency-version: 8.11.2
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Mar 10, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 20, 2026

Looks like twilio/sdk is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Mar 20, 2026
@dependabot dependabot bot deleted the dependabot/composer/twilio/sdk-8.11.2 branch March 20, 2026 15:29
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 php Pull requests that update php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants