Skip to content

Releases: Colin-b/httpx_auth

0.5.1 (2020-08-31)

31 Aug 20:36
4770d94
Compare
Choose a tag to compare

Fixed

  • AWSAuth authentication class now handles empty path. Thanks to Michael E. Martinka. This class is still considered as under development and subject to breaking changes without notice.

Changed

  • All methods within AWSAuth are now private. They were never meant to be exposed anyway.

0.5.0 (2020-08-19)

19 Aug 14:43
4774b1d
Compare
Choose a tag to compare

Added

  • Allow to provide an httpx.Client instance for *AuthorizationCode flows (even PKCE), *ClientCredentials and *ResourceOwnerPasswordCredentials flows.

0.4.0 (2020-08-07)

07 Aug 17:10
caa6b26
Compare
Choose a tag to compare

Changed

  • Mock an access token by default in httpx_auth.testing.token_cache_mock. Getting rid of pyjwt default dependency for testing.
  • Requires httpx==0.14.*

Added

  • Still under development, subject to breaking changes without notice: AWS4Auth authentication class for AWS. Ported from requests-aws4auth by Michael E. Martinka.
    Note that a few changes were made:
    • deprecated amz_date attribute has been removed.
    • it is not possible to provide an AWSSigningKey instance, use explicit parameters instead.
    • it is not possible to provide a date. It will default to now.
    • it is not possible to provide raise_invalid_date parameter anymore as the date will always be valid.
    • include_hdrs parameter was renamed into include_headers
    • host is not considered as a specific Amazon service anymore (no test specific code).
    • Each request now has it's own signing key and x-amz-date. Meaning you can use the same auth instance for more than one request.
    • session_token was renamed into security_token for consistency with the underlying name at Amazon.

0.3.0 (2020-05-26)

26 May 19:09
bad60b6
Compare
Choose a tag to compare

Changed

0.2.0 (2020-03-23)

23 Mar 10:41
70919fc
Compare
Choose a tag to compare

Removed

  • Deprecated httpx_auth.Auths class has been removed.

0.1.0 (2020-03-09)

09 Mar 16:06
55a3b8f
Compare
Choose a tag to compare

Changed

0.0.2 (2020-02-10)

10 Feb 18:33
f2fa294
Compare
Choose a tag to compare

Added

  • Port of requests_auth 5.0.2 for httpx