Release 4.7.3

This commit is contained in:
Carlos Antonio da Silva 2020-09-20 21:24:01 -03:00
parent f12be553cc
commit 45b831c4ea
9 changed files with 14 additions and 12 deletions

View File

@ -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

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Devise
VERSION = "4.7.2".freeze
VERSION = "4.7.3".freeze
end