All Versions
19
Latest Version
Avg Release Cycle
59 days
Latest Release
1289 days ago

Changelog History
Page 1

  • v0.10.0 Changes

    October 07, 2020

    โž• Added

    • ๐Ÿ”ง Option to customize mailer inheritance with a new configuration parent_mailer (#82)

    ๐Ÿ›  Fixed

    • Calls strip on passwordless field param
  • v0.9.0 Changes

    December 19, 2019

    โž• Added

    • Customizable redirects (#69)
  • v0.8.2 Changes

    August 30, 2019

    ๐Ÿ›  Fixed

    • โฑ Fixes session availability wrongly determined by timeout not expiry (#61)
  • v0.8.1 Changes

    August 14, 2019

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixes an issue with using a resource class not named User (#58)
  • v0.8.0 Changes

    July 30, 2019

    ๐Ÿ’ฅ Breaking changes

    ๐Ÿšš This version moves from storing the session information in the cookies to the session. โฌ†๏ธ Your users will therefore have to sign in again after upgrading.

    โฌ†๏ธ To provide a smoother experience, you can use the provided session upgrade helper like this:

    def current_user
      @current_user ||=
        authenticate_by_session(User) ||
        upgrade_passwordless_cookie(User)
    end
    

    ๐Ÿ—„ Deprecations

    • Deprecates authenticate_by_cookie, use authenticate_by_session.(#56)

    โž• Added

    • restrict_token_reuse disables session reuse (#51)

    ๐Ÿ”„ Changed

    • Optionally pass request to after_session_save (#49)
    • Sign in via Passwordless::Session instead of authenticatable and store it in session instead of cookies (#56)
    • sign_in helper now expects a Passwordless::Session.
  • v0.7.0 Changes

    March 06, 2019

    โž• Added

    • Option to customize callback (eg. send e-mail, sms, whatever) (#39)

    ๐Ÿ›  Fixed

    • Use timeout_at instead of expires_at when signing in (#43)
  • v0.6.0 Changes

    January 29, 2019

    โž• Added

    • โฑ Option to set custom expiration and timeout durations (#37)
    • ๐Ÿ‘ Allow overriding the lookup method of the user resource (#33)
  • v0.5.4 Changes

    June 22, 2018
    • ๐Ÿ›  Fixed: Support models using Single Table Inheritance (#26)
  • v0.5.3 Changes

    June 06, 2018
    • ๐Ÿ›  Fixed: Missing as: on session association has_many (#23)
  • v0.5.2 Changes

    April 24, 2018
    • โž• Added: Include main app's routes in passwordless views