activerecord-session_store
activerecord-session_store copied to clipboard
Active Record's Session Store extracted from Rails
Hi, may someone kindly explain what exactly this library does? What is the advantage of using this? TIA
[reading README](https://github.com/rails/activerecord-session_store#cve-2019-25025-mitigation) seems that version 0.1.2 is not affected by the bug: _Sessions that were created by Active Record Session Store **version 1.x** are affected by [CVE-2019-25025](https://github.com/advisories/GHSA-cvw2-xj8r-mjf7)_ but [reading comment...
I'm upgrading an old Rails 5.2.5 app to 6.0.0 and I'm getting the following error; ``` 10:58:12 rails.1 | started with pid 27598 10:58:12 worker.1 | started with pid 27599...
I have a use case which requires a custom ActiveRecord session class implementation, and I provide that configuration as specified [here](https://github.com/rails/activerecord-session_store/#configuration): ```Ruby ActionDispatch::Session::ActiveRecordStore.session_class = MySessionClass ``` I think an ideal...
upgrading [activerecord-session_store](https://github.com/rails/activerecord-session_store) from 1.1 to 2.0.0 and replacing `Logging::Logger.include ActiveRecord::SessionStore::Extension::LoggerSilencer `with `Logging::Logger.include ::LoggerSilence ` rails version 5.2.7 I got error ``` undefined local variable or method `local_level' for # Did...
Since Rails 6 we have been trying to work out what was creating errors such as Write query attempted while in readonly mode: INSERT INTO "sessions" ("session_id", "data", "created_at", "updated_at")...
While migrating from unicorn to puma, I am seeing some race conditions under heavy load. Is this gem thread safe to run under Puma?
I've been working on upgrading the platform at my company from Rails 4.2 to Rails 5.x over the past couple months and ran into a rather interesting issue that I've...
I have been using Devise with the default cookie session store but want to mitigate cookie replay attacks and thus installed this gem. However, I am now not able to...