mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Release 2.0.6
This commit is contained in:
parent
0430689b01
commit
b78519e154
6 changed files with 11 additions and 20 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
== 2.0.6
|
||||||
|
|
||||||
|
* bug fix
|
||||||
|
* Do not confirm account after reset password
|
||||||
|
|
||||||
== 2.0.5
|
== 2.0.5
|
||||||
|
|
||||||
* bug fix
|
* bug fix
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
devise (2.0.5)
|
devise (2.0.6)
|
||||||
bcrypt-ruby (~> 3.0)
|
bcrypt-ruby (~> 3.0)
|
||||||
orm_adapter (~> 0.0.3)
|
orm_adapter (~> 0.0.3)
|
||||||
railties (~> 3.1)
|
railties (~> 3.1)
|
||||||
|
@ -39,7 +39,7 @@ GEM
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
addressable (2.2.6)
|
addressable (2.2.6)
|
||||||
arel (3.0.0)
|
arel (3.0.0)
|
||||||
bcrypt-ruby (3.0.1)
|
bcrypt-ruby (3.1.1)
|
||||||
bson (1.5.1)
|
bson (1.5.1)
|
||||||
bson_ext (1.3.1)
|
bson_ext (1.3.1)
|
||||||
builder (3.0.0)
|
builder (3.0.0)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: ..
|
remote: ..
|
||||||
specs:
|
specs:
|
||||||
devise (2.0.2)
|
devise (2.0.6)
|
||||||
bcrypt-ruby (~> 3.0)
|
bcrypt-ruby (~> 3.0)
|
||||||
orm_adapter (~> 0.0.3)
|
orm_adapter (~> 0.0.3)
|
||||||
railties (~> 3.1)
|
railties (~> 3.1)
|
||||||
|
@ -40,7 +40,7 @@ GEM
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
addressable (2.2.7)
|
addressable (2.2.7)
|
||||||
arel (2.2.1)
|
arel (2.2.1)
|
||||||
bcrypt-ruby (3.0.1)
|
bcrypt-ruby (3.1.1)
|
||||||
bson (1.5.2)
|
bson (1.5.2)
|
||||||
bson_ext (1.3.1)
|
bson_ext (1.3.1)
|
||||||
builder (3.0.0)
|
builder (3.0.0)
|
||||||
|
@ -87,7 +87,7 @@ GEM
|
||||||
omniauth-openid (1.0.1)
|
omniauth-openid (1.0.1)
|
||||||
omniauth (~> 1.0)
|
omniauth (~> 1.0)
|
||||||
rack-openid (~> 1.3.1)
|
rack-openid (~> 1.3.1)
|
||||||
orm_adapter (0.0.6)
|
orm_adapter (0.0.7)
|
||||||
polyglot (0.3.3)
|
polyglot (0.3.3)
|
||||||
rack (1.3.6)
|
rack (1.3.6)
|
||||||
rack-cache (1.1)
|
rack-cache (1.1)
|
||||||
|
|
|
@ -165,11 +165,6 @@ module Devise
|
||||||
generate_confirmation_token && save(:validate => false)
|
generate_confirmation_token && save(:validate => false)
|
||||||
end
|
end
|
||||||
|
|
||||||
def after_password_reset
|
|
||||||
super
|
|
||||||
confirm! unless confirmed?
|
|
||||||
end
|
|
||||||
|
|
||||||
def postpone_email_change_until_confirmation
|
def postpone_email_change_until_confirmation
|
||||||
@reconfirmation_required = true
|
@reconfirmation_required = true
|
||||||
self.unconfirmed_email = self.email
|
self.unconfirmed_email = self.email
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Devise
|
module Devise
|
||||||
VERSION = "2.0.5".freeze
|
VERSION = "2.0.6".freeze
|
||||||
end
|
end
|
||||||
|
|
|
@ -195,15 +195,6 @@ class PasswordTest < ActionController::IntegrationTest
|
||||||
assert !warden.authenticated?(:user)
|
assert !warden.authenticated?(:user)
|
||||||
end
|
end
|
||||||
|
|
||||||
test 'sign in user automatically and confirm after changing its password if it\'s not confirmed' do
|
|
||||||
user = create_user(:confirm => false)
|
|
||||||
request_forgot_password
|
|
||||||
reset_password :reset_password_token => user.reload.reset_password_token
|
|
||||||
|
|
||||||
assert warden.authenticated?(:user)
|
|
||||||
assert user.reload.confirmed?
|
|
||||||
end
|
|
||||||
|
|
||||||
test 'reset password request with valid E-Mail in XML format should return valid response' do
|
test 'reset password request with valid E-Mail in XML format should return valid response' do
|
||||||
create_user
|
create_user
|
||||||
post user_password_path(:format => 'xml'), :user => {:email => "user@test.com"}
|
post user_password_path(:format => 'xml'), :user => {:email => "user@test.com"}
|
||||||
|
|
Loading…
Add table
Reference in a new issue