Skip to content

Releases: austind/retryhttp

v1.1.0

13 Aug 15:37
Compare
Choose a tag to compare
  • Add HTTP-date value parsing for retryhttp.wait_from_header
  • retryhttp._utils.is_rate_limited now determines that a request was rate limited by the presence of a Retry-After header. In prior versions, this was based on the status code 429 Too Many Requests. However, many servers return other status codes when rate limiting.

v1.0.1

06 Aug 14:28
bf81679
Compare
Choose a tag to compare
  • FIx documentation errors.

v1.0.0

06 Aug 14:13
Compare
Choose a tag to compare
  • API is now stable. Any breaking changes will follow SemVer guidelines.
  • Added requests.exceptions.ChunkedEncodingError to the list of default network errors.

v0.2.0

02 Jul 07:17
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
  • Rename retryhttp.retry_http_errors to retryhttp.retry.
  • Rename retryhttp.wait_http_errors to retryhttp.wait_context_aware.
  • Restructure project so all members are part of the root namespace.
  • Move type delcarations to retryhttp._types.
  • Enable bare decorator syntax for retryhttp.retry (i.e., @retry works as well as @retry())