1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Update changelog with latest [ci skip]

This commit is contained in:
Carlos Antonio da Silva 2020-06-08 18:40:50 -03:00
parent 50f820a6cf
commit 2c1b5fb240
2 changed files with 4 additions and 1 deletions

View file

@ -1,9 +1,12 @@
### Unreleased
* enhancements
* Increase default stretches to 12 (by @sergey-alekseev)
* Ruby 2.7 support (kwarg warnings removed)
* bug fixes
* Generate scoped views with proper scoped errors partial (by @shobhitic)
* Allow to set scoped `already_authenticated` error messages (by @gurgelrenan)
### 4.7.1 - 2019-09-06

View file

@ -152,7 +152,7 @@ module Devise
# # If the record is new or changed then delay the
# # delivery until the after_commit callback otherwise
# # send now because after_commit will not be called.
# # For Rails < 6 is `changed?` instead of `saved_changes?`.
# # For Rails < 6 use `changed?` instead of `saved_changes?`.
# if new_record? || saved_changes?
# pending_devise_notifications << [notification, args]
# else