Skip to content

Releases: nineinchnick/yii-usr

1.2.5: Merge pull request #60 from netis-pl/aw-manager-action-delete-json

12 Jan 12:31
Compare
Choose a tag to compare

PL translation fix

22 Apr 11:16
Compare
Choose a tag to compare
1.2.4

fix pl translation message

1.2.3

10 Mar 10:18
Compare
Choose a tag to compare

in LoginForm call identity->authenticate() in the authenticate() validator

1.2.2

20 Feb 08:45
Compare
Choose a tag to compare

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

03 Feb 22:49
Compare
Choose a tag to compare

Backported some One Time Pasword fixes from yii2-usr.

1.2.0

30 Jan 16:56
Compare
Choose a tag to compare

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

03 Apr 18:33
Compare
Choose a tag to compare
  • Improved remote auth using social sites
  • Added login attempts tracking

v1.0.0

05 Feb 19:37
Compare
Choose a tag to compare
  • 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

21 Dec 23:43
Compare
Choose a tag to compare

Preparing for 1.0:

  • bugfixes
  • more refactoring: decoupling components, documenting code
  • unit tests

v0.9.8

24 Nov 10:28
Compare
Choose a tag to compare
  • 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