Releases: Sibyx/django_api_forms
Releases · Sibyx/django_api_forms
0.16.2
- Fix: Fixed issue with
clean_
methods returning values resolved as False (False
, None
, ''
)
0.16.1
- Fix: Ignore
ModelMultipleChoiceField
in Form::fill()
0.16.0
- Change: Correctly resolve key postfix if
ModelChoiceField
is used in Form::fill()
- Change:
DjangoApiFormsConfig
is created
- Note: One more step to get rid of
pytest
in project (we don't need it)
0.15.1
- Feature:
FileField.content_type
introduced (contains mime)
0.15.0
- Feature:
FileField
and ImageField
introduced
- Note: Defined extras in
setup.py
for optional Pillow
and msgpack
dependencies
- Feature: Working
Form::fill()
method for primitive data types. Introduced IgnoreFillMixin
0.14.0
- Feature:
BaseForm._request
property introduced (now it's possible to use request in clean_
methods)
0.13.0
- Fix: Fixed
Content-Type
handling if charset
or boundary
is present
0.12.0
- Fix: Do not call resolvers methods, if property is not required and not present in request
0.11.0
- Change: Non specified non-required fields will no longer be available in the cleaned_data form attribute.
0.10.0
- Change: All package exceptions inherits from
ApiFormException
.
- Fix: Specifying encoding while opening files in
setup.py
(failing on Windows OS).