From 68e47412eeb3fe1f5d4145dfe6077bf8ac5d2f8f Mon Sep 17 00:00:00 2001 From: Kevin McPhillips Date: Tue, 12 Nov 2024 09:07:01 -0500 Subject: [PATCH] Version 0.11.6 --- CHANGELOG.md | 4 ++++ lib/redis-session-store.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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