heartcombo--devise/CHANGELOG.rdoc

261 lines
6.8 KiB
Plaintext
Raw Normal View History

* enhancements
* Warden 0.8.0 compatibility
2010-01-07 21:37:47 +00:00
* Add an easy for map.connect "sign_in", :controller => "sessions", :action => "new" to work
* Added :bcrypt encryptor (by github.com/capotej)
2010-01-07 21:50:01 +00:00
* bug fix
* sign_in_count is also increased when user signs in via password change, confirmation, etc..
* More DataMapper compatibility (by github.com/lancecarlson)
* deprecation
* Removed DeviseMailer.sender
2010-01-02 09:12:04 +00:00
== 0.7.5
* enhancements
* Set a default value for mailer to avoid find_template issues
* Add models configuration to MongoMapper::EmbeddedDocument as well
== 0.7.4
* enhancements
* Extract Activatable from Confirmable
* Decouple Serializers from Devise modules
2009-12-16 00:29:19 +00:00
== 0.7.3
2009-12-16 00:28:43 +00:00
* bug fix
* Give scope to the proper model validation
2009-12-15 00:20:59 +00:00
* enhancements
2009-12-15 00:32:40 +00:00
* Mail views are scoped as well
2009-12-15 01:03:56 +00:00
* Added update_with_password for authenticatable
2009-12-15 17:48:51 +00:00
* Allow render_with_scope to accept :controller option
2009-12-15 00:20:59 +00:00
2009-12-15 00:05:46 +00:00
== 0.7.2
* deprecation
* Renamed reset_confirmation! to resend_confirmation!
* Copying locale is part of the installation process
* bug fix
* Fixed render_with_scope to work with all controllers
* Allow sign in with two different users in Devise::TestHelpers
2009-12-08 22:39:38 +00:00
== 0.7.1
* enhancements
* Small enhancements for other plugins compatibility (by github.com/grimen)
== 0.7.0
* deprecations
* :authenticatable is not included by default anymore
* enhancements
* Improve loading process
* Extract SessionSerializer from Authenticatable
== 0.6.3
* bug fix
* Added trackable to migrations
2009-12-02 19:51:34 +00:00
* Allow inflections to work
2009-11-25 01:20:35 +00:00
== 0.6.2
2009-11-24 17:29:46 +00:00
* enhancements
2009-11-25 01:20:35 +00:00
* More DataMapper compatibility
2009-11-24 17:29:46 +00:00
* Devise::Trackable - track sign in count, timestamps and ips
2009-11-24 02:09:34 +00:00
== 0.6.1
2009-11-24 01:56:57 +00:00
* enhancements
* Devise::Timeoutable - timeout sessions without activity
2009-11-24 02:09:34 +00:00
* DataMapper now accepts conditions
2009-11-24 01:56:57 +00:00
== 0.6.0
* deprecations
* :authenticatable is still included by default, but yields a deprecation warning
* enhancements
* Added DataMapper support
* Remove store_location from authenticatable strategy and add it to failure app
* Allow a strategy to be placed after authenticatable
* [#45] Do not rely attribute? methods, since they are not added on Datamapper
2009-11-21 22:08:14 +00:00
== 0.5.6
* enhancements
* [#42] Do not send nil to build (DataMapper compatibility)
* [#44] Allow to have scoped views
== 0.5.5
* enhancements
* Allow overwriting find for authentication method
* [#38] Remove Ruby 1.8.7 dependency
2009-11-19 15:14:02 +00:00
== 0.5.4
2009-11-19 15:09:05 +00:00
* deprecations
* Deprecate :singular in devise_for and use :scope instead
* enhancements
* [#37] Create after_sign_in_path_for and after_sign_out_path_for hooks to be
overwriten in ApplicationController
* Create sign_in_and_redirect and sign_out_and_redirect helpers
2009-11-19 15:09:05 +00:00
* Warden::Manager.default_scope is automatically configured to the first given scope
2009-11-18 13:22:35 +00:00
== 0.5.3
* bug fix
* MongoMapper now converts DateTime to Time
2009-11-18 13:22:35 +00:00
* Ensure all controllers are unloadable
* enhancements
* [#35] Moved friendly_token to Devise
* Added Devise.all, so you can freeze your app strategies
* 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
2009-11-16 17:08:53 +00:00
== 0.5.2
* enhancements
* [#28] Improved sign_in and sign_out helpers to accepts resources
* [#28] Added stored_location_for as a helper
2009-11-16 16:58:14 +00:00
* [#20] Added test helpers
== 0.5.1
2009-11-15 05:31:13 +00:00
* enhancements
2009-11-16 16:58:14 +00:00
* Added serializers based on Warden ones
* Allow authentication keys to be set
2009-11-15 05:31:13 +00:00
== 0.5.0
2009-11-14 00:33:00 +00:00
* bug fix
* Fixed a bug where remember me module was not working properly
* enhancements
2009-11-10 20:55:13 +00:00
* Moved encryption strategy into the Encryptors module to allow several algorithms (by github.com/mhfs)
* Implemented encryptors for Clearance, Authlogic and Restful-Authentication (by github.com/mhfs)
* Added support for MongoMapper (by github.com/shingara)
== 0.4.3
* bug fix
* [#29] Authentication just fails if user cannot be serialized from session, without raising errors;
* Default configuration values should not overwrite user values;
== 0.4.2
2009-11-06 11:40:38 +00:00
* deprecations
* Renamed mail_sender to mailer_sender
* enhancements
* skip_before_filter added in Devise controllers
* Use home_or_root_path on require_no_authentication as well
* Added devise_controller?, useful to select or reject filters in ApplicationController
* Allow :path_prefix to be given to devise_for
* Allow default_url_options to be configured through devise (:path_prefix => "/:locale" is now supported)
== 0.4.1
* bug fix
* [#21] Ensure options can be set even if models were not loaded
== 0.4.0
* deprecations
* Notifier is deprecated, use DeviseMailer instead. Remember to rename
app/views/notifier to app/views/devise_mailer and I18n key from
devise.notifier to devise.mailer
* :authenticable calls are deprecated, use :authenticatable instead
* enhancements
* [#16] Allow devise to be more agnostic and do not require ActiveRecord to be loaded
* Allow Warden::Manager to be configured through Devise
* Created a generator which creates an initializer
== 0.3.0
* bug fix
* [#15] Allow yml messages to be configured by not using engine locales
2009-10-30 09:23:47 +00:00
* deprecations
* Renamed confirm_in to confirm_within
* [#14] Do not send confirmation messages when user changes his e-mail
* [#13] Renamed authenticable to authenticatable and added deprecation warnings
2009-10-30 09:23:47 +00:00
2009-10-29 15:10:13 +00:00
== 0.2.3
* enhancements
* Ensure fail! works inside strategies
2009-10-29 15:10:13 +00:00
* [#12] Make unauthenticated message (when you haven't signed in) different from invalid message
* bug fix
* Do not redirect on invalid authenticate
* Allow model configuration to be set to nil
2009-10-28 10:33:20 +00:00
== 0.2.2
* bug fix
* [#9] Fix a bug when using customized resources
== 0.2.1
* refactor
* Clean devise_views generator to use devise existing views
* enhancements
* [#7] Create instance variables (like @user) for each devise controller
* Use Devise::Controller::Helpers only internally
* bug fix
* [#6] Fix a bug with Mongrel and Ruby 1.8.6
== 0.2.0
* enhancements
* [#4] Allow option :null => true in authenticable migration
* [#3] Remove attr_accessible calls from devise modules
* Customizable time frame for rememberable with :remember_for config
* Customizable time frame for confirmable with :confirm_in config
* Generators for creating a resource and copy views
2009-10-22 19:30:00 +00:00
* optimize
* Do not load hooks or strategies if they are not used
* bug fixes
* [#2] Fixed requiring devise strategies
2009-10-22 22:25:29 +00:00
== 0.1.1
* bug fixes
* [#1] Fixed requiring devise mapping
== 0.1.0
2009-10-22 19:30:00 +00:00
* Devise::Authenticable
* Devise::Confirmable
* Devise::Recoverable
* Devise::Validatable
* Devise::Migratable
* Devise::Rememberable
* SessionsController
* PasswordsController
* ConfirmationsController
* Create an example app
* devise :all, :except => :rememberable
* Use sign_in and sign_out in SessionsController
* Mailer subjects namespaced by model
* Allow stretches and pepper per model
* Store session[:return_to] in session
* Sign user in automatically after confirming or changing it's password