* Fix some bad plain m2m and m2o field handling. * login_required now works as intended. Thanks to janosroden. * Add a `ignore_primary_key` option to DjangoCreateMutation. Thanks to e3oroush.
0.6.4
* Update DjangoBatchCreateMutation. Fix bad number of arguments on check_permissions.
0.6.3
* Update DjangoDeleteMutation, change a number of method signatures: * get_permission and check_permissions now takes the obj to be deleted as a parameter. * Renamed all `input` arguments to `id`. * after_mutate now takes a final `found` argument.
0.6.2
* Update patch and update mutations: Added the resolved object to check_permisions as a final argument.
0.6.1
* Updated all mutations: Only create new meta options when one does not already exist.
0.6.0
* Renamed DjangoBatchDeleteMutation to DjangoFilterDeleteMutation. * Added a new DjangoBatchDeleteMutation which takes an array of IDs to delete. * Added local versions of all overrideable methods. This makes type hinting more accurate. * Changed the argument order of some of the overrideable methods. * In particular: Changed the method signature of "get_queryset".