From e7ca0bfa8a91317b40d34deae392e69beb3ec036 Mon Sep 17 00:00:00 2001 From: Chris Elsworth Date: Wed, 29 Nov 2023 10:45:29 +0000 Subject: [PATCH] Release v3.3.0 --- CHANGELOG.md | 5 ++++- Gemfile.lock | 12 +++++++----- gemfiles/rails_6.1.gemfile.lock | 6 +++--- lib/rpi_auth/version.rb | 2 +- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 036393b..59aad1f 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.3.0] + ### Added - Add country attribute to `Authenticable` (#60) @@ -95,7 +97,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.2.0...HEAD +[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.3.0...HEAD +[v3.3.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.3.0 [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 diff --git a/Gemfile.lock b/Gemfile.lock index ca4f70e..f814c98 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rpi_auth (3.2.0) + rpi_auth (3.3.0) omniauth-rails_csrf_protection (~> 1.0.0) omniauth_openid_connect (~> 0.7.1) rails (>= 6.1.4) @@ -77,6 +77,7 @@ GEM aes_key_wrap (1.1.0) ast (2.4.2) attr_required (1.0.1) + base64 (0.2.0) bindata (2.4.15) builder (3.2.4) byebug (11.1.3) @@ -86,7 +87,8 @@ GEM diff-lcs (1.5.0) docile (1.4.0) erubi (1.11.0) - faraday (2.7.5) + faraday (2.7.12) + base64 faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) faraday-follow_redirects (0.3.0) @@ -162,7 +164,7 @@ GEM pry-byebug (3.10.1) byebug (~> 11.0) pry (>= 0.13, < 0.15) - public_suffix (5.0.1) + public_suffix (5.0.4) puma (6.2.2) nio4r (~> 2.0) racc (1.6.2) @@ -174,8 +176,8 @@ GEM faraday-follow_redirects json-jwt (>= 1.11.0) rack (>= 2.1.0) - rack-protection (3.0.6) - rack + rack-protection (3.1.0) + rack (~> 2.2, >= 2.2.4) rack-test (2.0.2) rack (>= 1.3) rails (7.0.4) diff --git a/gemfiles/rails_6.1.gemfile.lock b/gemfiles/rails_6.1.gemfile.lock index 77b9110..a5358ac 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.2.0) + rpi_auth (3.3.0) omniauth-rails_csrf_protection (~> 1.0.0) omniauth_openid_connect (~> 0.7.1) rails (>= 6.1.4) @@ -116,9 +116,9 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.8) - nokogiri (1.13.9-arm64-darwin) + nokogiri (1.15.5-arm64-darwin) racc (~> 1.4) - nokogiri (1.13.9-x86_64-linux) + nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) omniauth (2.1.1) hashie (>= 3.4.6) diff --git a/lib/rpi_auth/version.rb b/lib/rpi_auth/version.rb index c3c45c6..c703289 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.2.0' + VERSION = '3.3.0' end