TwilioDevEd / automated-survey-django

A sample app for automated phone surveys with Twilio, TwiML, Python and Django
https://www.twilio.com/docs/tutorials/walkthrough/automated-survey/python/django
54 stars 29 forks source link

Bump twilio from 6.9.0 to 7.15.4 #235

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 2 years ago

Bumps twilio from 6.9.0 to 7.15.4.

Release notes

Sourced from twilio's releases.

7.15.4

Release Notes

Flex

  • Adding new assessments api in version v1

Lookups

  • Add identity_match package to the lookup response

Messaging

  • Added validated parameter to Link Shortening API

Serverless

  • Add node16 as a valid Build runtime
  • Add ie1 and au1 as supported regions for all endpoints.

Docs

7.15.3

Release Notes

Library - Chore

Api

  • Set the Content resource to have public visibility as Preview

Flex

  • Adding new parameter base_url to 'gooddata' response in version v1

Insights

  • Added answered_by field in List Call Summary
  • Added answered_by field in call summary

Docs

7.15.2

Release Notes

Flex

  • Adding two new authorization API 'user_roles' and 'gooddata' in version v1

Messaging

  • Add new Campaign properties (MessageFlow, OptInMessage, OptInKeywords, OptOutMessage, OptOutKeywords, HelpMessage, HelpKeywords)

Twiml

  • Add new speech models to Gather.

... (truncated)

Changelog

Sourced from twilio's changelog.

[2022-11-30] Version 7.15.4

Flex

  • Adding new assessments api in version v1

Lookups

  • Add identity_match package to the lookup response

Messaging

  • Added validated parameter to Link Shortening API

Serverless

  • Add node16 as a valid Build runtime
  • Add ie1 and au1 as supported regions for all endpoints.

[2022-11-16] Version 7.15.3

Library - Chore

Api

  • Set the Content resource to have public visibility as Preview

Flex

  • Adding new parameter base_url to 'gooddata' response in version v1

Insights

  • Added answered_by field in List Call Summary
  • Added answered_by field in call summary

[2022-11-10] Version 7.15.2

Flex

  • Adding two new authorization API 'user_roles' and 'gooddata' in version v1

Messaging

  • Add new Campaign properties (MessageFlow, OptInMessage, OptInKeywords, OptOutMessage, OptOutKeywords, HelpMessage, HelpKeywords)

Twiml

  • Add new speech models to Gather.

[2022-10-31] Version 7.15.1

Api

  • Added contentSid and contentVariables to Message resource with public visibility as Beta
  • Add UserDefinedMessageSubscription and UserDefinedMessage resource

... (truncated)

Upgrade guide

Sourced from twilio's upgrade guide.

Upgrade Guide

MAJOR version bumps will have upgrade notes posted here.

[2021-09-22] 6.x.x to 7.x.x

Overview

Version 7.x.x is the first version that officially drops support for Python versions 2.7, 3.4, and 3.5.

Removal of files and dependencies that were added to support Python 2.7, 3.4, and 3.5:

  • Six
    • Removed use of u a fake unicode literal
    • Removed use of b a fake bytes literal
    • Removed PY3 a boolean indicating if the code is running on Python 3
    • text_type type for representing (Unicode) textual data --> str
    • iteritems returns an iterator over dictionary’s items --> items
    • string_types possible types for text data like basestring() in Python 2 and str in Python 3.--> str
  • twilio/compat.py
    • from twilio.compat import urlencode --> from urllib.parse import urlencode
    • izip --> zip
  • twilio/jwt/compat.py
    • Removed compat.compare_digest
  • twilio/jwt/init.py
    • Removed import for simplejson and json

Updated dependencies

CHANGED - Remove the ability to override the algorithm in Jwt.to_jwt().

Removed the ability to override the algorithm while using a jwt access token:

// 6.x.x
from twilio.jwt.access_token import AccessToken
token.to_jwt(algorithm='HS512')
// 7.x.x
from twilio.jwt.access_token import AccessToken
token.to_jwt()

[2017-09-28] 6.6.x to 6.7.x

CHANGED - Body parameter on Chat Message creation is no longer required.

Rationale

This was changed to add support for sending media in Chat messages, users can now either provide a body or a media_sid.

6.6.x

... (truncated)

Commits
  • 47d3337 Release 7.15.4
  • f8ee261 [Librarian] Regenerated @ 262cdcd92a729094d792ceac9c0d3fcf895fea3d
  • c36a16f Release 7.15.3
  • 1b575eb [Librarian] Regenerated @ 2df4ac3e3d4eef8966d6e3125164dfe43634b9d7
  • bd90596 chore: upgrade GitHub Actions dependencies (#624)
  • 15eb9be docs: update the year in the license
  • a099d3c Release 7.15.2
  • ae0051e [Librarian] Regenerated @ 18375def60d612c8e8bd57ea6e45050211ba4c08
  • ee01bdb Release 7.15.1
  • a792e79 [Librarian] Regenerated @ 01f08ee7ea770beb526f655c6e616695f7eab4e0
  • 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 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 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)
dependabot[bot] commented 1 year ago

Superseded by #237.