Skip to content

Commit

Permalink
Release 4.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosantoniodasilva committed Sep 21, 2020
1 parent f12be55 commit 45b831c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 12 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-4.1-stable.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-4.2-stable.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-5.0-stable.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-5.1-stable.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-5.2-stable.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-6.0-stable.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/devise/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Devise
VERSION = "4.7.2".freeze
VERSION = "4.7.3".freeze
end

0 comments on commit 45b831c

Please sign in to comment.