Skip to content

Commit

Permalink
Release v3.2.0 (#58)
Browse files Browse the repository at this point in the history
### 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)
  • Loading branch information
patch0 authored Jun 5, 2023
1 parent 7f4fade commit 33fec82
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails_6.1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/rpi_auth/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RpiAuth
VERSION = '3.1.0'
VERSION = '3.2.0'
end

0 comments on commit 33fec82

Please sign in to comment.