Skip to content

Releases: MagicStack/uvloop

v0.15.2

19 Feb 04:13
v0.15.2
c9e07dd

Choose a tag to compare

Bug Fixes

  • Add python_requires in setup.py to fix dependency resolution issues
    (by @graingert in c808a66)

v0.15.1

15 Feb 17:30
v0.15.1
f7634ef

Choose a tag to compare

Bug Fixes

  • Fix a segfault issue when a Cython protocol is de-referencing itself from Context.run() callbacks
    (by @fantix in 70cafc8)

v0.15.0

10 Feb 05:28
v0.15.0
513ff14

Choose a tag to compare

New Features

Bug Fixes

Build

v0.14.0

05 Nov 19:16
0e72f81

Choose a tag to compare

New Features

Bug Fixes

Build

v0.14.0rc2

29 Oct 15:26
9b4bd2e

Choose a tag to compare

v0.14.0rc2 Pre-release
Pre-release

This is the second release candidate.

See the full list of updates in 0.14.0rc1 release notes.

RC2 Bug Fixes

v0.14.0rc1

25 Oct 21:33
679fde6

Choose a tag to compare

v0.14.0rc1 Pre-release
Pre-release

New Features

Bug Fixes

Build

v0.13.0

14 Aug 03:40

Choose a tag to compare

New Features

Performance

  • Start using high-performance uv_udp_t handle. This
    should result in a significantly faster UDP support.
    (by @1st1 in c2b65bc)

  • Make address validation faster in udp.sendto().
    (by @1st1 in 46c5e9e)

Misc

Build

  • Upgrade to libuv v1.31.0.
    (by @1st1 in c2b65bc and 1fad621)

  • Use manylinux-2010. This means we no longer provide
    32bit builds for Linux.
    (by @1st1 in 3174b7d)

v0.13.0rc1

25 Apr 16:10

Choose a tag to compare

v0.13.0rc1 Pre-release
Pre-release

New Features

Performance

  • Start using high-performance uv_udp_t handle. This
    should result in a significantly faster UDP support.
    (by @1st1 in c2b65bc)

  • Make address validation faster in udp.sendto().
    (by @1st1 in 46c5e9e)

Build

  • Upgrade to libuv v1.28.0.
    This is a minimum requirement now.
    (by @1st1 in c2b65bc)

  • Use manylinux-2010. This means we no longer provide
    32bit builds for Linux.
    (by @1st1 in 3174b7d)

v0.12.2

20 Mar 20:46

Choose a tag to compare

Bug Fixes

  • Fix circular references in SSL implementation to reduce
    the need for GC.
    (by @fantix in 3070ec8)

  • Fix a memory leak in call_later() and call_at().
    The leak occurred when a callback argument had a reference to
    the event loop.
    (by @1st1 in 1a5dbc2 for #239)

  • Fix compilation warnings.
    (by @JelleZijlstra in d9a111b)

  • Round (instead of flooring) delay in call_later().
    This ensures that the callback is never called slightly before
    the specified time.
    (by @fantix in 8f037a6 for #233)

v0.12.1

12 Feb 16:51

Choose a tag to compare

Bug Fixes

  • Fix a circular references case in SSL implementation.
    (by @fantix in a2e0dd8 for #220)

  • Cleanup references to callbacks in canceled callback handles.

    This removes potential reference cycles between bound methods
    and cancelled Handle / TimerHandle objects.

    (by @1st1 in f0a945d)