From a37ff581ad393dda5549d2f800edbd15b2ec3465 Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Fri, 11 Dec 2020 16:09:02 -0500 Subject: [PATCH] 0.2.0 release --- CHANGES.rst | 25 ++++++++++++++++++++++--- openwisp_radius/__init__.py | 2 +- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 181860a8..28b87608 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,15 @@ Changelog ========= -Version 0.2.0 [unreleased] +Version 0.2.0 [2020-12-11] -------------------------- +Features +~~~~~~~~ + +- Changing the phone number via the API now keeps track of previous phone numbers + used by the user to comply with ISP legal requirements + Changes ~~~~~~~ @@ -11,8 +17,21 @@ Changes - Obtain Auth Token View API endpoint: if the user attempting to authenticate is inactive, the API will return HTTP status code 401 along with the auth token and ``is_active`` attribute -- Validate Auth Token View API endpoint: added ``is_active`` and ``phone_number`` - to response data +- Validate Auth Token View API endpoint: added ``is_active``, ``phone_number`` + and ``email`` to response data +- When changing phone number, user is flagged as inactive only after + the phone token is created and sent successfully +- All API endpoints related to phone token and SMS sending are now + disabled (return 403 HTTP response) if SMS verification not enabled + at organization level + +Bugfixes +~~~~~~~~ + +- Removed ``static()`` call from media assets +- Fixed password reset for inactive users +- Fixed default password reset URL value and added docs +- Documentation: fixed several broken internal links Version 0.1.0 [2020-09-10] -------------------------- diff --git a/openwisp_radius/__init__.py b/openwisp_radius/__init__.py index 5f4c42a3..1da09ae7 100644 --- a/openwisp_radius/__init__.py +++ b/openwisp_radius/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 2, 0, 'alpha') +VERSION = (0, 2, 0, 'final') __version__ = VERSION # alias