Skip to content

0.1.1

Choose a tag to compare

@BenA-SA BenA-SA released this 29 Jul 14:07
19bc308

Warning

Denial-of-service defect — upgrade to 0.1.2. A single anonymous GET to any MCP endpoint permanently pegs one worker at ~100% CPU (the SSE disconnect listener spins against the bridge's synthesized receive). Fixed in 0.1.2 (ADR-0017).

django-stateless-mcp 0.1.1

Fixed

  • A bare install could not be imported. 0.1.0's __init__ eagerly
    imported StructlogRequestLogger, whose module imports structlog — an
    optional dependency — so import django_stateless_mcp raised
    ModuleNotFoundError unless the [structlog] extra happened to be
    installed. The logger is now imported lazily (PEP 562), and reaching it
    without structlog raises an ImportError naming the extra to install:
    django-stateless-mcp[structlog]. 0.1.0 has been yanked on PyPI.