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
+28-5
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,29 @@
1
1
Release Notes
2
2
=============
3
3
4
+
v4.0.0a1
5
+
--------
6
+
7
+
:date: 2019-04-10
8
+
9
+
NB: This is an alpha release and these notes are subject to change.
10
+
11
+
This is major release and contains breaking changes. Please read the notes below carefully.
12
+
13
+
Given that ``botocore`` has moved to using ``urllib3`` directly for making HTTP requests, we'll be doing the same (via ``botocore``). This means the following:
14
+
15
+
* The ``session_cls`` option is no longer supported. S
16
+
* The ``request_timeout_seconds`` parameter is no longer supported. ``connect_timeout_seconds`` and ``read_timeout_seconds`` are now available instead.
17
+
* 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.
18
+
* *Wrapped* exceptions (i.e ``exc.cause``) that were from ``requests.exceptions`` will now be comparable ones from ``botocore.exceptions`` instead.
19
+
20
+
Other changes in this release:
21
+
22
+
* 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.
23
+
* Added the ``max_pool_connection`` and ``extra_headers`` settings to replace common use cases for ``session_cls``
24
+
* Added support for `moto <https://github.com/spulec/moto>`_ through implementing the botocore "before-send" hook. Other botocore hooks remain unimplemented.
25
+
26
+
4
27
v3.3.3
5
28
------
6
29
@@ -10,12 +33,12 @@ This is a backwards compatible, minor release.
10
33
11
34
Fixes in this release:
12
35
13
-
* Legacy boolean attribute migration fix. (#538)
14
-
* Correctly package type stubs. (#585)
36
+
* Legacy boolean attribute migration fix. (#538)
37
+
* Correctly package type stubs. (#585)
15
38
16
39
Contributors to this release:
17
40
18
-
* @vo-va
41
+
* @vo-va
19
42
20
43
21
44
v3.3.2
@@ -27,7 +50,7 @@ This is a backwards compatible, minor release.
27
50
28
51
Changes in this release:
29
52
30
-
* Built-in support for mypy type stubs, superseding those in python/typeshed. (#537)
53
+
* Built-in support for mypy type stubs, superseding those in python/typeshed. (#537)
0 commit comments