Mark 2.0.6 (#946)

2.0.6 / 2019-04-08
==================

**Security**
* Fixes an issue where user email addresses could be disclosed to non-admins

**General**
* Users/Teams set to hidden or banned are no longer visible by other users
    * This affects the API and the main user interface. This does not affect admins.
* Users without Teams can no longer view challenges when the CTF is in Team Mode
selenium-screenshot-testing 2.0.6
Kevin Chung 2019-04-08 07:57:40 -04:00 committed by GitHub
parent c0a32a836b
commit 33367422a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
2.0.6 / 2019-04-08
==================
**Security**
* Fixes an issue where user email addresses could be disclosed to non-admins
**General**
* Users/Teams set to hidden or banned are no longer visible by other users
* This affects the API and the main user interface. This does not affect admins
* Users without a Team can no longer view challenges when the CTF is in Team Mode
2.0.5 / 2019-03-23
==================

View File

@ -22,7 +22,7 @@ if sys.version_info[0] < 3:
reload(sys)
sys.setdefaultencoding("utf-8")
__version__ = '2.0.5'
__version__ = '2.0.6'
class CTFdRequest(Request):