authlogic 2.0.7 → 2.0.8
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of authlogic might be problematic. Click here for more details.
- data/CHANGELOG.rdoc +5 -1
- data/lib/authlogic/acts_as_authentic/password.rb +1 -1
- data/lib/authlogic/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
== 2.0.8 release 2009-4-9
|
2
|
+
|
3
|
+
* Dont reset the @password_changed instance variable to false because its halts the callback chain, instead reset it to nil.
|
4
|
+
|
1
5
|
== 2.0.7 release 2009-4-9
|
2
6
|
|
3
7
|
* Rename TestCase::ControllerAdapter to TestCase::RailsRequestAdapter to help clarify it's usage and fix a constant typo.
|
@@ -8,7 +12,7 @@
|
|
8
12
|
* Update email regular expression to be less TLD specific: (?:[A-Z]{2,4}|museum|travel)
|
9
13
|
* Update shoulda macro for 2.0
|
10
14
|
* validates_length_of_password_confirmation_field_options defaults to validates_confirmation_of_password_field_options
|
11
|
-
* Use MockCookieJar in tests instead of a Hash.
|
15
|
+
* Use MockCookieJar in tests instead of a Hash in the MockController.
|
12
16
|
* Cookies now store the record id as well, for faster lookup. Also to avoid the need to use sessions since sessions are lazily loaded in rails 2.3+
|
13
17
|
* Add configuration option for Authlogic::ActsAsAuthentic: ignore_blank_passwords
|
14
18
|
* Fix cookie_domain in rails adapter
|
data/lib/authlogic/version.rb
CHANGED