Skip to content

v0.136 ๐Ÿšจ๐Ÿ“ขยค

BREAKING CHANGES ๐Ÿšจ๐Ÿ“ขยค

  • Component input validation was moved to a separate extension djc-ext-pydantic.

    If you relied on components raising errors when inputs were invalid, you need to install djc-ext-pydantic and add it to extensions:

    # settings.py
    COMPONENTS = {
        "extensions": [
            "djc_pydantic.PydanticExtension",
        ],
    }
    

Fixยค

  • Make it possible to resolve URLs added by extensions by their names