diff --git a/CHANGELOG.md b/CHANGELOG.md index 31249fc7..93885d82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ### Unreleased +### 4.4.0 - 2017-12-29 + * enhancements * Add `frozen_string_literal` pragma comment to all Ruby files. (by @pat) * Use `set_flash_method!` instead of `set_flash_method` in `Devise::OmniauthCallbacksController#failure`. (by @saichander17) @@ -8,9 +10,10 @@ * Add `autocomplete="email"` to email fields. by (@MikeRogers0) * Add the ability to change the default migrations path introduced in Rails 5.0.3. (by @alexhifer) * Delete unnecessary condition for helper method. (by @davydovanton) -  * Support `id: :uuid` option for migrations. (by @filip373) + * Support `id: :uuid` option for migrations. (by @filip373) * bug fixes + * Fix syntax for MRI 2.5.0. (by @pat) * Validations were being ignored on singup in the `Trackable#update_tracked_fields!` method. (by @AshleyFoster) * Do not modify options for `#serializable_hash`. (by @guigs) * Email confirmations were being sent on sign in/sign out for application using `mongoid` and `mongoid-paperclip` gems. This is because previously we were checking if a model is from Active Record by checking if the method `after_commit` was defined - since `mongoid` doesn' have one - but `mongoid-paperclip` gem does define one, which cause this issue. (by @fjg) diff --git a/Gemfile.lock b/Gemfile.lock index 90933631..5907c3e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,7 +10,7 @@ GIT PATH remote: . specs: - devise (4.3.0) + devise (4.4.0) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0, < 5.2) @@ -190,4 +190,4 @@ DEPENDENCIES webrat (= 0.7.3) BUNDLED WITH - 1.14.6 + 1.15.3 diff --git a/gemfiles/Gemfile.rails-4.1-stable.lock b/gemfiles/Gemfile.rails-4.1-stable.lock index 864d944b..176928bc 100644 --- a/gemfiles/Gemfile.rails-4.1-stable.lock +++ b/gemfiles/Gemfile.rails-4.1-stable.lock @@ -21,7 +21,7 @@ GIT PATH remote: .. specs: - devise (4.3.0) + devise (4.4.0) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0, < 5.2) @@ -168,4 +168,4 @@ DEPENDENCIES webrat (= 0.7.3) BUNDLED WITH - 1.14.6 + 1.15.3 diff --git a/gemfiles/Gemfile.rails-4.2-stable.lock b/gemfiles/Gemfile.rails-4.2-stable.lock index 66a87d8d..84933ed9 100644 --- a/gemfiles/Gemfile.rails-4.2-stable.lock +++ b/gemfiles/Gemfile.rails-4.2-stable.lock @@ -57,7 +57,7 @@ GIT PATH remote: .. specs: - devise (4.3.0) + devise (4.4.0) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0, < 5.2) @@ -189,4 +189,4 @@ DEPENDENCIES webrat (= 0.7.3) BUNDLED WITH - 1.14.6 + 1.15.3 diff --git a/gemfiles/Gemfile.rails-5.0-stable.lock b/gemfiles/Gemfile.rails-5.0-stable.lock index cd933176..81030143 100644 --- a/gemfiles/Gemfile.rails-5.0-stable.lock +++ b/gemfiles/Gemfile.rails-5.0-stable.lock @@ -10,7 +10,7 @@ GIT PATH remote: .. specs: - devise (4.3.0) + devise (4.4.0) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0, < 5.2) @@ -175,7 +175,6 @@ PLATFORMS DEPENDENCIES activemodel-serializers-xml! devise! - minitest (< 5.10.2) mocha (~> 1.1) omniauth omniauth-facebook @@ -190,4 +189,4 @@ DEPENDENCIES webrat (= 0.7.3) BUNDLED WITH - 1.14.6 + 1.15.3 diff --git a/lib/devise/version.rb b/lib/devise/version.rb index 44b6adf2..532e4367 100644 --- a/lib/devise/version.rb +++ b/lib/devise/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Devise - VERSION = "4.3.0".freeze + VERSION = "4.4.0".freeze end