From fb11730915d0b4831b04f83bdbf8790a7ccf9bf7 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 28 Jul 2022 01:36:29 +0000 Subject: [PATCH] fix: Gemfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-ACTIVERECORD-2960802 --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 39207bf77b..fd0264ffe6 100644 --- a/Gemfile +++ b/Gemfile @@ -41,7 +41,7 @@ group :test do gem 'mocha' # Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. # It encourages beautiful code by favoring convention over configuration. - gem 'rails', '~> 5.1.0' + gem 'rails', '~> 5.2.8', '>= 5.2.8.1' # Create customizable MiniTest output formats gem 'minitest-reporters', require: false # Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites @@ -49,7 +49,7 @@ group :test do platforms :jruby do # This module allows Ruby programs to interface with the SQLite3 database engine - gem 'activerecord-jdbcsqlite3-adapter' + gem 'activerecord-jdbcsqlite3-adapter', '>= 52.0' # This module allows Ruby programs to interface with the SQLite3 database engine gem 'jdbc-sqlite3' end