fix: Gemfile to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-RUBY-RACK-13535097
- https://snyk.io/vuln/SNYK-RUBY-RACK-13524628
- https://snyk.io/vuln/SNYK-RUBY-URI-13506785
This commit is contained in:
snyk-bot 2025-10-16 11:00:00 +00:00
parent 493db274f5
commit d46cd2dc74
No known key found for this signature in database
GPG key ID: 78AC5AE55A47A65B

22
Gemfile
View file

@ -28,8 +28,8 @@ gem 'parallel'
gem 'pg'
gem 'prometheus_exporter'
gem 'puma'
gem 'pundit'
gem 'rails', '~> 8.0'
gem 'pundit', '>= 2.5.1'
gem 'rails', '~> 8.0', '>= 8.0.3'
gem 'rails_icons'
gem 'redis'
gem 'rexml'
@ -40,17 +40,17 @@ gem 'rqrcode', '~> 3.0'
gem 'rswag-api'
gem 'rswag-ui'
gem 'rubyzip', '~> 3.1'
gem 'sentry-rails'
gem 'sentry-rails', '>= 5.27.0'
gem 'sentry-ruby'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'sidekiq', '>= 8.0.5'
gem 'sidekiq-cron', '>= 2.3.1'
gem 'sidekiq-limit_fetch'
gem 'sprockets-rails'
gem 'stackprof'
gem 'stimulus-rails'
gem 'strong_migrations'
gem 'tailwindcss-rails'
gem 'turbo-rails'
gem 'strong_migrations', '>= 2.4.0'
gem 'tailwindcss-rails', '>= 3.3.2'
gem 'turbo-rails', '>= 2.0.17'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
group :development, :test, :staging do
@ -62,7 +62,7 @@ group :development, :test, :staging do
gem 'ffaker'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails'
gem 'rspec-rails', '>= 8.0.1'
gem 'rswag-specs'
end
@ -77,7 +77,7 @@ group :test do
end
group :development do
gem 'database_consistency', require: false
gem 'database_consistency', '>= 2.0.5', require: false
gem 'foreman'
gem 'rubocop-rails', require: false
gem 'rubocop-rails', '>= 2.33.4', require: false
end