mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Release RC2 (for Rails 3.0.0.beta4)
This commit is contained in:
parent
a39312e26b
commit
748eced9e8
3 changed files with 38 additions and 31 deletions
|
@ -1,15 +1,13 @@
|
||||||
== 1.1.0 (to be released)
|
== 1.1.rc2
|
||||||
|
|
||||||
* enhancements
|
* enhancements
|
||||||
* Allow to set cookie domain for the remember token. (by github.com/mantas)
|
* 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.
|
* Added navigational formats to specify when it should return a 302 and when a 401.
|
||||||
* Added authenticate(scope) support in routes (by github.com/wildchild)
|
* Added authenticate(scope) support in routes (by github.com/wildchild)
|
||||||
* Added after_update_path_for to registrations controller (by github.com/thedelchop)
|
* Added after_update_path_for to registrations controller (by github.com/thedelchop)
|
||||||
* Added anybody_signed_in? helper (by github.com/SSDany)
|
|
||||||
* Allow the mailer object to be replaced through config.mailer = "MyOwnMailer"
|
* Allow the mailer object to be replaced through config.mailer = "MyOwnMailer"
|
||||||
|
|
||||||
* bug fix
|
* bug fix
|
||||||
* confirmation_required? is properly honored on active? calls. (by github.com/paulrosania)
|
|
||||||
* Fix a bug where session was timing out on sign out
|
* Fix a bug where session was timing out on sign out
|
||||||
|
|
||||||
* deprecations
|
* deprecations
|
||||||
|
@ -21,35 +19,43 @@
|
||||||
== 1.1.rc
|
== 1.1.rc
|
||||||
|
|
||||||
* enhancements
|
* enhancements
|
||||||
* Rails 3 compatibility.
|
* Rails 3 compatibility
|
||||||
* All controllers and views are namespaced, for example: Devise::SessionsController and "devise/sessions".
|
* 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.
|
* Devise.orm is deprecated. This reduces the required API to hook your ORM with devise
|
||||||
* Use metal for failure app.
|
* Use metal for failure app
|
||||||
* HTML e-mails now have proper formatting.
|
* HTML e-mails now have proper formatting
|
||||||
* Allow to give :skip and :controllers in routes.
|
* Allow to give :skip and :controllers in routes
|
||||||
* Move trackable logic to the model.
|
* Move trackable logic to the model
|
||||||
* E-mails now use any template available in the filesystem. Easy to create multipart e-mails.
|
* 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.
|
* E-mails asks headers_for in the model to set the proper headers
|
||||||
* Allow to specify haml in devise_views.
|
* Allow to specify haml in devise_views
|
||||||
* Compatibility with Datamapper and Mongoid.
|
* Compatibility with Datamapper and Mongoid
|
||||||
* Make config.devise available on config/application.rb.
|
* Make config.devise available on config/application.rb
|
||||||
* TokenAuthenticatable now works with HTTP Basic Auth.
|
* 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.
|
* 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.
|
* 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.
|
* :activatable is included by default in your models
|
||||||
|
|
||||||
* bug fix
|
* bug fix
|
||||||
* Fix a bug with STI.
|
* Fix a bug with STI
|
||||||
* Do not remove options from Datamapper and MongoMapper in find.
|
|
||||||
* confirmation_required? is properly honored on active? calls. (by github.com/paulrosania)
|
|
||||||
|
|
||||||
* deprecations
|
* deprecations
|
||||||
* Rails 3 compatible only.
|
* Rails 3 compatible only
|
||||||
* Scoped views are no longer "sessions/users/new". Now use "users/sessions/new".
|
* Removed support for MongoMapper
|
||||||
* Devise.orm is deprecated, just require "devise/orm/YOUR_ORM" instead.
|
* Scoped views are no longer "sessions/users/new". Now use "users/sessions/new"
|
||||||
* Devise.default_url_options is deprecated, just modify ApplicationController.default_url_options.
|
* Devise.orm is deprecated, just require "devise/orm/YOUR_ORM" instead
|
||||||
* All messages under devise.sessions, except :signed_in and :signed_out, should be moved to devise.failure.
|
* Devise.default_url_options is deprecated, just modify ApplicationController.default_url_options
|
||||||
* :as and :scope in routes is deprecated. Use :path and :singular instead.
|
* 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
|
||||||
|
|
||||||
|
== 1.0.8
|
||||||
|
|
||||||
|
* enhancements
|
||||||
|
* Support for latest MongoMapper
|
||||||
|
* Added anybody_signed_in? helper (by github.com/SSDany)
|
||||||
|
|
||||||
|
* bug fix
|
||||||
|
* confirmation_required? is properly honored on active? calls. (by github.com/paulrosania)
|
||||||
|
|
||||||
== 1.0.7
|
== 1.0.7
|
||||||
|
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{devise}
|
s.name = %q{devise}
|
||||||
s.version = "1.1.rc1"
|
s.version = "1.1.rc2"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Jos\303\251 Valim", "Carlos Ant\303\264nio"]
|
s.authors = ["Jos\303\251 Valim", "Carlos Ant\303\264nio"]
|
||||||
s.date = %q{2010-06-13}
|
s.date = %q{2010-06-23}
|
||||||
s.description = %q{Flexible authentication solution for Rails with Warden}
|
s.description = %q{Flexible authentication solution for Rails with Warden}
|
||||||
s.email = %q{contact@plataformatec.com.br}
|
s.email = %q{contact@plataformatec.com.br}
|
||||||
s.extra_rdoc_files = [
|
s.extra_rdoc_files = [
|
||||||
|
@ -150,6 +150,7 @@ Gem::Specification.new do |s|
|
||||||
"test/rails_app/app/controllers/sessions_controller.rb",
|
"test/rails_app/app/controllers/sessions_controller.rb",
|
||||||
"test/rails_app/app/controllers/users_controller.rb",
|
"test/rails_app/app/controllers/users_controller.rb",
|
||||||
"test/rails_app/app/data_mapper/admin.rb",
|
"test/rails_app/app/data_mapper/admin.rb",
|
||||||
|
"test/rails_app/app/data_mapper/shim.rb",
|
||||||
"test/rails_app/app/data_mapper/user.rb",
|
"test/rails_app/app/data_mapper/user.rb",
|
||||||
"test/rails_app/app/helpers/application_helper.rb",
|
"test/rails_app/app/helpers/application_helper.rb",
|
||||||
"test/rails_app/app/mongoid/admin.rb",
|
"test/rails_app/app/mongoid/admin.rb",
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Devise
|
module Devise
|
||||||
VERSION = "1.1.rc1".freeze
|
VERSION = "1.1.rc2".freeze
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue