Skip to content

Releases: django-commons/django-unicorn

0.67.0

Choose a tag to compare

@github-actions github-actions released this 07 Mar 20:54

What's Changed

Full Changelog: 0.66.1...0.67.0

0.66.1

Choose a tag to compare

@github-actions github-actions released this 02 Mar 12:19

Full Changelog: 0.66.0...0.66.1

0.66.0

Choose a tag to compare

@adamghill adamghill released this 01 Mar 20:30

What's Changed

New Contributors

Full Changelog: 0.65.2...0.66.0

0.65.2

Choose a tag to compare

@github-actions github-actions released this 13 Feb 21:01

Full Changelog: 0.65.1...0.65.2

0.65.0

Choose a tag to compare

@github-actions github-actions released this 12 Feb 01:43

What's Changed

Full Changelog: 0.64.0...0.65.0

0.64.0

Choose a tag to compare

@github-actions github-actions released this 19 Jan 03:43

What's Changed

New Contributors

Full Changelog: 0.63.3...0.64.0

0.63.3

Choose a tag to compare

@github-actions github-actions released this 11 Jan 16:02

Full Changelog: 0.63.2...0.63.3

0.62.0

Choose a tag to compare

@adamghill adamghill released this 03 Feb 04:01

What's Changed

Breaking changes

  • Remove support for Python 3.8 and 3.9 because Django 5.0 has dropped support.

New Contributors

Full Changelog: 0.61.0...0.62.0

0.61.0

Choose a tag to compare

@adamghill adamghill released this 28 Jul 03:34
  • Add template_html to specify inline template HTML on the component.
  • Add resolved method which only fires once even when there are multiple actions, e.g. during a debounce.

0.60.0

Choose a tag to compare

@adamghill adamghill released this 25 Feb 16:22
  • Silence warnings about multiple root elements for direct views.
  • Handle force_render in nested children for direct views #663.
  • Handle error when manually refreshing direct views.
  • Handle component field type annotations for dataclasses and Pydantic BaseModel #649 by siliconcow.
  • Update startunicorn command to prevent spamming users and handle folder creation for nested components #642 by felipmartins.

Breaking changes

  • Unparseable kwarg argument passed into a component will be considered None instead of being converted to a string.
<!-- If `abcde` is not a variable in the template context, it will get set to `name` as `None` whereas before it would get set as 'abcde' -->
{% unicorn 'hello' name=abcde %}