Skip to content

Commit ed64e33

Browse files
authored
Update release notes for 4.0.0b1 (#611)
1 parent a92962b commit ed64e33

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

docs/release_notes.rst

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Release Notes
22
=============
33

4-
v4.0.0a1
4+
v4.0.0b1
55
--------
66

77
:date: 2019-04-10
@@ -14,17 +14,18 @@ Given that ``botocore`` has moved to using ``urllib3`` directly for making HTTP
1414

1515
* The ``session_cls`` option is no longer supported.
1616

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.
1820

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-
2121
* *Wrapped* exceptions (i.e ``exc.cause``) that were from ``requests.exceptions`` will now be comparable ones from ``botocore.exceptions`` instead.
2222

2323
Other changes in this release:
2424

2525
* 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.
2626
* Added the ``max_pool_connection`` and ``extra_headers`` settings to replace common use cases for ``session_cls``
2727
* 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)
2829

2930

3031
v3.3.3

pynamodb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"""
88
__author__ = 'Jharrod LaFon'
99
__license__ = 'MIT'
10-
__version__ = '4.0.0a1'
10+
__version__ = '4.0.0b1'

0 commit comments

Comments
 (0)