-
Breaking Changes
- Drop support for ruby 1.9.3
- HTTP Basic Auth is now disabled by default (use allow_http_basic_auth to enable)
- 'httponly' and 'secure' cookie options are enabled by default now
- maintain_sessions config has been removed. It has been split into 2 new options: log_in_after_create & log_in_after_password_change (@lucasminissale)
-
Added
- #98 I18n for invalid session error message. (@eugenebolshakov)
-
Fixed
- Random.friendly_token (used for e.g. perishable token) now returns strings of consistent length, and conforms better to RFC-4648
- ensure that login field validation uses correct locale (@sskirby)
- add a respond_to_missing? in AbstractAdapter that also checks controller respond_to?
-
new
- Rails 5.0 support! Thanks to all reporters and contributors.
-
changes
- increased default minimum password length to 8 (@iainbeeston)
- bind parameters in where statement for rails 5 support
- change callback for rails 5 support
- converts the ActionController::Parameters to a Hash for rails 5 support
- check last_request_at_threshold even if last_request_at_update_allowed returns true (@rofreg)
- changes
- add Regex.email_nonascii for validation of emails w/unicode (@rchekaluk)
- allow scrypt 2.x (@jaredbeck)
- changes
- security-hardening fix and cleanup in persistence_token lookup
- security-hardening fix in perishable_token lookup (thx @tomekr)
- changes
- extract rw_config into an Authlogic::Config module
- improved the way config changes are made in tests
- fix for Rails 4.2 by extending ActiveModel
- changes
- backfill CHANGELOG
- better compatibility with jruby (thx @petergoldstein)
- added scrypt as a dependency
- cleanup some code (thx @roryokane)
- reference 'bcrypt' gem instead of 'bcrypt-ruby' (thx @roryokane)
- fixed typo (thx @chamini2)
- fixed magic column validations for Rails 4.2 (thx @tom-kuca)
- changes
- fixed the missing scrypt/bcrypt gem errors introduced in 3.4.1
- implemented autoloading for providers
- added longer subdomain support in email regex
- changes
- undid an accidental revert of some code
-
Breaking Changes
- made scrypt the default crypto provider from SHA512 (https://github.com/binarylogic/authlogic#upgrading-to-authlogic-340) See UPGRADING.md.
-
Added
- officially support rails 4 (still supporting rails 3)
- added cookie signing
- added request store for better concurency for threaded environments
- added a rack adapter for Rack middleware support
-
Fixed
- ditched appraisal
- improved find_with_case default performance
- added travis ci support
- changes
- added safeguard against a sqli that was also fixed in rails 3.2.10/3.1.9/3.0.18
- imposed the bcrypt gem's mincost
- removed shoulda macros
-
new
- scrypt support
-
changes
- moved back to LOWER for find_with_case ci lookups
- changes
- removed jeweler
- changes
- mostly test fixes
- changes
- mostly doc fixes
- changes
- mostly small bug fixes
-
changes
- rails 3.1 support
-
new
- http auth support
- changes
- doc fixes
- changes
- switch from LOWER to LIKE for find_with_case ci lookups
-
new
- ssl cookie support
- httponly cookie support
- added a session generator
-
changes
- rails 3 support
- ruby 1.9.2 support