devise
devise copied to clipboard
Flexible authentication solution for Rails with Warden.
This PR is for issue #4921 @tegon
## Environment - Ruby 3.3.5 - Rails 8.0.0.beta1 - Devise 4.9.4 ## Current behavior In rails 8.0, when ENV['CI'] is true, Rails does `config.eager_load = true`. This triggers this code...
## Environment - Ruby **3.3.5** - Rails **Rails 8.0.0.beta1** - Devise **4.9.4** ## Current behavior A bit of story/context to help with discoverability of this issue if anyone is googling...
## Environment - Ruby **3.3.3** - Rails **7.1.4** - Devise **4.9.4** ## Current behaviour Using the devise gem to make email only sign up according to instructions given only works...
Fixed a typo in the README where an extra closing parenthesis was present in the example command for generating Devise controllers using the -c flag.
Problem: You can register an invalid email: john.doe@gmail Fix: Regular expresion # devise.rb @@email_regexp = /\A[^@\s]+@[^@\s]+\.[^@\s]+\z/
## Issue description Currently the session cookie created by devise seems to be re-usable indefinitely. It looks like a security issue, as if for any reason a user has his...
## Pre-check - Do not use the issues tracker for help or support, try Stack Overflow. - For bugs, do a quick search and make sure the bug has not...
close #5351, close #5418, close #5701 This pull request contains the same changes as https://github.com/heartcombo/devise/pull/5418. However, since PR #5418 was created three years ago, it needed conflict resolution. While I...
I upgraded from Rails 8.0.1 to 8.0.2. Noticed the following: 1. If the user was already logged out when going to the app and tried to login, they are immediately...