From 37a2709e8119980f9816ea99b149f3c8736175f8 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 16 Mar 2023 15:37:03 +0000 Subject: [PATCH] fix: Gemfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-RAILSHTMLSANITIZER-3168316 - https://snyk.io/vuln/SNYK-RUBY-RAILSHTMLSANITIZER-3168646 - https://snyk.io/vuln/SNYK-RUBY-RAILSHTMLSANITIZER-3168647 - https://snyk.io/vuln/SNYK-RUBY-RAILSHTMLSANITIZER-3168648 - https://snyk.io/vuln/SNYK-RUBY-RAILTIES-20454 - https://snyk.io/vuln/SNYK-RUBY-RAKE-552000 - https://snyk.io/vuln/SNYK-RUBY-REDCARPET-1059089 - https://snyk.io/vuln/SNYK-RUBY-RUBYZIP-22039 - https://snyk.io/vuln/SNYK-RUBY-RUBYZIP-469156 - https://snyk.io/vuln/SNYK-RUBY-TZINFO-2958048 --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 Gemfile diff --git a/Gemfile b/Gemfile old mode 100755 new mode 100644 index 4dbdbacb6dfe1..2f5be3ce62a09 --- a/Gemfile +++ b/Gemfile @@ -11,7 +11,7 @@ end group :development do # Markdown formatting for yard - gem 'redcarpet' + gem 'redcarpet', '>= 3.5.1' # generating documentation gem 'yard' # for development and testing purposes @@ -29,7 +29,7 @@ group :development, :test do # Make rspec output shorter and more useful gem 'fivemat' # running documentation generation tasks and rspec tasks - gem 'rake' + gem 'rake', '>= 12.3.3' # 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'