You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,52 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+
[2024-05-24] Version 9.1.0
7
+
--------------------------
8
+
**Library - Chore**
9
+
-[PR #789](https://github.com/twilio/twilio-python/pull/789): [Snyk] Security upgrade aiohttp from 3.8.6 to 3.9.4. Thanks to [@twilio-product-security](https://github.com/twilio-product-security)!
10
+
11
+
**Library - Fix**
12
+
-[PR #716](https://github.com/twilio/twilio-python/pull/716): Connection pool is full, discarding connection. Thanks to [@lightiverson](https://github.com/lightiverson)!
13
+
14
+
**Api**
15
+
- Add ie1 as supported region for UserDefinedMessage and UserDefinedMessageSubscription.
16
+
17
+
**Flex**
18
+
- Adding validated field to `plugin_versions`
19
+
- Corrected the data type for `runtime_domain`, `call_recording_webhook_url`, `crm_callback_url`, `crm_fallback_url`, `flex_url` in Flex Configuration
20
+
- Making `routing` optional in Create Interactions endpoint
21
+
22
+
**Intelligence**
23
+
- Expose operator authoring apis to public visibility
24
+
- Deleted `language_code` parameter from updating service in v2 **(breaking change)**
25
+
- Add read_only_attached_operator_sids to v2 services
26
+
27
+
**Numbers**
28
+
- Add API endpoint for GET Porting Webhook Configurations By Account SID
29
+
- Remove bulk portability api under version `/v1`. **(breaking change)**
30
+
- Removed porting_port_in_fetch.json files and move the content into porting_port_in.json files
31
+
- Add API endpoint to deleting Webhook Configurations
32
+
- Add Get Phone Number by Port in request SID and Phone Number SID api
33
+
- Add Create Porting webhook configuration API
34
+
- Added bundle_sid and losing_carrier_information fields to Create PortInRequest api to support Japan porting
35
+
36
+
**Taskrouter**
37
+
- Add back `routing_target` property to tasks
38
+
- Add back `ignore_capacity` property to tasks
39
+
- Removing `routing_target` property to tasks due to revert
40
+
- Removing `ignore_capacity` property to tasks due to revert
41
+
- Add `routing_target` property to tasks
42
+
- Add `ignore_capacity` property to tasks
43
+
44
+
**Trusthub**
45
+
- Add new field errors to bundle as part of public API response in customer_profile.json and trust_product.json **(breaking change)**
46
+
- Add themeSetId field in compliance_tollfree_inquiry.
47
+
48
+
**Verify**
49
+
- Update `friendly_name` description on service docs
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/message/__init__.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ class UpdateStatus(object):
78
78
:ivar account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with the Message resource
79
79
:ivar num_media: The number of media files associated with the Message resource.
80
80
:ivar status:
81
-
:ivar messaging_service_sid: The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/api/service-resource) associated with the Message resource. The value is `null` if a Messaging Service was not used.
81
+
:ivar messaging_service_sid: The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/api/service-resource) associated with the Message resource. A unique default value is assigned if a Messaging Service is not used.
82
82
:ivar sid: The unique, Twilio-provided string that identifies the Message resource.
83
83
:ivar date_sent: The [RFC 2822](https://datatracker.ietf.org/doc/html/rfc2822#section-3.3) timestamp (in GMT) of when the Message was sent. For an outgoing message, this is when Twilio sent the message. For an incoming message, this is when Twilio sent the HTTP request to your incoming message webhook URL.
84
84
:ivar date_created: The [RFC 2822](https://datatracker.ietf.org/doc/html/rfc2822#section-3.3) timestamp (in GMT) of when the Message resource was created
0 commit comments