From 33fec8292d805d00d0f50cd1b8731fd03034ad91 Mon Sep 17 00:00:00 2001 From: Patrick Cherry Date: Mon, 5 Jun 2023 10:39:02 +0100 Subject: [PATCH] Release v3.2.0 (#58) ### Added - Allow for customisation of returnTo param on log out (#56) - Allow `success_redirect` to be configured as a block that is executed in the context of the AuthController (#57) --- CHANGELOG.md | 7 +++++-- Gemfile.lock | 4 ++-- gemfiles/rails_6.1.gemfile.lock | 4 ++-- lib/rpi_auth/version.rb | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1967837..cc81664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v3.2.0] + ### Added - Allow for customisation of returnTo param on log out (#56) -- Allow `success_redirect` to be configured as a block that is executed in the context of the AuthController. +- Allow `success_redirect` to be configured as a block that is executed in the context of the AuthController (#57) ## [v3.1.0] @@ -89,7 +91,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - rails model concern to allow host app to add auth behaviour to a model - callback, logout and failure routes to handle auth -[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.1.0...HEAD +[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.2.0...HEAD +[v3.2.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.2.0 [v3.1.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.1.0 [v3.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.0.0 [v2.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v2.0.0 diff --git a/Gemfile.lock b/Gemfile.lock index b00379d..ca4f70e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rpi_auth (3.1.0) + rpi_auth (3.2.0) omniauth-rails_csrf_protection (~> 1.0.0) omniauth_openid_connect (~> 0.7.1) rails (>= 6.1.4) @@ -86,7 +86,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) erubi (1.11.0) - faraday (2.7.4) + faraday (2.7.5) faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-follow_redirects (0.3.0) diff --git a/gemfiles/rails_6.1.gemfile.lock b/gemfiles/rails_6.1.gemfile.lock index 6866e42..77b9110 100644 --- a/gemfiles/rails_6.1.gemfile.lock +++ b/gemfiles/rails_6.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - rpi_auth (3.1.0) + rpi_auth (3.2.0) omniauth-rails_csrf_protection (~> 1.0.0) omniauth_openid_connect (~> 0.7.1) rails (>= 6.1.4) @@ -80,7 +80,7 @@ GEM diff-lcs (1.5.0) docile (1.4.0) erubi (1.11.0) - faraday (2.7.4) + faraday (2.7.5) faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-follow_redirects (0.3.0) diff --git a/lib/rpi_auth/version.rb b/lib/rpi_auth/version.rb index 3e2430b..c3c45c6 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.1.0' + VERSION = '3.2.0' end