Releases: acoustep/entrust-gui
Laravel 5.5 Support
A small fix for updating users without changing the password and some additional instructions in the README.md
Model Generator Console Command
This release brings a console command for generating models. This makes getting started much easier assuming existing models can be replaced. Models that already exist are confirmed before they are overwritten.
This release also brings in a new development dependency of TestBench so that that more tests can be written.
Confirmable passwords and persist old input
Entrust GUI now uses Esensi/Model which allows for more complex validation and moves password hashing to the User model. This allows for optional confirmable passwords.
Because hashing passwords moves from the package to the model it's essential that models are updated. For this reason using the previously recommended model will now throw an exception
User model must implement Esensi\Model\Contracts\HashingModelInterface. Revert to 0.3.* or see upgrade guide for details.
This is to prevent passwords being saved unhashed and force users to either revert or comply to the changes.
This release also persists old input when validation fails and tidies up spacing issues with various buttons.
Testing and refactoring gateways and middleware
This release comes with some basic tests for Gateways and middleware. This also meant some refactoring to how they worked. This should not create any breaking changes.
Translations
More translation code and some PSR-2 code style clean-up.
GUI, Events and Validation
0.1.0 GUI, Events and Validation