Skip to content

Latest commit

 

History

History
201 lines (101 loc) · 12.5 KB

CHANGELOG.md

File metadata and controls

201 lines (101 loc) · 12.5 KB

Changelog

PyPI History

1.2.1 (2024-07-08)

Bug Fixes

  • Clean up local server socket on error (#339) (7054d62)

1.2.0 (2023-12-12)

Features

Bug Fixes

  • Use setuptools.find_namespace_packages (#321) (9a0728d)

1.1.0 (2023-09-07)

Features

  • Adding support to specify browser while launching browser to authention (#305) (1a9dca8), closes #303
  • Pass thru OAuth audience during InstalledAppFlow.run_local_server (#300) (fe08531)

Documentation

  • Fix grammar with fetch_token docstring (#273) (b2e3688)

1.0.0 (2023-02-06)

⚠ BREAKING CHANGES

  • PKCE is enabled by default. (#269)

Features

Bug Fixes

  • Change the library from preview to stable (#267) (c77edf1)
  • Remove deprecated OOB code (1391486)

0.8.0 (2022-12-08)

Features

0.7.1 (2022-11-03)

Bug Fixes

  • Include updates to properties from Google Auth lib (#249) (58becac)

0.7.0 (2022-10-25)

Bug Fixes

  • setup.py: increase required google-auth version to >=2.13.0 (f8a15f7)

0.6.0 (2022-10-20)

Features

Bug Fixes

  • Add timeout to run_local_server when waiting for response (#245) (8d53bc3)

Documentation

  • Update readme to point to current docs url (#241) (8c29d2e)

0.5.3 (2022-09-02)

Bug Fixes

  • Pass port range from get_user_credentials to find_open_port (#212) (479330a)

0.5.2 (2022-06-03)

Documentation

  • fix changelog header to consistent size (#204) (cbd7d67)

0.5.1 (2022-03-15)

Bug Fixes

  • avoid deprecated "out-of-band" authentication flow (#186) (f119c4e)

0.5.0 (2022-02-24)

Features

0.4.6 (2021-08-30)

Bug Fixes

0.4.5 (2021-07-26)

Documentation

Miscellaneous Chores

0.4.4 (2021-03-29)

Bug Fixes

  • add redirect_uri_trailing slash param to run_local_server (#111) (666863a)

0.4.3 (2021-02-12)

Bug Fixes

  • add charset-utf-8 to response header (#104) (53e31e2)
  • deps: add lower bounds to all dependencies (#99) (5587c6a)

0.4.2 (2020-10-28)

Bug Fixes

  • don't open browser if port is occupied (#92) (0004057), closes #75

0.4.1

08-26-2019 13:25 PDT

Implementation Changes

  • Don't auto-generate code_verifier by default. (#48)

Internal / Testing Changes

  • Add renovate.json (#56)

0.4.0

  • Add get_user_credentials function to get your user credentials (#40)
  • Add noxfile (#43)
  • Implement code verifier (PKCE) (#42)
  • Use actual server port in redirect_uri to allow automatic assignment (#33) (#41)

0.3.0

  • Use utc when parsing expiration timestamp (#26)
  • Allow saving credentials in current directory (#25)

0.2.0

  • Populate id_token into credentials from oauth2session (#20)
  • Carry token expiry from oauth2session into Credentials object (#18) (#19)
  • Accept redirect_uri as arg to flow creating classmethods. (#17)

0.1.1

  • Allow access_type parameter to be overriden in Flow (#16)
  • Use a test port that is less likely to be taken (#12)
  • Documentation updates

0.1.0

Add command line tool.

0.0.1

Initial release. This package contains the functionality previously located in google.oauth2.oauthlib and google.oauth2.flows.