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 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
@@ -238,7 +238,7 @@ module Authlogic
238
238
  end
239
239
 
240
240
  def reset_password_changed
241
- @password_changed = false
241
+ @password_changed = nil
242
242
  end
243
243
 
244
244
  def crypted_password_field
@@ -41,7 +41,7 @@ module Authlogic # :nodoc:
41
41
 
42
42
  MAJOR = 2
43
43
  MINOR = 0
44
- TINY = 7
44
+ TINY = 8
45
45
 
46
46
  # The current version as a Version instance
47
47
  CURRENT = new(MAJOR, MINOR, TINY)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlogic
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Johnson of Binary Logic