Changelog¶
1.8.0 / (2023-05-09)¶
When running on Google Colab, try Colab-based authentication (
google.colab.auth.authenticate_user()
) before attempting the Google Application Default Credentials flow. (GH#68)
1.7.0 / (2023-02-07)¶
Reissue of the library with the changes from 1.6.0 but with a new version number due to a conflict in releases.
1.6.0 / (2023-02-07)¶
Adds decision logic to handle use cases where a user may not have the ability to log in via an Out of Band authentication flow. (GH#54)
Also provides an OAuth page as part of the documentation.
1.5.0 / (2023-01-09)¶
Adds ability to provide redirect uri. (GH#58)
1.4.0 / (2022-03-14)¶
Default
use_local_webserver
toTrue
. Google has deprecated theuse_local_webserver = False
“out of band” (copy-paste) flow. Theuse_local_webserver = False
option is planned to stop working in October 2022.
1.3.0 / (2021-12-03)¶
1.2.0 / (2021-04-21)¶
Adds
pydata_google_auth.load_service_account_credentials()
function to get service account credentials from the specified JSON path. (GH#39)
1.1.0 / (2020-04-23)¶
Try a range of ports between 8080 and 8090 when
use_local_webserver
isTrue
. (GH#35)
1.0.0 / (2020-04-20)¶
Mark package as 1.0, generally available.
Update introduction with link to instructions on creating a Google Cloud project. (GH#18)
0.3.0 / (2020-02-04)¶
Add
python -m pydata_google_auth
CLI for working with user credentials. (GH#28)
0.2.1 / (2019-12-12)¶
Re-enable
auth_local_webserver
indefault
method. Show warning, rather than fallback to console.
0.2.0 / (2019-12-12)¶
Deprecate
auth_local_webserver
argument in favor ofuse_local_webserver
argument (GH#20).
New Features¶
Adds
pydata_google_auth.save_user_credentials()
function to get user credentials and then save them to a specified JSON path. (GH#22)
Bug Fixes¶
0.1.3 / (2019-02-26)¶
Bug Fixes¶
Respect the
dirname
andfilename
arguments to theReadWriteCredentialsCache
andWriteOnlyCredentialsCache
constructors. (GH#16, GH#17)
0.1.2 / (2019-02-01)¶
Bug Fixes¶
0.1.1 / (2018-10-26)¶
Add LICENSE.txt to package manifest.
Document privacy policy.
0.1.0 / (2018-10-23)¶
Add
cache
module for configuring caching behaviors. (GH#1)Fork the pandas-gbq project and refactor out helpers for working with Google credentials.