Releases: wharton/automagic-rest
Releases · wharton/automagic-rest
0.2.6
Upgrade Django REST Framework Filters and Support DurationField
- Upgrades Django REST Framework Filters to
1.0.0dev2
from1.0.0dev0
- Adds support in the mapping for
internal
->DurationField
.
Support for DRF version 3.11.
0.2.4
- Support for DRF version 3.11 (
base_name
must becomebasename
in routes). Must use at least DRF version 3.9.
Prior Releases, before moving release notes to GitHub.
0.2.3
- Add support for
oid
field types in the field mapping. Last version to support DRF versions before 3.9.
0.2.2
- Ensure defaults for field type
NUMERIC
populate.
0.2.1
- Pull the reserved word list from Python dynamically.
0.2.0
- Refactored to use a generic serializer created on the fly. This is potentially a breaking change if you overrode the
get_serializer
method of thebuild_data_models
command.- This has been replaced by a view method called
get_serializer_class_name
. - The serializer is now built on-the-fly rather than by the code generator.
- This has been replaced by a view method called
0.1.2
- Add support for
DecimalField
withmax_digits
anddecimal_places
frominformation_schema.columns
fields.
0.1.1
- Switched to naming models and serializers with a combination of
schema_name
andtable_name
to avoid model naming conflicts in Django if the same table exists across multiple schemata.
0.1.0
- Initial release.