From 1da2cf4709cb60e7223b1bcb20cfdcaa4a0def23 Mon Sep 17 00:00:00 2001 From: Greg Annandale Date: Wed, 17 Jan 2024 15:22:17 +0000 Subject: [PATCH] Release 3.5.0 --- CHANGELOG.md | 2 ++ lib/rpi_auth/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16ff96a..a214a09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v3.5.0] + - Adds `session_keys_to_persist` config option to allow for specific session keys to be persisted across logins (since logging in will reset the session: https://guides.rubyonrails.org/security.html#session-fixation-countermeasures) ## [v3.4.0] diff --git a/lib/rpi_auth/version.rb b/lib/rpi_auth/version.rb index 69de445..f990906 100644 --- a/lib/rpi_auth/version.rb +++ b/lib/rpi_auth/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RpiAuth - VERSION = '3.4.0' + VERSION = '3.5.0' end