Changes between Version 2 and Version 3 of Ticket #29522
- Timestamp:
- Jun 24, 2018, 9:27:47 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29522 – Description
v2 v3 1 1 **Use case** 2 2 3 Three times now I've had need to modify the ORM serializers for project use. In some cases I've had to replicate large parts (if not most) of `django.core.serializers. base` in order to change 1 or 2 lines because certain calls to functions in `django.core.serializers.base` from the serializers are hardcoded.3 Three times now I've had need to modify the ORM serializers for project use. In some cases I've had to replicate large parts (if not most) of `django.core.serializers.python` in order to change 1 or 2 lines because certain calls to functions in `django.core.serializers.base` from the serializers are hardcoded. 4 4 5 5 * Changing JSON serialization to output in alphabetical order (so that `dumpdata` doesn't reorder every field each time you run it)