TwilioDevEd / account-security-quickstart-django

A simple implementation of a Twilio Account Security protected site using Python and Django.
MIT License
31 stars 33 forks source link

Bump twilio from 6.57.0 to 7.16.5 #301

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps twilio from 6.57.0 to 7.16.5.

Release notes

Sourced from twilio's releases.

7.16.5

Release Notes

Api

  • Add new categories for whatsapp template

Lookups

  • Remove validation_results from the default_output_properties

Supersim

  • Add ESimProfile's matching_id and activation_code parameters to libraries

Docs

7.16.4

Release Notes

Api

  • Remove scheduled_for property from message resource
  • Add scheduled_for property to message resource

Docs

7.16.3

Release Notes

Lookups

  • Add disposable_phone_number_risk package to the lookup response
  • Add sms_pumping_risk package to the lookup response

Docs

7.16.2

Release Notes

Library - Chore

Library - Docs

Library - Test

Api

  • Add public_application_connect_enabled param to Application resource

... (truncated)

Changelog

Sourced from twilio's changelog.

[2023-03-09] Version 7.16.5

Api

  • Add new categories for whatsapp template

Lookups

  • Remove validation_results from the default_output_properties

Supersim

  • Add ESimProfile's matching_id and activation_code parameters to libraries

[2023-02-22] Version 7.16.4

Api

  • Remove scheduled_for property from message resource
  • Add scheduled_for property to message resource

[2023-02-08] Version 7.16.3

Lookups

  • Add disposable_phone_number_risk package to the lookup response
  • Add sms_pumping_risk package to the lookup response

[2023-01-25] Version 7.16.2

Library - Chore

Library - Docs

Library - Test

Api

  • Add public_application_connect_enabled param to Application resource

Messaging

  • Add new tollfree verification API property (ExternalReferenceId)]

Verify

  • Add device_ip parameter and channel auto for sna/sms orchestration

Twiml

  • Add support for <Application> noun and <ApplicationSid> noun, nested <Parameter> to <Hangup> and <Leave> verb

... (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
  • d420607 Release 7.16.5
  • 3247ef3 [Librarian] Regenerated @ 05bdd0133313ac71fd55c97753894743b8f3cad9
  • b6a4fc8 Release 7.16.4
  • b7037a7 [Librarian] Regenerated @ 17e62aff1baa8b949ed63e888ff63c1da8945fe5
  • c57516c Release 7.16.3
  • 3aec618 [Librarian] Regenerated @ 6112a581d3189fe96d26eb29eb9adfdbd1c2ada5
  • cee0dcf Release 7.16.2
  • 6a0ab7f [Librarian] Regenerated @ a72b955e51d75514f3c944c81b9db17278cfad69
  • fdaae97 chore: relax test dependencies and remove unused dependencies (#638)
  • 4bb9673 docs: remove docs output from repo (#637)
  • 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 #303.