Release v4.1.0 and deprecate the library (#714)
This commit is contained in:
committed by
GitHub
parent
119b90cbc9
commit
00926f2058
3
.github/ISSUE_TEMPLATE.md
vendored
Normal file
3
.github/ISSUE_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
**Note**: oauth2client is now deprecated. As such, it is unlikely that we will
|
||||
address or respond to your issue. We recommend you use
|
||||
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).
|
||||
3
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
3
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
**Note**: oauth2client is now deprecated. As such, it is unlikely that we will
|
||||
review or merge to your pull request. We recommend you use
|
||||
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).
|
||||
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,5 +1,23 @@
|
||||
# CHANGELOG
|
||||
|
||||
## v4.1.0
|
||||
|
||||
**Note**: oauth2client is now deprecated. No more features will be added to the
|
||||
libraries and the core team is turning down support. We recommend you use
|
||||
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).
|
||||
|
||||
New features:
|
||||
* Allow customizing the GCE metadata service address via an env var. (#704)
|
||||
* Store original encoded and signed identity JWT in OAuth2Credentials. (#680)
|
||||
* Use jsonpickle in django contrib, if available. (#676)
|
||||
|
||||
Bug fixes:
|
||||
* Typo fixes. (#668, #697)
|
||||
* Remove b64 padding from PKCE values, per RFC7636. (#683)
|
||||
* Include LICENSE in Manifest.in. (#694)
|
||||
* Fix tests and CI. (#705, #712, #713)
|
||||
* Escape callback error code in flask_util. (#710)
|
||||
|
||||
## v4.0.0
|
||||
|
||||
New features:
|
||||
|
||||
@@ -4,6 +4,10 @@
|
||||
|
||||
This is a client library for accessing resources protected by OAuth 2.0.
|
||||
|
||||
**Note**: oauth2client is now deprecated. No more features will be added to the
|
||||
libraries and the core team is turning down support. We recommend you use
|
||||
[google-auth](https://google-auth.readthedocs.io) and [oauthlib](http://oauthlib.readthedocs.io/).
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
"""Client library for using OAuth2, especially with Google APIs."""
|
||||
|
||||
__version__ = '4.0.0'
|
||||
__version__ = '4.1.0'
|
||||
|
||||
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth'
|
||||
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'
|
||||
|
||||
12
setup.py
12
setup.py
@@ -41,7 +41,14 @@ install_requires = [
|
||||
'six>=1.6.1',
|
||||
]
|
||||
|
||||
long_desc = 'oauth2client is a client library for OAuth 2.0.'
|
||||
long_desc = """
|
||||
oauth2client is a client library for OAuth 2.0.
|
||||
|
||||
Note: oauth2client is now deprecated. No more features will be added to the
|
||||
libraries and the core team is turning down support. We recommend you use
|
||||
`google-auth <https://google-auth.readthedocs.io>`__ and
|
||||
`oauthlib <http://oauthlib.readthedocs.io/>`__.
|
||||
"""
|
||||
|
||||
version = oauth2client.__version__
|
||||
|
||||
@@ -51,6 +58,7 @@ setup(
|
||||
description='OAuth 2.0 client library',
|
||||
long_description=long_desc,
|
||||
author='Google Inc.',
|
||||
author_email='jonwayne+oauth2client@google.com',
|
||||
url='http://github.com/google/oauth2client/',
|
||||
install_requires=install_requires,
|
||||
packages=find_packages(),
|
||||
@@ -62,7 +70,7 @@ setup(
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Development Status :: 7 - Inactive',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: Apache Software License',
|
||||
'Operating System :: POSIX',
|
||||
|
||||
Reference in New Issue
Block a user