Update CHANGELOG.

This commit is contained in:
José Valim 2010-09-25 16:10:59 +02:00
parent 09088706bb
commit 6613653df0
2 changed files with 3 additions and 2 deletions

View File

@ -6,9 +6,11 @@
* Added OAuth 2 support
* sign_out_via is available in the router to configure the method used for sign out (by github.com/martinrehfeld)
* Improved Ajax requests handling in failure app (by github.com/spastorino)
* Add request_keys to easily use request specific values (like subdomain) in authentication
* Added request_keys to easily use request specific values (like subdomain) in authentication
* Increased the size of friendly_token to 60 characters (reduces the chances of a successful brute attack)
* Ensure the friendly token does not include "_" or "-" since some e-mails may not autolink it properly (by github.com/rymai)
* Extracted encryptors into :encryptable for better bcrypt support
* :rememberable is now able to use salt as token if no remember_token is provided
* bugfix
* after_sign_in_path_for always receives a resource

1
TODO
View File

@ -1,5 +1,4 @@
* Move integration tests to Capybara
* Better ORM integration
* Extract activatable models tests from confirmable
* Add support to automatically refresh the access token for OAuth
* Add test to generators using the new Rails::Generators::TestCase