Skip to content

Commit b5e6ab3

Browse files
authored
Release v3.1.0 (#55)
### Changed - Altered default value of the `issuer` to track the `authorization_endpoint` rather than the `token_endpoint` (#54) ### Fixed - Ensure `redirect_uri` is set in the OpenID Connect configuration (#53)
1 parent 19966f5 commit b5e6ab3

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Diff for: CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v3.1.0]
11+
1012
### Changed
1113

1214
- Altered default value of the `issuer` to track the `authorization_endpoint` rather than the `token_endpoint` (#54)
@@ -82,7 +84,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8284
- rails model concern to allow host app to add auth behaviour to a model
8385
- callback, logout and failure routes to handle auth
8486

85-
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.0.0...HEAD
87+
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.1.0...HEAD
88+
[v3.1.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.1.0
8689
[v3.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.0.0
8790
[v2.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v2.0.0
8891
[v1.4.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v1.4.0

Diff for: Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rpi_auth (3.0.0)
4+
rpi_auth (3.1.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)

Diff for: gemfiles/rails_6.1.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (3.0.0)
4+
rpi_auth (3.1.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)

Diff for: lib/rpi_auth/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

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

0 commit comments

Comments
 (0)