Skip to content

v4.0.0

Choose a tag to compare

@kylebayler kylebayler released this 29 Jan 13:27
· 10 commits to main since this release

What's changed

Changed

  • Renamed tbx template directory and crispy forms template pack to tbxforms [#92]

Fixed

  • Conditional fields not working properly when there are multiple elements inspecting the same driving field [#91]

Removed

  • IE11 support [#91]

Full Changelog: v3.0.0...v4.0.0

Upgrade considerations

Template pack and path have been renamed from tbx is now tbxforms

You must update references from tbx to tbxforms. This change makes it clearer what template pack is used, and makes overriding templates easier.

Change this:

CRISPY_ALLOWED_TEMPLATE_PACKS = ["tbx"]
CRISPY_TEMPLATE_PACK = "tbx"

To:

CRISPY_ALLOWED_TEMPLATE_PACKS = ["tbxforms"]
CRISPY_TEMPLATE_PACK = "tbxforms"

If you have overridden any templates, you will need to rename your tbx directory to tbxforms.

Dropped javascript support for IE11

The conditional fields JS previously had a pollyfil for IE11, which has now been removed.