Skip to content

Latest commit

 

History

History
77 lines (48 loc) · 1.54 KB

CHANGES.rst

File metadata and controls

77 lines (48 loc) · 1.54 KB

CHANGES

2.2.0 (2024-02-29)

  • Added typing support.
  • Added EventSourceResponse.is_connected() method.
  • Added EventSourceResponse.last_event_id attribute.
  • Added support for SSE with HTTP methods other than GET.
  • Added support for float ping intervals.
  • Fixed (on Python 3.11+) EventSourceResponse.wait() swallowing user cancellation.
  • Fixed ping task not getting cancelled after a send failure.
  • Cancelled the ping task when a connection error occurs to help avoid errors.
  • Dropped support for Python 3.7 while adding support upto Python 3.12.

2.1.0 (2021-11-13)

Features

  • Added Python 3.10 support (#314)

Deprecations and Removals

  • Drop Python 3.6 support (#319)

Misc

2.0.0 (2018-02-19)

  • Drop aiohttp < 3 support
  • EventSourceResponse.send is now a coroutine.

1.1.0 (2017-08-21)

  • Drop python 3.4 support
  • Add new context manager API

1.0.0 (2017-04-14)

  • Release aiohttp-sse==1.0.0

0.1.0 (2017-03-23)

  • add support for asynchronous context manager interface
  • tests refactoring
  • modernize internal api to align with aiohttp

0.0.2 (2017-01-13)

  • Added MANIFEST.in

0.0.1 (2017-01-13)

  • Initial release