Skip to content

Commit

Permalink
Update release notes for 4.0.0b1 (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettheel authored Apr 21, 2019
1 parent a92962b commit ed64e33
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release Notes
=============

v4.0.0a1
v4.0.0b1
--------

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

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

* The ``request_timeout_seconds`` parameter is no longer supported. ``connect_timeout_seconds`` and ``read_timeout_seconds`` are now available instead.
* The ``request_timeout_seconds`` parameter is no longer supported. ``connect_timeout_seconds`` and ``read_timeout_seconds`` are available instead.

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

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

* *Wrapped* exceptions (i.e ``exc.cause``) that were from ``requests.exceptions`` will now be comparable ones from ``botocore.exceptions`` instead.

Other changes in this release:

* 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.
* Added the ``max_pool_connection`` and ``extra_headers`` settings to replace common use cases for ``session_cls``
* Added support for `moto <https://github.com/spulec/moto>`_ through implementing the botocore "before-send" hook. Other botocore hooks remain unimplemented.
* Performance improvements to ``UTCDateTimeAttribute`` deserialization. (#610)


v3.3.3
Expand Down
2 changes: 1 addition & 1 deletion pynamodb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"""
__author__ = 'Jharrod LaFon'
__license__ = 'MIT'
__version__ = '4.0.0a1'
__version__ = '4.0.0b1'

0 comments on commit ed64e33

Please sign in to comment.