Skip to content

Releases: Sibyx/django_api_forms

0.5.3

20 Dec 11:21
59637d1
Compare
Choose a tag to compare
0.5.3 Pre-release
Pre-release
  • Feature: Introduced generic AnyField

0.5.2

19 Dec 13:52
fcbee11
Compare
Choose a tag to compare
0.5.2 Pre-release
Pre-release
  • Fix: Skip processing of the FormField if value is not required and empty

0.5.1

19 Dec 10:52
a02e869
Compare
Choose a tag to compare
0.5.1 Pre-release
Pre-release
  • Fix: Process EnumField even if it's not marked as required

0.5.0

16 Dec 17:49
c09073a
Compare
Choose a tag to compare
0.5.0 Pre-release
Pre-release

WARNING: Huge API changes in this release, please check CHANGELOG.md

  • Change: Use native django.form.fields if possible
  • Change: Removed kwargs propagation from release 0.3.0
  • Change: Changed syntax back to django.forms compatible (e.g. form.validate_{key}() -> form.clean_{key}())
  • Change: FieldList raises ValidationError instead of RuntimeException if there is a type in validation
  • Change: Use private properties for internal data in field objects
  • Fixed: FieldList returns values instead of None
  • Fix: Fixed validation in DictionaryField
  • Maintenance: Basic unit tests

0.4.3

29 Nov 17:02
06b9e2a
Compare
Choose a tag to compare
0.4.3 Pre-release
Pre-release
  • Fix: Fixed Form has no attribute self._data

0.4.2

29 Nov 16:51
2362099
Compare
Choose a tag to compare
0.4.2 Pre-release
Pre-release
  • Fix: If payload is empty, create empty dictionary to avoid NoneType error

0.4.1

14 Nov 12:58
fce8a71
Compare
Choose a tag to compare
0.4.1 Pre-release
Pre-release
  • Feature: Introduced UUIDField

0.4.0

13 Nov 15:16
a360b84
Compare
Choose a tag to compare
0.4.0 Pre-release
Pre-release
  • Feature: Introduced DictionaryField

0.3.0

11 Nov 07:37
123c59c
Compare
Choose a tag to compare
0.3.0 Pre-release
Pre-release
  • Feature: Propagate kwargs from Form.is_valid() to Form.validate() and Form.validate_{key}() methods.

0.2.1

04 Nov 12:18
fd3ad55
Compare
Choose a tag to compare
0.2.1 Pre-release
Pre-release
  • Fix: Fixed to_python() in FormFieldList