Skip to content

Commit

Permalink
0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Dec 11, 2020
1 parent e17951b commit a37ff58
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
25 changes: 22 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,37 @@
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
~~~~~~~

- Obtain Auth Token View API endpoint: added ``is_active`` attribute to response
- 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]
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion openwisp_radius/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 2, 0, 'alpha')
VERSION = (0, 2, 0, 'final')
__version__ = VERSION # alias


Expand Down

0 comments on commit a37ff58

Please sign in to comment.