CHANGELOG.rdoc in devise-1.1.rc2 vs CHANGELOG.rdoc in devise-1.1.0

- old
+ new

@@ -1,5 +1,25 @@ +== 1.1.0 + +* enhancements + * Rememberable module allows user to be remembered across browsers and is enabled by default (by github.com/trevorturk) + * Rememberable module allows you to activate the period the remember me token is extended (by github.com/trevorturk) + * devise_for can now be used together with scope method in routes but with a few limitations (check the documentation) + * Support `as` or `devise_scope` in the router to specify controller access scope + * HTTP Basic Auth can now be disabled/enabled for xhr(ajax) requests using http_authenticatable_on_xhr option (by github.com/pellja) + +* bug fix + * Fix a bug in Devise::TestHelpers where current_user was returning a Response object for non active accounts + * Devise should respect script_name and path_info contracts + * Fix a bug when accessing a path with (.:format) (by github.com/klacointe) + * Do not add unlock routes unless unlock strategy is email or both + * Email should be case insensitive + * Store classes as string in session, to avoid serialization and stale data issues + +* deprecations + * use_default_scope is deprecated and has no effect. Use :as or :devise_scope in the router instead + == 1.1.rc2 * enhancements * Allow to set cookie domain for the remember token. (by github.com/mantas) * Added navigational formats to specify when it should return a 302 and when a 401. @@ -14,11 +34,11 @@ * bcrypt is now the default encryptor * devise.mailer.confirmations_instructions now should be devise.mailer.confirmations_instructions.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 -== 1.1.rc +== 1.1.rc1 * enhancements * Rails 3 compatibility * All controllers and views are namespaced, for example: Devise::SessionsController and "devise/sessions" * Devise.orm is deprecated. This reduces the required API to hook your ORM with devise @@ -27,10 +47,10 @@ * Allow to give :skip and :controllers in routes * Move trackable logic to the model * E-mails now use any template available in the filesystem. Easy to create multipart e-mails * E-mails asks headers_for in the model to set the proper headers * Allow to specify haml in devise_views - * Compatibility with Datamapper and Mongoid + * Compatibility with Mongoid * Make config.devise available on config/application.rb * TokenAuthenticatable now works with HTTP Basic Auth * Allow :unlock_strategy to be :none and add :lock_strategy which can be :failed_attempts or none. Setting those values to :none means that you want to handle lock and unlocking by yourself * No need to append ?unauthenticated=true in URLs anymore since Flash was moved to a middleware in Rails 3 * :activatable is included by default in your models