diff --git a/CHANGELOG.md b/CHANGELOG.md index 695e56e..5674d9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## [Unreleased] +# [0.11.6] - 2024-11-12 +- Fix secure session using private_id +- Support Rails 8 + # [0.11.5] - 2022-11-27 ### Changed diff --git a/lib/redis-session-store.rb b/lib/redis-session-store.rb index 9e3514a..70c29c0 100644 --- a/lib/redis-session-store.rb +++ b/lib/redis-session-store.rb @@ -3,7 +3,7 @@ # Redis session storage for Rails, and for Rails only. Derived from # the MemCacheStore code, simply dropping in Redis instead. class RedisSessionStore < ActionDispatch::Session::AbstractSecureStore - VERSION = '0.11.5'.freeze + VERSION = '0.11.6'.freeze # Rails 3.1 and beyond defines the constant elsewhere unless defined?(ENV_SESSION_OPTIONS_KEY) ENV_SESSION_OPTIONS_KEY = if Rack.release.split('.').first.to_i > 1