]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Bump to 4.5b2, update release notes
authorBen Darnell <ben@bendarnell.com>
Tue, 11 Apr 2017 02:43:04 +0000 (22:43 -0400)
committerBen Darnell <ben@bendarnell.com>
Tue, 11 Apr 2017 02:43:04 +0000 (22:43 -0400)
docs/releases/v4.5.0.rst
setup.py
tornado/__init__.py

index 1632d5251f946f4d6cb9142770bfe80c9eb4645e..02f2abae492da53d8a0be19eb9cba93a50538a44 100644 (file)
@@ -22,6 +22,19 @@ General changes
 - Reduced the number of circular references, reducing memory usage and
   improving performance.
 
+`tornado.auth`
+~~~~~~~~~~~~~~
+
+* The `tornado.auth` module has been updated for compatibility with `a
+  change to Facebook's access_token endpoint
+  <https://github.com/tornadoweb/tornado/pull/1977>`_. This includes both
+  the changes initially released in Tornado 4.4.3 and an additional change
+  to support the ```session_expires`` field in the new format.
+  The ``session_expires`` field is currently a string; it should be accessed
+  as ``int(user['session_expires'])`` because it will change from a string to
+  an int in Tornado 5.0.
+
+
 `tornado.autoreload`
 ~~~~~~~~~~~~~~~~~~~~
 
index 14caff8ccf7151ffd08cb8e0fa92194d29b28f09..b529deefbec4e015423b2616a48d9bf0dc92519b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx
 
 kwargs = {}
 
-version = "4.5b1"
+version = "4.5b2"
 
 with open('README.rst') as f:
     kwargs['long_description'] = f.read()
index 548c6272db7f01f1f30f53822f61f6f368db5553..cc48c0fc5fd834b0f9d656f92c57581ca7016c90 100644 (file)
@@ -25,5 +25,5 @@ from __future__ import absolute_import, division, print_function
 # is zero for an official release, positive for a development branch,
 # or negative for a release candidate or beta (after the base version
 # number has been incremented)
-version = "4.5b1"
-version_info = (4, 5, 0, -99)
+version = "4.5b2"
+version_info = (4, 5, 0, -98)