Skip to content

Commit

Permalink
Preparing configs for v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdade committed Apr 23, 2019
1 parent d1e6a02 commit 81b4fc0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project strives to adhere to [Semantic Versioning](https://semver.org/s
## Unreleased


## [v0.6.3]
More information can be found at [natlas/v0.6.3](https://github.com/natlas/natlas/releases/tag/v0.6.3)

### Added
* Normal users can now be added with the add-admin.py bootstrap script

### Changed
* SECURITY - Invite and Password Reset tokens have moved from using JWT to database-backed stateful tokens. These tokens expire after a defined period of time, as well as if the token is successfully used.
* Various styling improvements for authentication pages

### Fixed
* SECURITY - Invite and Password Reset flows have been updated to include an intermediary step that prevents the secret tokens from leaking to 3rd parties via the Referer header.
* SECURITY - Email validation is much stricter now, through the use of python-email-validator. This fixes problems where emails like `test@test.com@test.com` or `test @test.com` could have been treated as valid emails, causing unexpected behaviors.
* New users are explicitly created with "is_admin" set to false, instead of the previous "None" that they would get in certain flows.
* The nginx deployment script now correctly recommends placing all logs in the same folder, instead of `/var/log/nginx/natlas` and `/var/log/nginx/natlas.io`.
* Fixed erroneous help string in search help modal that was a holdover from v0.5.x.

### Removed
* Removed an unused css load from adobe for the NATLAS logo font. We previously settled on using the image, but had forgotten to remove the font stylesheet include.

## [v0.6.2]
More information can be found at [natlas/v0.6.2](https://github.com/natlas/natlas/releases/tag/v0.6.2)

Expand Down Expand Up @@ -108,7 +128,8 @@ More Info can be found at [natlas/v0.5.0](https://github.com/natlas/natlas/relea
* Ability to run in standalone mode


[Unreleased]: https://github.com/natlas/natlas/compare/v1.6.2...HEAD
[Unreleased]: https://github.com/natlas/natlas/compare/v1.6.3...HEAD
[v0.6.3]: https://github.com/natlas/natlas/compare/v0.6.2...v0.6.3
[v0.6.2]: https://github.com/natlas/natlas/compare/v0.6.1...v0.6.2
[v0.6.1]: https://github.com/natlas/natlas/compare/v0.6.0...v0.6.1
[v0.6.0]: https://github.com/natlas/natlas/compare/v0.5.4...v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion natlas-agent/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class Config:

# Current Version
NATLAS_VERSION="0.6.2"
NATLAS_VERSION="0.6.3"

BASEDIR = os.path.abspath(os.path.dirname(__file__))
load_dotenv(os.path.join(BASEDIR, '.env'))
Expand Down
2 changes: 1 addition & 1 deletion natlas-server/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class Config(object):

# Current Version
NATLAS_VERSION="0.6.2"
NATLAS_VERSION="0.6.3"

BASEDIR = os.path.abspath(os.path.dirname(__file__))
load_dotenv(os.path.join(BASEDIR, '.env'))
Expand Down

0 comments on commit 81b4fc0

Please sign in to comment.