Releases: nineinchnick/yii-usr
Releases · nineinchnick/yii-usr
1.2.5: Merge pull request #60 from netis-pl/aw-manager-action-delete-json
PL translation fix
1.2.4 fix pl translation message
1.2.3
in LoginForm call identity->authenticate() in the authenticate() validator
1.2.2
Noticable changes:
- fixed user managment: don't try to set nonexistent SearchForm.webUser property
- allow login and recovery form behaviors to override attribute labels
- ran php-cs-fixer on everything except extensions
1.2.1
Backported some One Time Pasword fixes from yii2-usr.
1.2.0
WARNING! This is a backward compatibility breaking release for OneTimePassword and ExpiredPassword behaviors.
Major refactoring of behaviors, including:
- Moved one time password and expired password module properties and constants into respective behaviors and introduced a new
UsrModule.loginFormBehaviors
property. To enable those behaviors, they need to be configured through this new property. - Allow form behaviors to alter the owners rules, for example removing authentication for the reset scenario if the
UserIdentity.resetPassword()
method performs authentication itself - Attaching custom behaviors to the LoginForm allows to attach beforeLogin and afterLogin events, which can change the LoginForm scenario and load a different view
- Added
register
console command - When changing the password via profile update page, the new password is now just compared to the old one instead of calling
authenticate()
1.1.0
- Improved remote auth using social sites
- Added login attempts tracking
v1.0.0
- Profile picture support with Gravatar support in ExampleUserIdentity and reading photos from remote identities when associating accounts
- Better support overriding views in themes
- Require password when changing email while updating profile
v0.9.9
Preparing for 1.0:
- bugfixes
- more refactoring: decoupling components, documenting code
- unit tests
v0.9.8
- Major code refactoring
- One Time Password and Captcha moved into behaviors
- Common forms code moved to base class
- Implemented password history table, model and validation
- Warning, table names in example migrations are now plural
- Moved password strength rules as module option so it's configurable
- Refactored all example migrations and models to use plural table names
- Other minor improvements