Skip to content

Releases: kobaltz/action_auth

v0.3.0

22 Feb 04:35
Compare
Choose a tag to compare

Updated the redirect paths so they go back to the sign in page.

v0.2.15

01 Feb 02:23
Compare
Choose a tag to compare

WebAuthn Fixes - When overriding the default layout and using your own javascript files, there could be a situation when Turbo interfered with adding passkeys.

v0.2.12

28 Jan 19:40
Compare
Choose a tag to compare

Fixed view CSS for mobile devices (no more horizontal scroll)

v0.2.10

18 Jan 04:05
Compare
Choose a tag to compare
  • Responsive viewport by default
  • Removed full-width layout
  • Set @action_auth_wide if you want to use the full-width layout
  • Only show "Verify Email" if the feature is enabled

v0.2.9

14 Jan 05:54
Compare
Choose a tag to compare

Fixed several issues around WebAuthn and situations where the webauthn gem is not added into the application. This release also includes updated documentation on how to consume this within your application in an unobtrusive way.

v0.2.5

13 Jan 14:31
Compare
Choose a tag to compare

Fixed and issue where email verification was not occurring. Added config option where this can be enabled or disabled.

ActionAuth.configure do |config|
  config.webauthn_enabled = true
  config.webauthn_origin = "http://localhost:3000" # or "https://example.com"
  config.webauthn_rp_name = Rails.application.class.to_s.deconstantize
  config.verify_email_on_sign_in = true
end

v0.2.3

13 Jan 05:57
Compare
Choose a tag to compare

Updated the user experience when authenticating with passkeys

v0.2.2 - WebAuthn Added

13 Jan 05:20
Compare
Choose a tag to compare

With the basic implementation working, I decided to proceed and add WebAuthn to the project. This is the passkeys feature that will allow you to use iCloud Security Keychain, hardware keys like Yubico, or password manager's passkeys. This is acting as a second factor authentication, so a user's email and password will still be required.