All Versions
95
Latest Version
Avg Release Cycle
114 days
Latest Release
656 days ago

Changelog History
Page 8

  • v0.8.0 Changes

    August 31, 2009

    โž• Added

    • Documented Clearance::Authentication with YARD.
    • Documented Clearance::User with YARD.

    ๐Ÿ”„ Changed

    • Always remember me. Replaced session-and-remember-me authentication with always using a cookie with a long timeout.
  • v0.7.0 Changes

    August 04, 2009

    โž• Added

    • โž• Added signed_out? convenience method for controllers, helpers, views.
    • โž• Added clearance_views generator. By default, creates formtastic views which pass all tests and features.

    ๐Ÿ›  Fixed

    • Redirect signed in user who clicks confirmation link again.
    • Redirect signed out user who clicks confirmation link again.
  • v0.6.9 Changes

    July 04, 2009

    โž• Added

    • โž• Added timestamps to create users migration.
    • ๐Ÿ’Ž Ready for Ruby 1.9.
  • v0.6.8 Changes

    June 24, 2009

    ๐Ÿ›  Fixed

    • โž• Added defined? checks for various Rails constants such as ActionController for easier unit testing of Clearance extensions... particularly ActiveRecord extensions... particularly strong_password.
  • v0.6.7 Changes

    June 13, 2009

    โž• Added

    • Added sign_up, sign_in, sign_out named routes.
    • flash_success_after_create, flash_notice_after_create, flash_failure_after_create, flash_sucess_after_update, flash_success_after_destroy, etc.
    • โž• Added #create to forbidden before_filters on confirmations controller.

    ๐Ÿ›  Fixed

    • should_be_signed_in_as shouldn't look in the session.

    ๐Ÿ—„ Deprecated

    • ๐Ÿ‘‰ Deprecated sign_user_in. Told developers to use sign_in instead.
  • v0.6.6 Changes

    May 18, 2009

    ๐Ÿ›  Fixed

    • replaced class_eval in Clearance::User with modules. This was needed so we could write our own validations.
  • v0.6.5 Changes

    May 17, 2009

    โž• Added

    • ๐Ÿ‘‰ Make Clearance i18n aware.
  • v0.6.4 Changes

    May 12, 2009

    ๐Ÿ”„ Changed

    • Replacing sign_in_as & sign_out shoulda macros with a stubbing (requires no dependency) approach. This will avoid dealing with the internals of current_user, such as session & cookies. Added sign_in macro which signs in an email confirmed user from clearance's factories.
    • ๐Ÿšš Move private methods on sessions controller into Clearance::Authentication module.
    • Audited flash keys.
  • v0.6.3 Changes

    April 23, 2009

    ๐Ÿ›  Fixed

    • Scoping ClearanceMailer properly within controllers so it works in production environments.
  • v0.6.2 Changes

    April 22, 2009

    โž• Added

    • Insert Clearance::User into User model if it exists.