Skip to content

Releases: pmateusz/meatie

v0.1.9

08 Sep 17:53
5769070
Compare
Choose a tag to compare

What's Changed

  • build(deps): bump httpx from 0.27.0 to 0.27.2 by @dependabot in #44
  • build(deps-dev): bump pydantic from 2.8.2 to 2.9.0 by @dependabot in #46
  • build(deps-dev): bump cryptography from 43.0.0 to 43.0.1 by @dependabot in #45
  • fix: Wait options should extend BaseWait to support the add operator by @pmateusz in #48

Full Changelog: v0.1.8...v0.1.9

v0.1.8

26 Aug 20:11
Compare
Choose a tag to compare

What's Changed

  • build(deps-dev): bump mypy from 1.11.1 to 1.11.2 by @dependabot in #43
  • build(deps-dev): bump coverage from 7.6.0 to 7.6.1 by @dependabot in #36
  • build(deps-dev): bump pytest-asyncio from 0.23.8 to 0.24.0 by @dependabot in #42
  • build(deps): bump requests from 2.31.0 to 2.32.3 by @dependabot in #35
  • build(deps): bump aiohttp from 3.9.3 to 3.10.5 by @dependabot in #41

Full Changelog: v0.1.7...v0.1.8

v0.1.7

13 Aug 16:51
Compare
Choose a tag to compare

What's Changed

  • fix: Handle ContentTypeError in aiohttp integration by @pmateusz in #39

Full Changelog: v0.1.6...v0.1.7

v0.1.6

04 Aug 12:54
Compare
Choose a tag to compare

What's Changed

  • fix: Copy on write annotations as Python reuses them by @pmateusz in #27
  • feat: Customize json deserialization on per-endpoint basis by @pmateusz in #28

v0.1.5

24 Jul 19:05
Compare
Choose a tag to compare

What's Changed

  • feat: support custom formatters parameters by @pmateusz in #18

Full Changelog: v0.1.4...v0.1.5

v0.1.4

23 Jul 20:18
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.3...v0.1.4

v0.1.3

27 Mar 09:57
558f6c1
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.2...v0.1.3

Release 0.1.2

26 Mar 19:23
Compare
Choose a tag to compare

What's Changed

  • fix: Reset error in the retry context
  • fix: Add close methods to http clients by @pmateusz in #13

Full Changelog: v0.1.0...v0.1.2

v0.1.0

10 Feb 16:06
Compare
Choose a tag to compare

[0.1.0] - 2024-02-10

Added

  • Support for httpx and requests libraries (synchronous API)
  • Added additional configuration options to tune the retry strategy, i.e., wait with jitter, wait fixed, stop after
    attempt, retry on exception cause type, etc.

Changed

  • Revised exceptions thrown by the library to mirror exceptions thrown by supported HTTP client libraries
  • Changed options passed to the endpoint decorator, they are now lowercase
  • Moved all exported symbols to the meatie package
  • Moved aiohttp client the meatie_aiohttp package

Removed

  • Retry action on server-side errors, decisions what a server is debatable and design decisions made in the aiohttp
    library are not present in the httpx and requests libraries