* (BREAKING) Ensure inputs are sent to all after_mutate hooks.
0.8.1
* (BREAKING) DjangoDeleteMutation now returns three id fields: deletedId, deletedRawId and deletedInputId. The default behaviour of deletedId is now to return a global id if the associated model type has a GlobalIDField for the "id" field.
0.8.0
* Add customisation of resolving IDs via the resolve_id(s) methods (bjmc) * Django model DecimalFields are now properly resolved to graphene.Decimal (sjdemartini) * (BREAKING) Django fields with choices are now reused from the associated DjangoObjectType. This implies that the created GraphQL field no longer has an extra "Input" at the end of the name. (keithhackbarth) * (BREAKING) Update DjangoBatch-mutations. All hooks now take an "input" parameter. * Added after_update_obj hook for DjangoBatchPatchMutation and DjangoBatchUpdateMutation. This will be called after each object is updated. * Added after_create_obj hook for DjangoBatchCreateMutation. This will be called after each object is created.
0.7.2
* Ensure DeleteMutation calls "validate"
0.7.1
* Add missing exports
0.7.0
* Allow nested overrides in extras (janosroden) * Allow UUID primary keys (janosroden) * Make DjangoPatchMutation a subclass of DjangoUpdateMutation * Improve documentation (bigtimecriminal) * Add auto-type handling to many to many extras * Add auto-type handling to foreign keys * Add DjangoBatchPatchMutation * Add DjangoBatchUpdateMutation * Add DjangoFilterUpdateMutation * Add custom fields for input types * Restructure some test files