From 59065f29b176a6b2b467ba6304334d69c0e1320d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 2 Oct 2025 06:07:34 +0000 Subject: [PATCH] fix: Gemfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-RACK-13052974 - https://snyk.io/vuln/SNYK-RUBY-REXML-13110060 --- Gemfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 71f179e97b29f..c9bddae12c266 100644 --- a/Gemfile +++ b/Gemfile @@ -35,16 +35,16 @@ group :development, :test do gem 'rake' # Define `rake spec`. Must be in development AND test so that its available by default as a rake test when the # environment is development - gem 'rspec-rails' + gem 'rspec-rails', '>= 6.0.4' gem 'rspec-rerun' # Required during CI as well local development - gem 'rubocop' + gem 'rubocop', '>= 1.66.0' end group :test do # automatically include factories from spec/factories gem 'test-prof' - gem 'factory_bot_rails' + gem 'factory_bot_rails', '>= 6.3.0' # Make rspec output shorter and more useful gem 'fivemat' # rspec formatter for acceptance tests