Skip to content

Releases: yunojuno/django-onfido

v2.2 Support scheduled deletion of checks.

27 Jun 09:04
Compare
Choose a tag to compare

Release supporting Onfidos rolling deletions.
When a Check is scheduled for deletion via an agreement with Onfido the Check model will transition to EXPIRED.

What's Changed

Full Changelog: v2.1...v2.2

v1.1 Compute usage of is_clear

06 May 09:10
7b8216f
Compare
Choose a tag to compare

This release removes the is_clear field from the BaseStatusModel, which Check and Report inherit.

It is replaced by a computed property which checks the result for the Result.CLEAR and returns as a bool.

This is a data change, it now returns True/False whereas before it returned True/False/None.

Drop support for Py2 and Django < 1.11

11 May 09:46
35de877
Compare
Choose a tag to compare

Python3 compatible

08 Apr 17:17
Compare
Choose a tag to compare

Improved support for overriding results

15 Nov 15:47
Compare
Choose a tag to compare

When a result is unclear ('consider', 'unidentified') there is a new attribute on the model called is_clear which enables admins to mark the record as clear.

Model refactoring

27 Oct 21:50
Compare
Choose a tag to compare

The Event has been refactored to bring it in line with the other models. This includes a change in field names, hence the minor version bump.

In addition there is improved logging, new batch fetch and pull queryset methods and a ONFIDO_TEST_MODE setting which can be used to bypass signature verification.

X-Signature support

26 Oct 18:33
Compare
Choose a tag to compare

Callback view function now supports (in fact enforces) X-Signature verification, as per the webhook docs.

Test coverage

26 Oct 16:01
Compare
Choose a tag to compare

Fixes up the readme, adds a coverage badge, and adds codecov integration to Travis-CI

Data scrubbing

26 Oct 16:03
Compare
Choose a tag to compare

The fetch and pull methods will now scrub sensitive data from the API prior to saving it.

Fetch and pull API integration

27 Oct 21:53
Compare
Choose a tag to compare

You can now update a Django object with the latest API version using fetch and pull methods.