Releases: thoughtbot/clearance
Releases · thoughtbot/clearance
v0.10.4
Added
- Use HTML5 email fields.
Changed
- Emails forced to be downcased (particularly for iPhone user case).
Fixed
- Password reset requires a password.
Removed
- Formtastic views generator removed.
v0.10.3.2
v0.10.3.1
Fixed
- Ensure everything within features inside any engine directory is included in
thegemspec
.
v0.10.3
v0.10.0
Added
- Better email validation regular expression.
Removed
- Removed email confirmation step, was mostly a hassle and can always be added
back in at the application level (instead of engine level) if necessary. - Removed
disable_with
on forms since it does not allow IE users to submit
forms. Read more.
v0.9.1
v0.9.0
v0.8.8
v0.8.7
Fixed
- Fixed global sign out bug.
- Allow Rails apps to
before_filter :authenticate
the entire app
inApplicationController
and still have password recovery work without
overriding any controllers. - Rails 3 fix for
ActionController
/ActionDispatch
change.
v0.8.6
Added
- Allow overridden user models to skip email/password validations
conditionally. This makes username/facebook integration easier.
Fixed
- Clearance features capitalization should match view text.
- Skip
:authenticate before_filter
in controllers so apps can easily
authenticate a whole site without subclassing. - Added randomness to token and salt generation,
- Reset the
remember_token
on sign out instead of sign in. Allows for the same
user to sign in from two locations at once. - Append the version number to generated update migrations.