From 98bb8f6b825c2e187f92944482ccb9a4ee582a8a Mon Sep 17 00:00:00 2001 From: Oleksii Dashkevych Date: Sat, 29 Jan 2022 14:28:12 +0200 Subject: [PATCH] Release v0.11.4 --- CHANGELOG.md | 9 +++++++++ lib/redis-session-store.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1412dfc..17aba94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ ## [Unreleased] +## [0.11.4] - 2022-01-29 +### Fixed +- Use AbstractSecureStore for security fix + +### Changed +- Support actionpack 7.x +- Move from TravisCI to Github Actions +- Drop support for ruby 2.3, 2.4 + ## [0.11.3] - 2020-07-23 ### Fixed - https://github.com/roidrage/redis-session-store/issues/121 diff --git a/lib/redis-session-store.rb b/lib/redis-session-store.rb index d0200b9..e000e4c 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.3'.freeze + VERSION = '0.11.4'.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