Skip to content

Commit

Permalink
fix: Gemfile & Gemfile.lock to reduce vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Apr 4, 2024
1 parent b6b44ba commit 00c2466
Show file tree
Hide file tree
Showing 2 changed files with 172 additions and 164 deletions.
16 changes: 8 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ruby '3.1.0'

git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gem 'rails', '~> 7.0.2', '>= 7.0.2.3'
gem 'rails', '~> 7.0.8', '>= 7.0.8.1'

# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
Expand Down Expand Up @@ -34,7 +34,7 @@ gem 'pagy'
gem 'oj'
gem 'oj_mimic_json'

gem 'rails-html-sanitizer', '>= 1.4.4'
gem 'rails-html-sanitizer', '>= 1.5.0'

# This is to run the rake task for importing in parallel
# Will provide a progress bar as the import happens
Expand All @@ -44,7 +44,7 @@ gem 'parallel', require: false
gem 'puma', '~> 4.3', '>= 4.3.12'

# enable cors
gem 'rack-cors'
gem 'rack-cors', '>= 2.0.0'

# compresses Rack responses using Google's Brotli compression algorithm
gem 'rack-brotli'
Expand All @@ -57,15 +57,15 @@ gem 'sentry-raven', group: [:production]
group :development, :test do
gem 'pry-rails'
gem 'apollo-tracing'
gem 'solargraph'
gem 'solargraph', '>= 0.45.0'
end

group :development do
gem 'byebug', platform: :mri
gem 'ruby-progressbar'
gem 'benchmark-ips', require: false
gem 'bullet'
gem 'derailed_benchmarks'
gem 'derailed_benchmarks', '>= 2.1.2'

# run some pre commit hooks
gem 'pre-commit', require: false
Expand All @@ -80,11 +80,11 @@ group :development do
end

group :test, :development do
gem 'rspec-rails', '= 5.0.2'
gem 'rspec-rails', '= 5.0.3'
gem 'shoulda-matchers', '~> 5.1.0'
gem 'simplecov', require: false
gem 'factory_bot_rails', '>= 6.2.0'
gem 'rubocop-rails_config', '>= 1.9.1'
gem 'factory_bot_rails', '>= 6.3.0'
gem 'rubocop-rails_config', '>= 1.9.2'
gem 'rubocop-rspec', '>= 2.1.0'
gem 'json-schema-rspec'
end
Expand Down
Loading

0 comments on commit 00c2466

Please sign in to comment.