Changelog
All notable changes to django-flosse will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[0.2.0] — 2026-04-15
Breaking Changes
- Dropped support for Django <4.2 (3.2, 4.0, 4.1). Minimum required version is now Django 4.2 (LTS).
Added
- Async generator support for
@sse_stream. Decorateasync defviews thatyieldSSE events:
[0.1.2] — 2026-04-10
Fixed
- Removed
Connection: keep-aliveheader — conflicts with HTTP/2 and is managed automatically by the server. - Decorator now supports both
@sse_streamand@sse_stream()usage without raisingTypeError. - Removed threading and heartbeat — the generator is now iterated directly in the WSGI worker with zero extra threads or queues.
Removed
heartbeat_intervalparameter from@sse_stream.