mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Release 4.7.3
This commit is contained in:
parent
f12be553cc
commit
45b831c4ea
9 changed files with 14 additions and 12 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,13 +1,15 @@
|
|||
### master
|
||||
### unreleased
|
||||
|
||||
* deprecations
|
||||
* `Devise::Models::Authenticatable::BLACKLIST_FOR_SERIALIZATION` is deprecated in favor of `Devise::Models::Authenticatable::UNSAFE_ATTRIBUTES_FOR_SERIALIZATION` (@hanachin)
|
||||
|
||||
### 4.7.3 - 2020-09-20
|
||||
|
||||
* bug fixes
|
||||
* Do not modify `:except` option given to `#serializable_hash`. (by @dpep)
|
||||
* Fix thor deprecation when running the devise generator. (by @deivid-rodriguez)
|
||||
* Fix hanging tests for streaming controllers using Devise. (by @afn)
|
||||
|
||||
* deprecations
|
||||
* `Devise::Models::Authenticatable::BLACKLIST_FOR_SERIALIZATION` is deprecated in favor of `Devise::Models::Authenticatable::UNSAFE_ATTRIBUTES_FOR_SERIALIZATION` (@hanachin)
|
||||
|
||||
### 4.7.2 - 2020-06-10
|
||||
|
||||
* enhancements
|
||||
|
|
|
@ -19,7 +19,7 @@ GIT
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
devise (4.7.2)
|
||||
devise (4.7.3)
|
||||
bcrypt (~> 3.0)
|
||||
orm_adapter (~> 0.1)
|
||||
railties (>= 4.1.0)
|
||||
|
|
|
@ -48,7 +48,7 @@ GIT
|
|||
PATH
|
||||
remote: ..
|
||||
specs:
|
||||
devise (4.7.2)
|
||||
devise (4.7.3)
|
||||
bcrypt (~> 3.0)
|
||||
orm_adapter (~> 0.1)
|
||||
railties (>= 4.1.0)
|
||||
|
|
|
@ -57,7 +57,7 @@ GIT
|
|||
PATH
|
||||
remote: ..
|
||||
specs:
|
||||
devise (4.7.2)
|
||||
devise (4.7.3)
|
||||
bcrypt (~> 3.0)
|
||||
orm_adapter (~> 0.1)
|
||||
railties (>= 4.1.0)
|
||||
|
|
|
@ -10,7 +10,7 @@ GIT
|
|||
PATH
|
||||
remote: ..
|
||||
specs:
|
||||
devise (4.7.2)
|
||||
devise (4.7.3)
|
||||
bcrypt (~> 3.0)
|
||||
orm_adapter (~> 0.1)
|
||||
railties (>= 4.1.0)
|
||||
|
|
|
@ -10,7 +10,7 @@ GIT
|
|||
PATH
|
||||
remote: ..
|
||||
specs:
|
||||
devise (4.7.2)
|
||||
devise (4.7.3)
|
||||
bcrypt (~> 3.0)
|
||||
orm_adapter (~> 0.1)
|
||||
railties (>= 4.1.0)
|
||||
|
|
|
@ -10,7 +10,7 @@ GIT
|
|||
PATH
|
||||
remote: ..
|
||||
specs:
|
||||
devise (4.7.2)
|
||||
devise (4.7.3)
|
||||
bcrypt (~> 3.0)
|
||||
orm_adapter (~> 0.1)
|
||||
railties (>= 4.1.0)
|
||||
|
|
|
@ -19,7 +19,7 @@ GIT
|
|||
PATH
|
||||
remote: ..
|
||||
specs:
|
||||
devise (4.7.2)
|
||||
devise (4.7.3)
|
||||
bcrypt (~> 3.0)
|
||||
orm_adapter (~> 0.1)
|
||||
railties (>= 4.1.0)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Devise
|
||||
VERSION = "4.7.2".freeze
|
||||
VERSION = "4.7.3".freeze
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue