Skip to content

Releases: Gr1N/aiodogstatsd

v0.16.0.post0

12 Dec 21:43
7556474
Compare
Choose a tag to compare
[release] uprev

v0.16.0

12 Dec 21:37
db65e2a
Compare
Choose a tag to compare
  • Dropped Python 3.6.* support
  • Added Python 3.10.* support
  • Dropped Sanic support
  • Fixed AIOHTTP support, #30

v0.15.0

21 Dec 13:21
fc0419e
Compare
Choose a tag to compare
  • Added .timeit_task(), asyncio.create_task like function that sends timing metric when the task finishes, #29 by @aviramha
  • Added threshold_ms (Optional) to .timeit() for sending timing metric only when exceeds threshold, #27 by @aviramha

v0.14.0

16 Nov 09:58
cceb975
Compare
Choose a tag to compare
  • Added Python 3.9.* support
  • Fixed .timeit() in case of unhandled exceptions, #26

v0.13.0

29 Jul 10:37
1a2bd98
Compare
Choose a tag to compare
  • Added configuration option to limit pending queue size. Can be configured by passing pending_queue_size named argument into aiodogstatsd.Client class. By default: 65536, #24

v0.12.0

29 May 09:50
913725d
Compare
Choose a tag to compare
  • Added connected, closing and disconnected client properties. Can be used to check connection state of client, #23
  • Bumped minimum required Sanic version, #23

v0.11.0

21 Feb 12:21
aef47dd
Compare
Choose a tag to compare
  • Updated documentation: described why 9125 port used by default, #16
  • Added Starlette framework integration helpers (middleware), #15
  • Fixed futures initialization. From this time futures always initialized in the same event loop, #15
  • Added documentation, #18

v0.11.0a0

06 Jan 19:33
Compare
Choose a tag to compare
v0.11.0a0 Pre-release
Pre-release
  • Switch to GitHub Actions, #13

v0.10.0

03 Dec 13:06
6d6af80
Compare
Choose a tag to compare
  • Fixed MTags type to be a Mapping to avoid common invariance type-checking errors, #14 by @JayH5

v0.9.0

29 Nov 13:48
f816817
Compare
Choose a tag to compare
  • Added sample rate as class attribute, for setting sample rate class-wide, #11 by @aviramha
  • Added timer context manager for easily timing events, #12 by @aviramha
  • Added Python 3.8.* support, #7