Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion activeadmin-oidc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ Gem::Specification.new do |spec|
# Rails 8 lazy route loading without an engine-side workaround.
spec.add_dependency "devise", "~> 5.0"
spec.add_dependency "omniauth", "~> 2.1"
spec.add_dependency "omniauth-rails_csrf_protection", "~> 1.0"
# omniauth-rails_csrf_protection 2.0 dropped the legacy
# Rails 4 support code but kept the same OmniAuth API surface
# the gem uses; both 1.x and 2.x are compatible.
spec.add_dependency "omniauth-rails_csrf_protection", ">= 1.0", "< 3"
# 0.6.x → openid_connect 1.x (httpclient-based, no faraday dep).
# 0.7.x+ → openid_connect 2.x (faraday 2.x). Host apps still on faraday 1.x
# need 0.6.x. activeadmin-oidc only uses the standard OmniAuth strategy
Expand Down
2 changes: 1 addition & 1 deletion lib/activeadmin/oidc/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module ActiveAdmin
module Oidc
VERSION = "2.1.1"
VERSION = "2.1.2"
end
end
Loading