Releases: nishantonline1/django-rest-framework-passwordless
MAX WRONG ATTEMPT
New version release
Merge pull request #10 from anish5256/master change version
Allow device type to be different and set it None
Merge pull request #9 from anish5256/master Allow deive type to be different
1.6.1
What's Changed
- added user, device_id and device_type to readonly fields and setup version upgrade by @wick-prat in #8
New Contributors
- @wick-prat made their first contribution in #8
Full Changelog: 1.6.0...1.6.1
Bug fix made User and device id unique together
Merge pull request #6 from anish5256/master Update version to 1.6.0
Add AuthToken Support and Device ID/Type to DRFPasswordless
This PR introduces the following changes to the DRFPasswordless repository: AuthToken Support: Integrated the AuthToken app from the Django Rest Framework (DRF) into DRFPasswordless to enable token-based authentication for passwordless login. This will allow the app to issue and manage tokens for authenticated sessions. Device Information: Added support for device ID and device type fields to enhance user authentication and security. The device ID is a 64-character unique identifier to distinguish user devices. The device type field records the type of device (e.g., mobile, tablet, etc.) being used, providing better context for authentication events. These changes are aimed at improving the security and usability of DRFPasswordless, enabling token-based authentication while supporting multi-device management. Key Changes: Integrated AuthToken app for token support. Added new fields: device_id (64-character unique identifier). device_type (specifies the type of device). Updated necessary views and serializers to handle the new fields and token support. This enhancement will make the DRFPasswordless library more versatile, especially for apps that rely on token-based authentication systems and device tracking. Please review the changes and suggest any improvements.