@@ -5,6 +5,22 @@ Here you can see the full list of changes between each twilio-python release.
5
5
6
6
[ 2017-08-18] Version 6.5.2
7
7
---------------------------
8
+ ** Library**
9
+ - Remove bundled certificates, use ` certifi ` package via ` requests ` .
10
+ - Add option to use connection pooling. This is enabled by default and will use one Session for all requests
11
+ in Client.
12
+ - To disable this, pass ` pool_connections ` parameter when creating your Twilio client.
13
+ ``` python
14
+ from twilio.rest import Client
15
+ from twilio.http.http_client import TwilioHttpClient
16
+
17
+ client = Client(
18
+ username,
19
+ password,
20
+ http_client = TwilioHttpClient(pool_connections = False )
21
+ )
22
+ ```
23
+
8
24
** Api**
9
25
- Add VoiceReceiveMode {'voice', 'fax'} option to IncomingPhoneNumber UPDATE requests
10
26
@@ -19,23 +35,6 @@ Here you can see the full list of changes between each twilio-python release.
19
35
** Sync**
20
36
- Add support for Service Instance unique names
21
37
22
-
23
- [ 2017-08-18] Version 6.6.0
24
- ---------------------------
25
- - Add connection pooling. This is enabled by default and will use one Session for all requests
26
- in Client.
27
- - To disable this, you can turn this off when creating your Twilio client.
28
- ``` python
29
- from twilio.rest import Client
30
- from twilio.http.http_client import TwilioHttpClient
31
-
32
- client = Client(
33
- username,
34
- password,
35
- http_client = TwilioHttpClient(pool_connections = False )
36
- )
37
- ```
38
-
39
38
[ 2017-08-10] Version 6.5.1
40
39
---------------------------
41
40
Fixed PyJWT >= 1.5.1 exception
0 commit comments