Skip to content

Commit 33fec82

Browse files
authored
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)
1 parent 7f4fade commit 33fec82

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v3.2.0]
11+
1012
### Added
1113

1214
- Allow for customisation of returnTo param on log out (#56)
13-
- Allow `success_redirect` to be configured as a block that is executed in the context of the AuthController.
15+
- Allow `success_redirect` to be configured as a block that is executed in the context of the AuthController (#57)
1416

1517
## [v3.1.0]
1618

@@ -89,7 +91,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8991
- rails model concern to allow host app to add auth behaviour to a model
9092
- callback, logout and failure routes to handle auth
9193

92-
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.1.0...HEAD
94+
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.2.0...HEAD
95+
[v3.2.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.2.0
9396
[v3.1.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.1.0
9497
[v3.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.0.0
9598
[v2.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v2.0.0

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rpi_auth (3.1.0)
4+
rpi_auth (3.2.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)
@@ -86,7 +86,7 @@ GEM
8686
diff-lcs (1.5.0)
8787
docile (1.4.0)
8888
erubi (1.11.0)
89-
faraday (2.7.4)
89+
faraday (2.7.5)
9090
faraday-net_http (>= 2.0, < 3.1)
9191
ruby2_keywords (>= 0.0.4)
9292
faraday-follow_redirects (0.3.0)

gemfiles/rails_6.1.gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (3.1.0)
4+
rpi_auth (3.2.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)
@@ -80,7 +80,7 @@ GEM
8080
diff-lcs (1.5.0)
8181
docile (1.4.0)
8282
erubi (1.11.0)
83-
faraday (2.7.4)
83+
faraday (2.7.5)
8484
faraday-net_http (>= 2.0, < 3.1)
8585
ruby2_keywords (>= 0.0.4)
8686
faraday-follow_redirects (0.3.0)

lib/rpi_auth/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RpiAuth
4-
VERSION = '3.1.0'
4+
VERSION = '3.2.0'
55
end

0 commit comments

Comments
 (0)