10000 Release 0.136 · django-components/django-components · GitHub
[go: up one dir, main page]

Skip to content

0.136

Compare
Choose a tag to compare
@JuroOravec JuroOravec released this 05 Apr 07:12
· 194 commits to master since this release
fdd29ba

What's Changed

🚨📢 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

Full Changelog: 0.135...0.136

0