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: docs/release_notes.rst
+5-4
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Release Notes
2
2
=============
3
3
4
-
v4.0.0a1
4
+
v4.0.0b1
5
5
--------
6
6
7
7
:date: 2019-04-10
@@ -14,17 +14,18 @@ Given that ``botocore`` has moved to using ``urllib3`` directly for making HTTP
14
14
15
15
* The ``session_cls`` option is no longer supported.
16
16
17
-
* The ``request_timeout_seconds`` parameter is no longer supported. ``connect_timeout_seconds`` and ``read_timeout_seconds`` are now available instead.
17
+
* The ``request_timeout_seconds`` parameter is no longer supported. ``connect_timeout_seconds`` and ``read_timeout_seconds`` are available instead.
18
+
19
+
+ Note that the timeouts for connection and read are now ``15`` and ``30`` seconds respectively. This represents a change from the previous ``60`` second combined ``requests`` timeout.
18
20
19
-
+ Note that the timeout for connection and read are now ``15`` and ``30`` seconds respectively. This represents a change from the previous ``60`` second combined ``requests`` timeout.
20
-
21
21
* *Wrapped* exceptions (i.e ``exc.cause``) that were from ``requests.exceptions`` will now be comparable ones from ``botocore.exceptions`` instead.
22
22
23
23
Other changes in this release:
24
24
25
25
* Python 2.6 is no longer supported. 4.x.x will likely be the last major release to support Python 2.7, given the upcoming EOL.
26
26
* Added the ``max_pool_connection`` and ``extra_headers`` settings to replace common use cases for ``session_cls``
27
27
* Added support for `moto <https://github.com/spulec/moto>`_ through implementing the botocore "before-send" hook. Other botocore hooks remain unimplemented.
28
+
* Performance improvements to ``UTCDateTimeAttribute`` deserialization. (#610)
0 commit comments