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

fix markdown in CHANGELOG [ci skip]

closes #2626
This commit is contained in:
Vasiliy Ermolovich 2013-09-13 22:29:34 +03:00
parent b24d178b21
commit 4216c34538

View file

@ -1,9 +1,9 @@
== 3.2.0-dev ### 3.2.0-dev
* enhancements * enhancements
* Previously deprecated token authenticatable and insecure lookups have been removed * Previously deprecated token authenticatable and insecure lookups have been removed
== 3.1.0 ### 3.1.0
Security announcement: http://blog.plataformatec.com.br/2013/08/devise-3-1-now-with-more-secure-defaults/ Security announcement: http://blog.plataformatec.com.br/2013/08/devise-3-1-now-with-more-secure-defaults/
@ -26,12 +26,12 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/devise-3-1-now-w
* Do not compare directly against confirmation, unlock and reset password tokens * Do not compare directly against confirmation, unlock and reset password tokens
* Skip storage for cookies on unverified requests * Skip storage for cookies on unverified requests
== 3.0.2 ### 3.0.2
* bug fix * bug fix
* Skip storage for cookies on unverified requests * Skip storage for cookies on unverified requests
== 3.0.1 ### 3.0.1
Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixation-attacks-in-devise/ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixation-attacks-in-devise/
@ -42,7 +42,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixat
* When using rails 3.2, the generator adds 'attr_accessible' to the model (by @jcoyne) * When using rails 3.2, the generator adds 'attr_accessible' to the model (by @jcoyne)
* Clean up CSRF token after authentication (by @homakov). Notice this change will clean up the CSRF Token after authentication (sign in, sign up, etc). So if you are using AJAX for such features, you will need to fetch a new CSRF token from the server. * Clean up CSRF token after authentication (by @homakov). Notice this change will clean up the CSRF Token after authentication (sign in, sign up, etc). So if you are using AJAX for such features, you will need to fetch a new CSRF token from the server.
== 3.0.0 ### 3.0.0
* enhancements * enhancements
* Rails 4 and Strong Parameters compatibility (by @carlosantoniodasilva, @josevalim, @latortuga, @lucasmazza, @nashby, @rafaelfranca, @spastorino) * Rails 4 and Strong Parameters compatibility (by @carlosantoniodasilva, @josevalim, @latortuga, @lucasmazza, @nashby, @rafaelfranca, @spastorino)
@ -55,7 +55,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixat
* backwards incompatible changes * backwards incompatible changes
* Changes on session storage will expire all existing sessions on upgrade. For those storing the session in the DB, they can be upgraded according to this gist: https://gist.github.com/moll/6417606 * Changes on session storage will expire all existing sessions on upgrade. For those storing the session in the DB, they can be upgraded according to this gist: https://gist.github.com/moll/6417606
== 2.2.4 ### 2.2.4
* enhancements * enhancements
* Add `destroy_with_password` to `DatabaseAuthenticatable`. Allows destroying a record when `:current_password` matches, similarly to how `update_with_password` works. (by @michiel3) * Add `destroy_with_password` to `DatabaseAuthenticatable`. Allows destroying a record when `:current_password` matches, similarly to how `update_with_password` works. (by @michiel3)
@ -71,25 +71,25 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixat
* Fix inheriting mailer templates from `Devise::Mailer` * Fix inheriting mailer templates from `Devise::Mailer`
* Fix a bug when procs are used as default mailer in Devise (by @tomasv) * Fix a bug when procs are used as default mailer in Devise (by @tomasv)
== 2.2.3 ### 2.2.3
Security announcement: http://blog.plataformatec.com.br/2013/01/security-announcement-devise-v2-2-3-v2-1-3-v2-0-5-and-v1-5-3-released/ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announcement-devise-v2-2-3-v2-1-3-v2-0-5-and-v1-5-3-released/
* bug fix * bug fix
* Require string conversion for all values * Require string conversion for all values
== 2.2.2 ### 2.2.2
* bug fix * bug fix
* Fix bug when checking for reconfirmable in templates * Fix bug when checking for reconfirmable in templates
== 2.2.1 ### 2.2.1
* bug fix * bug fix
* Fix regression with case_insensitive_keys * Fix regression with case_insensitive_keys
* Fix regression when password is blank when it is invalid * Fix regression when password is blank when it is invalid
== 2.2.0 ### 2.2.0
* backwards incompatible changes * backwards incompatible changes
* `headers_for` is deprecated, customize the mailer directly instead * `headers_for` is deprecated, customize the mailer directly instead
@ -120,7 +120,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
* `update_with_password` doesn't change encrypted password when it is invalid (by @nashby) * `update_with_password` doesn't change encrypted password when it is invalid (by @nashby)
* Properly handle namespaced models on Active Record generator (by @nashby) * Properly handle namespaced models on Active Record generator (by @nashby)
== 2.1.2 ### 2.1.2
* enhancements * enhancements
* Handle backwards incompatibility between Rails 3.2.6 and Thor 0.15.x * Handle backwards incompatibility between Rails 3.2.6 and Thor 0.15.x
@ -128,7 +128,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
* bug fix * bug fix
* Fix regression on strategy validation on previous release * Fix regression on strategy validation on previous release
== 2.1.1 (yanked) ### 2.1.1 (yanked)
* enhancements * enhancements
* `sign_out_all_scopes` now locks warden and does not allow new logins in the same action * `sign_out_all_scopes` now locks warden and does not allow new logins in the same action
@ -145,7 +145,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
* deprecations * deprecations
* Strategy#validate() no longer validates nil resources * Strategy#validate() no longer validates nil resources
== 2.1.0 ### 2.1.0
* enhancements * enhancements
* Add `check_fields!(model_class)` method on Devise::Models to check if the model includes the fields that Devise uses * Add `check_fields!(model_class)` method on Devise::Models to check if the model includes the fields that Devise uses
@ -172,7 +172,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
* Return `head :no_content` in SessionsController now that most JS libraries handle it (by @julianvargasalvarez) * Return `head :no_content` in SessionsController now that most JS libraries handle it (by @julianvargasalvarez)
* Reverted moving devise/shared/_links.erb to devise/_links.erb * Reverted moving devise/shared/_links.erb to devise/_links.erb
== 2.0.4 ### 2.0.4
Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.0 Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.0
@ -180,7 +180,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Fix when :host is used with devise_for (by @mreinsch) * Fix when :host is used with devise_for (by @mreinsch)
* Fix a regression that caused Warden to be initialized too late * Fix a regression that caused Warden to be initialized too late
== 2.0.3 (yanked) ### 2.0.3 (yanked)
* bug fix * bug fix
* Ensure warning is not shown by mistake on apps with mounted engines * Ensure warning is not shown by mistake on apps with mounted engines
@ -188,7 +188,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Ensure serializable_hash does not depend on accessible attributes * Ensure serializable_hash does not depend on accessible attributes
* Ensure that timeout callback does not run on sign out action * Ensure that timeout callback does not run on sign out action
== 2.0.2 ### 2.0.2
* enhancements * enhancements
* Add devise_i18n_options to customize I18n message * Add devise_i18n_options to customize I18n message
@ -200,7 +200,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Show a warning in case someone gives a pluralized name to devise generator * Show a warning in case someone gives a pluralized name to devise generator
* Fix test behavior for rspec subject requests (by @sj26) * Fix test behavior for rspec subject requests (by @sj26)
== 2.0.1 ### 2.0.1
* enhancements * enhancements
* Improved error messages on deprecation warnings * Improved error messages on deprecation warnings
@ -209,7 +209,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* Removed tmp and log files from gem * Removed tmp and log files from gem
== 2.0.0 ### 2.0.0
* enhancements * enhancements
* Add support for e-mail reconfirmation on change (by @Mandaryn and @heimidal) * Add support for e-mail reconfirmation on change (by @Mandaryn and @heimidal)
@ -235,14 +235,14 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Deprecated support to devise.registrations.reasons and devise.registrations.inactive_signed_up in favor of devise.registrations.signed_up_but_* * Deprecated support to devise.registrations.reasons and devise.registrations.inactive_signed_up in favor of devise.registrations.signed_up_but_*
* Protected method render_with_scope was removed. * Protected method render_with_scope was removed.
== 1.5.3 ### 1.5.3
* bug fix * bug fix
* Ensure delegator converts scope to symbol (by @dmitriy-kiriyenko) * Ensure delegator converts scope to symbol (by @dmitriy-kiriyenko)
* Ensure passing :format => false to devise_for is not permanent * Ensure passing :format => false to devise_for is not permanent
* Ensure path checker does not check invalid routes * Ensure path checker does not check invalid routes
== 1.5.2 ### 1.5.2
* enhancements * enhancements
* Add support for Rails 3.1 new mass assignment conventions (by @kirs) * Add support for Rails 3.1 new mass assignment conventions (by @kirs)
@ -251,12 +251,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* OmniAuth error message now shows the proper option (:strategy_class instead of :klass) * OmniAuth error message now shows the proper option (:strategy_class instead of :klass)
== 1.5.1 ### 1.5.1
* bug fix * bug fix
* Devise should not attempt to load OmniAuth strategies. Strategies should be loaded before hand by the developer or explicitly given to Devise. * Devise should not attempt to load OmniAuth strategies. Strategies should be loaded before hand by the developer or explicitly given to Devise.
== 1.5.0 ### 1.5.0
* enhancements * enhancements
* Timeoutable also skips tracking if skip_trackable is given * Timeoutable also skips tracking if skip_trackable is given
@ -277,12 +277,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* redirect_location is deprecated, please use after_sign_in_path_for * redirect_location is deprecated, please use after_sign_in_path_for
* after_sign_in_path_for now redirects to session[scope_return_to] if any value is stored in it * after_sign_in_path_for now redirects to session[scope_return_to] if any value is stored in it
== 1.4.9 ### 1.4.9
* bug fix * bug fix
* url helpers were not being set under some circumstances * url helpers were not being set under some circumstances
== 1.4.8 ### 1.4.8
* enhancements * enhancements
* Add docs for assets pipeline and Heroku * Add docs for assets pipeline and Heroku
@ -290,12 +290,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* confirmation_url was not being set under some circumstances * confirmation_url was not being set under some circumstances
== 1.4.7 ### 1.4.7
* bug fix * bug fix
* Fix backward incompatible change from 1.4.6 for those using custom controllers * Fix backward incompatible change from 1.4.6 for those using custom controllers
== 1.4.6 (yanked) ### 1.4.6 (yanked)
* enhancements * enhancements
* Allow devise_for :skip => :all * Allow devise_for :skip => :all
@ -303,7 +303,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Allow --skip-routes to devise generator * Allow --skip-routes to devise generator
* Add allow_params_authentication! to make it explicit when params authentication is allowed in a controller * Add allow_params_authentication! to make it explicit when params authentication is allowed in a controller
== 1.4.5 ### 1.4.5
* bug fix * bug fix
* Failure app tries the root path if a session one does not exist * Failure app tries the root path if a session one does not exist
@ -311,12 +311,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Reset password shows proper message if user is not active * Reset password shows proper message if user is not active
* `clean_up_passwords` sets the accessors to nil to skip validations * `clean_up_passwords` sets the accessors to nil to skip validations
== 1.4.4 ### 1.4.4
* bug fix * bug fix
* Do not always skip helpers, instead provide :skip_helpers as option to trigger it manually * Do not always skip helpers, instead provide :skip_helpers as option to trigger it manually
== 1.4.3 ### 1.4.3
* enhancements * enhancements
* Improve Rails 3.1 compatibility * Improve Rails 3.1 compatibility
@ -332,12 +332,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* deprecations * deprecations
* Loosened the used email regexp to simply assert the existent of "@". If someone relies on a more strict regexp, they may use https://github.com/SixArm/sixarm_ruby_email_address_validation * Loosened the used email regexp to simply assert the existent of "@". If someone relies on a more strict regexp, they may use https://github.com/SixArm/sixarm_ruby_email_address_validation
== 1.4.2 ### 1.4.2
* bug fix * bug fix
* Provide a more robust behavior to serializers and add :force_except option * Provide a more robust behavior to serializers and add :force_except option
== 1.4.1 ### 1.4.1
* enhancements * enhancements
* Add :defaults and :format support on router * Add :defaults and :format support on router
@ -348,7 +348,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Ensure to_xml is properly white listened * Ensure to_xml is properly white listened
* Ensure handle_unverified_request clean up any cached signed-in user * Ensure handle_unverified_request clean up any cached signed-in user
== 1.4.0 ### 1.4.0
* enhancements * enhancements
* Added authenticated and unauthenticated to the router to route the used based on his status (by @sj26) * Added authenticated and unauthenticated to the router to route the used based on his status (by @sj26)
@ -366,22 +366,22 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Devise now honors routes constraints (by @macmartine) * Devise now honors routes constraints (by @macmartine)
* Do not return the user resource when requesting instructions (by @rodrigoflores) * Do not return the user resource when requesting instructions (by @rodrigoflores)
== 1.3.4 ### 1.3.4
* bug fix * bug fix
* Do not add formats if html or "*/*" * Do not add formats if html or "*/*"
== 1.3.3 ### 1.3.3
* bug fix * bug fix
* Explicitly mark the token as expired if so * Explicitly mark the token as expired if so
== 1.3.2 ### 1.3.2
* bug fix * bug fix
* Fix another regression related to reset_password_sent_at (by @alexdreher) * Fix another regression related to reset_password_sent_at (by @alexdreher)
== 1.3.1 ### 1.3.1
* enhancements * enhancements
* Improve failure_app responses (by @indirect) * Improve failure_app responses (by @indirect)
@ -390,7 +390,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* Fix a regression that occurred if reset_password_sent_at is not present (by @stevehodgkiss) * Fix a regression that occurred if reset_password_sent_at is not present (by @stevehodgkiss)
== 1.3.0 ### 1.3.0
* enhancements * enhancements
* All controllers can now handle different mime types than html using Responders (by @sikachu) * All controllers can now handle different mime types than html using Responders (by @sikachu)
@ -410,19 +410,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* backward incompatible changes * backward incompatible changes
* authentication_keys are no longer considered when creating the e-mail validations, the previous behavior was buggy. You must double check if you were relying on such behavior. * authentication_keys are no longer considered when creating the e-mail validations, the previous behavior was buggy. You must double check if you were relying on such behavior.
== 1.2.1 ### 1.2.1
* enhancements * enhancements
* Improve update path messages * Improve update path messages
== 1.2.0 ### 1.2.0
* bug fix * bug fix
* Properly ignore path prefix on omniauthable * Properly ignore path prefix on omniauthable
* Faster uniqueness queries * Faster uniqueness queries
* Rename active? to active_for_authentication? to avoid conflicts * Rename active? to active_for_authentication? to avoid conflicts
== 1.2.rc2 ### 1.2.rc2
* enhancements * enhancements
* Make friendly_token 20 chars long * Make friendly_token 20 chars long
@ -452,7 +452,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Removed --haml and --slim view templates * Removed --haml and --slim view templates
* Devise::OmniAuth helpers were deprecated and removed in favor of Omniauth.config.test_mode * Devise::OmniAuth helpers were deprecated and removed in favor of Omniauth.config.test_mode
== 1.2.rc ### 1.2.rc
* deprecations * deprecations
* cookie_domain is deprecated in favor of cookie_options * cookie_domain is deprecated in favor of cookie_options
@ -490,13 +490,13 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Ensure namespaces has proper scoped views * Ensure namespaces has proper scoped views
* Ensure Devise does not set empty flash messages (by @sxross) * Ensure Devise does not set empty flash messages (by @sxross)
== 1.1.6 ### 1.1.6
* Use a more secure e-mail regexp * Use a more secure e-mail regexp
* Implement Rails 3.0.4 handle unverified request * Implement Rails 3.0.4 handle unverified request
* Use secure_compare to compare passwords * Use secure_compare to compare passwords
== 1.1.5 ### 1.1.5
* bugfix * bugfix
* Ensure to convert keys on indifferent hash * Ensure to convert keys on indifferent hash
@ -504,12 +504,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* defaults * defaults
* Set config.http_authenticatable to false to avoid confusion * Set config.http_authenticatable to false to avoid confusion
== 1.1.4 ### 1.1.4
* bugfix * bugfix
* Avoid session fixation attacks * Avoid session fixation attacks
== 1.1.3 ### 1.1.3
* bugfix * bugfix
* Add reply-to to e-mail headers by default * Add reply-to to e-mail headers by default
@ -520,17 +520,17 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Fix for failed first-ever logins on PostgreSQL where column default is nil (by @bensie) * Fix for failed first-ever logins on PostgreSQL where column default is nil (by @bensie)
* :default options is now honored in migrations * :default options is now honored in migrations
== 1.1.2 ### 1.1.2
* bugfix * bugfix
* Compatibility with latest Rails routes schema * Compatibility with latest Rails routes schema
== 1.1.1 ### 1.1.1
* bugfix * bugfix
* Fix a small bug where generated locale file was empty on devise:install * Fix a small bug where generated locale file was empty on devise:install
== 1.1.0 ### 1.1.0
* enhancements * enhancements
* Rememberable module allows user to be remembered across browsers and is enabled by default (by @trevorturk) * Rememberable module allows user to be remembered across browsers and is enabled by default (by @trevorturk)
@ -550,7 +550,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* deprecations * deprecations
* use_default_scope is deprecated and has no effect. Use :as or :devise_scope in the router instead * use_default_scope is deprecated and has no effect. Use :as or :devise_scope in the router instead
== 1.1.rc2 ### 1.1.rc2
* enhancements * enhancements
* Allow to set cookie domain for the remember token. (by @mantas) * Allow to set cookie domain for the remember token. (by @mantas)
@ -568,7 +568,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* devise.mailer.user.confirmations_instructions now should be devise.mailer.confirmations_instructions.user_subject * devise.mailer.user.confirmations_instructions now should be devise.mailer.confirmations_instructions.user_subject
* Generators now use Rails 3 syntax (devise:install) instead of devise_install * Generators now use Rails 3 syntax (devise:install) instead of devise_install
== 1.1.rc1 ### 1.1.rc1
* enhancements * enhancements
* Rails 3 compatibility * Rails 3 compatibility
@ -600,7 +600,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* All messages under devise.sessions, except :signed_in and :signed_out, should be moved to devise.failure * All messages under devise.sessions, except :signed_in and :signed_out, should be moved to devise.failure
* :as and :scope in routes is deprecated. Use :path and :singular instead * :as and :scope in routes is deprecated. Use :path and :singular instead
== 1.0.8 ### 1.0.8
* enhancements * enhancements
* Support for latest MongoMapper * Support for latest MongoMapper
@ -609,7 +609,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* confirmation_required? is properly honored on active? calls. (by @paulrosania) * confirmation_required? is properly honored on active? calls. (by @paulrosania)
== 1.0.7 ### 1.0.7
* bug fix * bug fix
* Ensure password confirmation is always required * Ensure password confirmation is always required
@ -618,14 +618,14 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* authenticatable was deprecated and renamed to database_authenticatable * authenticatable was deprecated and renamed to database_authenticatable
* confirmable is not included by default on generation * confirmable is not included by default on generation
== 1.0.6 ### 1.0.6
* bug fix * bug fix
* Do not allow unlockable strategies based on time to access a controller. * Do not allow unlockable strategies based on time to access a controller.
* Do not send unlockable email several times. * Do not send unlockable email several times.
* Allow controller to upstram custom! failures to Warden. * Allow controller to upstram custom! failures to Warden.
== 1.0.5 ### 1.0.5
* bug fix * bug fix
* Use prepend_before_filter in require_no_authentication. * Use prepend_before_filter in require_no_authentication.
@ -633,19 +633,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Fix a bug when giving an association proxy to devise. * Fix a bug when giving an association proxy to devise.
* Do not use lock! on lockable since it's part of ActiveRecord API. * Do not use lock! on lockable since it's part of ActiveRecord API.
== 1.0.4 ### 1.0.4
* bug fix * bug fix
* Fixed a bug when deleting an account with rememberable * Fixed a bug when deleting an account with rememberable
* Fixed a bug with custom controllers * Fixed a bug with custom controllers
== 1.0.3 ### 1.0.3
* enhancements * enhancements
* HTML e-mails now have proper formatting * HTML e-mails now have proper formatting
* Do not remove MongoMapper options in find * Do not remove MongoMapper options in find
== 1.0.2 ### 1.0.2
* enhancements * enhancements
* Allows you set mailer content type (by @glennr) * Allows you set mailer content type (by @glennr)
@ -653,7 +653,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* Uses the same content type as request on http authenticatable 401 responses * Uses the same content type as request on http authenticatable 401 responses
== 1.0.1 ### 1.0.1
* enhancements * enhancements
* HttpAuthenticatable is not added by default automatically. * HttpAuthenticatable is not added by default automatically.
@ -662,7 +662,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* Fixed encryptors autoload * Fixed encryptors autoload
== 1.0.0 ### 1.0.0
* deprecation * deprecation
* :old_password in update_with_password is deprecated, use :current_password instead * :old_password in update_with_password is deprecated, use :current_password instead
@ -673,7 +673,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Allow scoped_views to be customized per controller/mailer class * Allow scoped_views to be customized per controller/mailer class
* Allow authenticatable to used in change_table statements * Allow authenticatable to used in change_table statements
== 0.9.2 ### 0.9.2
* bug fix * bug fix
* Ensure inactive user cannot sign in * Ensure inactive user cannot sign in
@ -683,13 +683,13 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Added gemspec to repo * Added gemspec to repo
* Added token authenticatable (by @grimen) * Added token authenticatable (by @grimen)
== 0.9.1 ### 0.9.1
* bug fix * bug fix
* Allow bigger salt size (by @jgeiger) * Allow bigger salt size (by @jgeiger)
* Fix relative url root * Fix relative url root
== 0.9.0 ### 0.9.0
* deprecation * deprecation
* devise :all is deprecated * devise :all is deprecated
@ -706,7 +706,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Accept path prefix not starting with slash * Accept path prefix not starting with slash
* url helpers should rely on find_scope! * url helpers should rely on find_scope!
== 0.8.2 ### 0.8.2
* enhancements * enhancements
* Allow Devise.mailer_sender to be a proc (by @grimen) * Allow Devise.mailer_sender to be a proc (by @grimen)
@ -714,7 +714,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* Fix bug with passenger, update is required to anyone deploying on passenger (by @dvdpalm) * Fix bug with passenger, update is required to anyone deploying on passenger (by @dvdpalm)
== 0.8.1 ### 0.8.1
* enhancements * enhancements
* Move salt to encryptors * Move salt to encryptors
@ -724,7 +724,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* Bcrypt generator was not being loaded neither setting the proper salt * Bcrypt generator was not being loaded neither setting the proper salt
== 0.8.0 ### 0.8.0
* enhancements * enhancements
* Warden 0.8.0 compatibility * Warden 0.8.0 compatibility
@ -738,19 +738,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* deprecation * deprecation
* Removed DeviseMailer.sender * Removed DeviseMailer.sender
== 0.7.5 ### 0.7.5
* enhancements * enhancements
* Set a default value for mailer to avoid find_template issues * Set a default value for mailer to avoid find_template issues
* Add models configuration to MongoMapper::EmbeddedDocument as well * Add models configuration to MongoMapper::EmbeddedDocument as well
== 0.7.4 ### 0.7.4
* enhancements * enhancements
* Extract Activatable from Confirmable * Extract Activatable from Confirmable
* Decouple Serializers from Devise modules * Decouple Serializers from Devise modules
== 0.7.3 ### 0.7.3
* bug fix * bug fix
* Give scope to the proper model validation * Give scope to the proper model validation
@ -760,7 +760,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Added update_with_password for authenticatable * Added update_with_password for authenticatable
* Allow render_with_scope to accept :controller option * Allow render_with_scope to accept :controller option
== 0.7.2 ### 0.7.2
* deprecation * deprecation
* Renamed reset_confirmation! to resend_confirmation! * Renamed reset_confirmation! to resend_confirmation!
@ -770,12 +770,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Fixed render_with_scope to work with all controllers * Fixed render_with_scope to work with all controllers
* Allow sign in with two different users in Devise::TestHelpers * Allow sign in with two different users in Devise::TestHelpers
== 0.7.1 ### 0.7.1
* enhancements * enhancements
* Small enhancements for other plugins compatibility (by @grimen) * Small enhancements for other plugins compatibility (by @grimen)
== 0.7.0 ### 0.7.0
* deprecations * deprecations
* :authenticatable is not included by default anymore * :authenticatable is not included by default anymore
@ -784,25 +784,25 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Improve loading process * Improve loading process
* Extract SessionSerializer from Authenticatable * Extract SessionSerializer from Authenticatable
== 0.6.3 ### 0.6.3
* bug fix * bug fix
* Added trackable to migrations * Added trackable to migrations
* Allow inflections to work * Allow inflections to work
== 0.6.2 ### 0.6.2
* enhancements * enhancements
* More DataMapper compatibility * More DataMapper compatibility
* Devise::Trackable - track sign in count, timestamps and ips * Devise::Trackable - track sign in count, timestamps and ips
== 0.6.1 ### 0.6.1
* enhancements * enhancements
* Devise::Timeoutable - timeout sessions without activity * Devise::Timeoutable - timeout sessions without activity
* DataMapper now accepts conditions * DataMapper now accepts conditions
== 0.6.0 ### 0.6.0
* deprecations * deprecations
* :authenticatable is still included by default, but yields a deprecation warning * :authenticatable is still included by default, but yields a deprecation warning
@ -813,19 +813,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Allow a strategy to be placed after authenticatable * Allow a strategy to be placed after authenticatable
* Do not rely attribute? methods, since they are not added on Datamapper * Do not rely attribute? methods, since they are not added on Datamapper
== 0.5.6 ### 0.5.6
* enhancements * enhancements
* Do not send nil to build (DataMapper compatibility) * Do not send nil to build (DataMapper compatibility)
* Allow to have scoped views * Allow to have scoped views
== 0.5.5 ### 0.5.5
* enhancements * enhancements
* Allow overwriting find for authentication method * Allow overwriting find for authentication method
* Remove Ruby 1.8.7 dependency * Remove Ruby 1.8.7 dependency
== 0.5.4 ### 0.5.4
* deprecations * deprecations
* Deprecate :singular in devise_for and use :scope instead * Deprecate :singular in devise_for and use :scope instead
@ -836,7 +836,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Create sign_in_and_redirect and sign_out_and_redirect helpers * Create sign_in_and_redirect and sign_out_and_redirect helpers
* Warden::Manager.default_scope is automatically configured to the first given scope * Warden::Manager.default_scope is automatically configured to the first given scope
== 0.5.3 ### 0.5.3
* bug fix * bug fix
* MongoMapper now converts DateTime to Time * MongoMapper now converts DateTime to Time
@ -848,20 +848,20 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Added Devise.apply_schema, so you can turn it to false in Datamapper or MongoMapper * Added Devise.apply_schema, so you can turn it to false in Datamapper or MongoMapper
in cases you don't want it be handlded automatically in cases you don't want it be handlded automatically
== 0.5.2 ### 0.5.2
* enhancements * enhancements
* Improved sign_in and sign_out helpers to accepts resources * Improved sign_in and sign_out helpers to accepts resources
* Added stored_location_for as a helper * Added stored_location_for as a helper
* Added test helpers * Added test helpers
== 0.5.1 ### 0.5.1
* enhancements * enhancements
* Added serializers based on Warden ones * Added serializers based on Warden ones
* Allow authentication keys to be set * Allow authentication keys to be set
== 0.5.0 ### 0.5.0
* bug fix * bug fix
* Fixed a bug where remember me module was not working properly * Fixed a bug where remember me module was not working properly
@ -871,13 +871,13 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Implemented encryptors for Clearance, Authlogic and Restful-Authentication (by @mhfs) * Implemented encryptors for Clearance, Authlogic and Restful-Authentication (by @mhfs)
* Added support for MongoMapper (by @shingara) * Added support for MongoMapper (by @shingara)
== 0.4.3 ### 0.4.3
* bug fix * bug fix
* Authentication just fails if user cannot be serialized from session, without raising errors; * Authentication just fails if user cannot be serialized from session, without raising errors;
* Default configuration values should not overwrite user values; * Default configuration values should not overwrite user values;
== 0.4.2 ### 0.4.2
* deprecations * deprecations
* Renamed mail_sender to mailer_sender * Renamed mail_sender to mailer_sender
@ -889,12 +889,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Allow :path_prefix to be given to devise_for * Allow :path_prefix to be given to devise_for
* Allow default_url_options to be configured through devise (:path_prefix => "/:locale" is now supported) * Allow default_url_options to be configured through devise (:path_prefix => "/:locale" is now supported)
== 0.4.1 ### 0.4.1
* bug fix * bug fix
* Ensure options can be set even if models were not loaded * Ensure options can be set even if models were not loaded
== 0.4.0 ### 0.4.0
* deprecations * deprecations
* Notifier is deprecated, use DeviseMailer instead. Remember to rename * Notifier is deprecated, use DeviseMailer instead. Remember to rename
@ -907,7 +907,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Allow Warden::Manager to be configured through Devise * Allow Warden::Manager to be configured through Devise
* Created a generator which creates an initializer * Created a generator which creates an initializer
== 0.3.0 ### 0.3.0
* bug fix * bug fix
* Allow yml messages to be configured by not using engine locales * Allow yml messages to be configured by not using engine locales
@ -917,7 +917,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Do not send confirmation messages when user changes his e-mail * Do not send confirmation messages when user changes his e-mail
* Renamed authenticable to authenticatable and added deprecation warnings * Renamed authenticable to authenticatable and added deprecation warnings
== 0.2.3 ### 0.2.3
* enhancements * enhancements
* Ensure fail! works inside strategies * Ensure fail! works inside strategies
@ -927,12 +927,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* Do not redirect on invalid authenticate * Do not redirect on invalid authenticate
* Allow model configuration to be set to nil * Allow model configuration to be set to nil
== 0.2.2 ### 0.2.2
* bug fix * bug fix
* Fix a bug when using customized resources * Fix a bug when using customized resources
== 0.2.1 ### 0.2.1
* refactor * refactor
* Clean devise_views generator to use devise existing views * Clean devise_views generator to use devise existing views
@ -944,7 +944,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fix * bug fix
* Fix a bug with Mongrel and Ruby 1.8.6 * Fix a bug with Mongrel and Ruby 1.8.6
== 0.2.0 ### 0.2.0
* enhancements * enhancements
* Allow option :null => true in authenticable migration * Allow option :null => true in authenticable migration
@ -959,12 +959,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
* bug fixes * bug fixes
* Fixed requiring devise strategies * Fixed requiring devise strategies
== 0.1.1 ### 0.1.1
* bug fixes * bug fixes
* Fixed requiring devise mapping * Fixed requiring devise mapping
== 0.1.0 ### 0.1.0
* Devise::Authenticable * Devise::Authenticable
* Devise::Confirmable * Devise::Confirmable