You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
screenshot_sign_in lambda now receives a helper object instead of the raw controller. In Rails 8.1, cookies is private on ActionController::Base, so the previous controller.cookies.signed.permanent[...] = ... pattern raised NoMethodError and /native/screenshots/session returned 500. The lambda is now yielded a small helper exposing public cookies, request, and session accessors. Breaking-but-allowed: update your initializer's lambda parameter to a name like helper and call helper.cookies / helper.request / helper.session instead of controller.cookies etc. The 0.9.0 API had no production users to migrate.