This repository has been archived by the owner on May 5, 2021. It is now read-only.
Releases: zapier/django-rest-hooks
Releases · zapier/django-rest-hooks
v1.6.0
v1.5.0
v1.4.3
v1.4.2
v1.4.1
v1.4.0
- Makes the Hook model available for extension. (#44, #43)
- Adds setting to override
find_and_fire_hook
method. (#44) - Adds Django 1.10 & Django 1.11 testing support.
- Updates to README for general best practices.
- Requests' sessions used as a client for connection pooling. (#35, #34)
Note: The abstract Hook model feature should not have any side effects for current users. Upgrade with care.
Thanks goes out to @coady, @bryanhelmig , @tdruez
v1.3.1: Maintenance release with fixes.
- Fix for missing keyword argument assignment in ValidationError format string.
- Usage of Meta class in HookForm class.
- Addition of unit tests to assert working HookForm behavior.
v1.3.0: Minor release. Hook model change + new classes.
- Merged #28
- Removal of choices argument for event attribute in Hook model. Change eliminates creation of migration files when modifying the
HOOK_EVENTS
dictionary. BE ADVISED: This change can result in undesirable behavior when upgrading from v1.2.2. or older Given that knowledge, this release was bumped up to a minor release.
- Removal of choices argument for event attribute in Hook model. Change eliminates creation of migration files when modifying the
- Creation of HookAdmin class for the Hook model.
- Creation of HookForm class.
- Form class is used in HookAdmin.
- Addition of clean method to Hook model.
- Method validates event value is within the available choices in the
HOOK_EVENTS
dictionary.
- Method validates event value is within the available choices in the
Notes:
- Consider using HookForm.ADMIN_EVENTS to assign available
HOOK_EVENTS
dynamically.
v1.2.2: Maintenance release with fixes.
- Fix for #21
- Allows for the reliable firing of hooks when using the "+" option.
v1.2.1: Django 1.9 Support
- Support for Django 1.9.