Skip to content

Commit

Permalink
jwt downgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Felgate committed Aug 28, 2023
1 parent bf420cd commit 9078b58
Show file tree
Hide file tree
Showing 11 changed files with 225 additions and 225 deletions.
11 changes: 8 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ gem 'http', '~> 4.2.0'
gem 'iso8601'
gem 'jbuilder', '~> 2.7.0'
gem 'nokogiri', '>= 1.8.2'
gem 'puma', '~> 5.6'
gem 'puma', '~> 6'
gem 'rack', '~> 2.2'
gem 'rails', '~> 6.1', '>= 6.1.4.6'
gem 'rake'
Expand Down Expand Up @@ -60,6 +60,9 @@ gem 'net-ldap'
# for AWS rotator
gem 'aws-sdk-iam', require: false

# we need this version since any newer introduces braking change that causes issues with safe_yaml: https://github.com/ruby/psych/discussions/571
gem 'psych', '=3.3.2'

group :production do
gem 'rails_12factor'
end
Expand All @@ -70,7 +73,8 @@ gem 'kubeclient'
gem 'websocket'

# authn-oidc, gcp, azure, jwt
gem 'jwt', '2.2.2' # version frozen due to authn-jwt requirements
# gem 'jwt', '2.2.2' # version frozen due to authn-jwt requirements
gem 'jwt', '2.2.2'
# authn-oidc
gem 'openid_connect', '~> 2.0'

Expand All @@ -88,6 +92,7 @@ group :development, :test do
gem 'cucumber', '~> 7.1'
gem 'database_cleaner', '~> 1.8'
gem 'debase', '~> 0.2.5.beta2'
gem 'debase-ruby_core_source', '~> 3.2.1'
gem 'json_spec', '~> 1.1'
gem 'faye-websocket'
gem 'net-ssh'
Expand All @@ -101,7 +106,7 @@ group :development, :test do
gem 'rspec'
gem 'rspec-core'
gem 'rspec-rails'
gem 'ruby-debug-ide'
# gem 'ruby-debug-ide'

# We use a post-coverage hook to sleep covered processes until we're ready to
# collect the coverage reports in CI. Because of this, we don't want bundler
Expand Down
Loading

0 comments on commit 9078b58

Please sign in to comment.