From 81cbdb67cdc1986f831841f10cc4e18c30fa9c29 Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Fri, 14 Jun 2024 09:23:24 -0400 Subject: [PATCH] fix: Gemfile to reduce vulnerabilities (#319) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-RACK-1061917 - https://snyk.io/vuln/SNYK-RUBY-REXML-6861566 Co-authored-by: snyk-bot Co-authored-by: Jesus Federico --- Gemfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 1eff67c4..717d716f 100644 --- a/Gemfile +++ b/Gemfile @@ -49,8 +49,8 @@ group :development, :test do gem 'rspec' gem 'rspec_junit_formatter' gem 'rspec-rails', '~> 5.1.0' - gem 'rubocop', '~> 1.54', require: false - gem 'rubocop-rails', '~> 2.24', '>= 2.24.1', require: false + gem 'rubocop', '~> 1.63', '>= 1.63.0', require: false + gem 'rubocop-rails', '~> 2.25', '>= 2.25.0', require: false end group :development do @@ -65,7 +65,7 @@ end group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 3.40.0' # , '>= 2.15', '< 4.0' - gem 'selenium-webdriver' + gem 'selenium-webdriver', '>= 4.11.0' # Easy installation and use of chromedriver to run system tests with Chrome # gem 'chromedriver-helper' gem 'database_cleaner-active_record' @@ -73,7 +73,7 @@ group :test do gem 'faker' gem 'rails-controller-testing' gem 'webdrivers' - gem 'webmock' + gem 'webmock', '>= 3.20.0' end group :production do