**Highlights**
- Stability improvements
- Memory leak fixes
- Password reset security enhanced
- Password reset time limits
- JWT restructured
**Minor Breaks**
- JWT create_token only creates a JWT token without a refresh token. Param renamed to token_valid_for(seconds)
- JWT added method create_token_with_refresh_token , param is refresh_token_valid_for(seconds)
- config JWT restructured to:
"JWT": {
"TOKENS": {
"VALID_FOR": 7200
},
"REFRESH_TOKENS": {
"ENABLED": true,
"VALID_FOR": 86400
}
},