Skip to content

Commit 89be12c

Browse files
authored
Release v3.0.0 (#52)
This is a major release, as we've replaced the underlying OmniAuth library, which might cause some implementation/usage changes. ### Changed - Replaced usage of [omniauth-rpi](https://github.com/RaspberryPiFoundation/omniauth-rpi/) strategy with [omniauth_openid_connect](https://github.com/omniauth/omniauth_openid_connect/) (#51)
1 parent 25d521b commit 89be12c

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.0.0]
11+
1012
### Changed
1113

1214
- Replaced usage of [omniauth-rpi](https://github.com/RaspberryPiFoundation/omniauth-rpi/) strategy with [omniauth_openid_connect](https://github.com/omniauth/omniauth_openid_connect/) (#51)
@@ -72,7 +74,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7274
- rails model concern to allow host app to add auth behaviour to a model
7375
- callback, logout and failure routes to handle auth
7476

75-
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v1.4.0...HEAD
77+
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.0.0...HEAD
78+
[v3.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.0.0
7679
[v2.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v2.0.0
7780
[v1.4.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v1.4.0
7881
[v1.3.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v1.3.0

Gemfile.lock

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

gemfiles/rails_6.1.gemfile.lock

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (2.0.0)
4+
rpi_auth (3.0.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)
@@ -153,6 +153,8 @@ GEM
153153
byebug (~> 11.0)
154154
pry (>= 0.13, < 0.15)
155155
public_suffix (5.0.1)
156+
puma (6.2.2)
157+
nio4r (~> 2.0)
156158
racc (1.6.0)
157159
rack (2.2.4)
158160
rack-oauth2 (2.2.0)
@@ -286,6 +288,7 @@ PLATFORMS
286288
DEPENDENCIES
287289
listen
288290
pry-byebug
291+
puma
289292
rails (~> 6.1)
290293
rpi_auth!
291294
rspec-rails

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 = '2.0.0'
4+
VERSION = '3.0.0'
55
end

0 commit comments

Comments
 (0)