File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## v1.5.0
4
+
5
+ * Fix (more like clarify) ` bytes ` / ` str ` handling in crypto
6
+ methods. (#203 , #250 , #272 )
7
+ * Replacing ` webapp ` with ` webapp2 ` in ` oauth2client.appengine ` (#217 )
8
+ * Added optional ` state ` parameter to
9
+ ` step1_get_authorize_url ` . (#219 and #222 )
10
+ * Added ` flask_util ` module that provides a Flask extension to aid
11
+ with using OAuth2 web server flow. This provides the same functionality
12
+ as the ` appengine.webapp2 ` OAuth2Decorator, but will work with any Flask
13
+ application regardless of hosting environment. (#226 , #273 )
14
+ * Track scopes used on credentials objects (#230 )
15
+ * Moving docs to [ readthedocs.org] [ 1 ] (#237 , #238 , #244 )
16
+ * Removing ` old_run ` module. Was deprecated July 2, 2013. (#285 )
17
+ * Avoid proxies when querying for GCE metadata (to check if
18
+ running on GCE) (#114 , #293 )
19
+
20
+ [ 1 ] : https://readthedocs.org/
21
+
3
22
## v1.4.12
4
23
5
24
* Fix OS X flaky test failure (#189 ).
Original file line number Diff line number Diff line change 14
14
15
15
"""Client library for using OAuth2, especially with Google APIs."""
16
16
17
- __version__ = '1.4.12 '
17
+ __version__ = '1.5.0 '
18
18
19
19
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
20
20
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'
You can’t perform that action at this time.
0 commit comments