Release History

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning

1.0.18

Fixed

  • Response text from failed request now logged as expected.

1.0.17

Changed

  • Improve message when raising a ResponseError. Now includes the response text and omits empty messages.

1.0.16

Fixed

  • Bug causing default response handlers to not be set on RequestHandler when not provided. Default response handlers are now set as expected in this case.

1.0.15

Fixed

  • Bug in various functions which caused a repeating requirement for the method and url kwargs. Now only requires the method and url kwargs once.

1.0.14

Fixed

1.0.13

Fixed

  • RequestHandler passes all kwargs to request method again. This was broken in 1.0.12.

1.0.12

Changed

  • RequestHandler raises the aiohttp error if given on failed requests instead of β€˜Max retries exceeded’ error

1.0.11

Added

1.0.10

Added

  • AuthRequest.set_payload_type() and payload property to AuthRequest. This allows for payload type switching for each requests. This is to solve an issue where some OAuth providers require the payload in either the body or query of the request depending on the providers specification.

Removed

  • _param_key class attribute in OAuth2Authoriser now allows for control over for child classes Support for switching the payload handling of requests is now handled solely by AuthRequest.

1.0.9

Changed

  • OAuth2Authoriser now allows for control over params key for child classes via the _param_key class attribute. This now supports delivering params via either the query or body or the request.

1.0.8

Fixed

  • AuthorisationCodeFlow now correctly picks up the returned state value from the redirect URL even if it also contains the HTTP version

1.0.7

Changed

  • Handle no response as a retry using the retry timer in RequestHandler

1.0.6

Fixed

  • Drop debug print statement

1.0.5

Fixed

  • Replace classmethod + property decorators with custom classproperty decorator to fix issues in Python v3.13

1.0.4

Fixed

  • Removed debug print statement

1.0.3

Fixed

  • Bug in get_iterator() causing RequestInfo objects to iterate its properties instead of itself

1.0.2

Changed

  • Update upstream dependency versions

1.0.1

Fixed

1.0.0

Changed

  • Moved RequestHandler to base of package in request.py

  • Moved all Timer implementations to base of package in timer.py

  • Moved all request exceptions to base of package in exception.py

Documentation

  • Finalise writing guides

0.6.1

Added

Documentation

  • Expand README to complete all placeholder sections

0.6.0

Changed

Fixed

0.5.2

Fixed

  • Bug when awaiting Timer.

0.5.1

Changed

  • Removed ability to pass response to methods in AuthResponseHandler. Now only the stored response is used always.

Fixed

  • Headers not passed to response tester. Now works as expected.

0.5.0

Changed

  • Timer now supports int and float operations.

  • All cache backends no longer rely on JSON based payloads and have been made generic enough to support all PayloadHandler implementations.

Removed

  • value property on Timer in favour of using builtin int and float calls to get the timer value.

Documentation

  • Add standard info for installing

  • Expand and reformat index

0.4.0

Changed

Documentation

  • Expanded docstrings everywhere

0.3.1

Added

  • Implementation of __slots__ wherever it is appropriate

Changed

0.3.0

Changed

  • Rename exceptions: AIORequests… -> AIORequestful…

  • Rename references of payload as data to payload

  • Abstract and implement response handling, request timer handling, and payload handling in new request and response modules.

  • Migrate all resources relating to requests and responses to relevant modules.

Removed

  • MethodInput enum in favour of http.HTTPMethod

0.2.1

Fixed

0.2.0

Added

  • OAuth2 Client Credentials flow implementation

  • OAuth2 Authorization Code with PKCE flow implementation

  • Basic user/password authorisation implementation

  • RequestKwargs TypedDict

Changed

  • Create abstraction for authorise module and convert implementation of OAuth2 Authorization Code flow to match this interface

0.1.1

Changed

0.1.0

Initial release! πŸŽ‰