Skip to content

Commit ea9b0fb

Browse files
committed
fix: Gemfile & Gemfile.lock to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-RACK-13535097
1 parent 574fdfd commit ea9b0fb

2 files changed

Lines changed: 162 additions & 151 deletions

File tree

Gemfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
ruby '3.4.2'
55

66
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7-
gem 'rails', '~> 8.0', '>= 8.0.0'
7+
gem 'rails', '~> 8.0', '>= 8.0.2.1'
88

99
# State machine
1010
gem 'aasm'
@@ -44,11 +44,11 @@ gem 'redcarpet', '~> 3.6'
4444
gem 'auth0', '~> 5.1', '>= 5.1.2', require: false
4545

4646
# Google Login
47-
gem 'omniauth-google-oauth2', '>= 1.1.2'
47+
gem 'omniauth-google-oauth2', '>= 1.2.0'
4848
gem 'omniauth-rails_csrf_protection', '~> 1.0', '>= 1.0.2'
4949

5050
# Admin Frontend
51-
gem 'haml-rails', '>= 2.1.0'
51+
gem 'haml-rails', '>= 3.0.0'
5252
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
5353
gem 'uglifier', '~> 4.2'
5454
gem 'kaminari', '>= 1.2.2'
@@ -66,13 +66,13 @@ gem 'lograge', '>= 0.14.0'
6666
# gem 'skylight', '~> 6.0', '>= 6.0.0'
6767

6868
gem 'rubocop', '>= 1.66.0'
69-
gem 'rubocop-rails', '~> 2.30', '>= 2.30.2'
69+
gem 'rubocop-rails', '~> 2.31', '>= 2.31.0'
7070

7171
gem 'progress_bar', require: false
7272

7373
gem 'sidekiq-pro', source: 'https://gems.contribsys.com/'
7474
# gem 'sidekiq', '>=5.2.10' # Free version, use for local image building
75-
gem 'sidekiq-cron', '>= 2.1.0'
75+
gem 'sidekiq-cron', '>= 2.3.1'
7676

7777
# Alpine and Windows do not include zoneinfo files, so bundle the tzinfo-data gem
7878
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby ruby]
@@ -107,9 +107,9 @@ group :development, :test do
107107
gem 'brakeman', require: false
108108
gem 'byebug', platforms: %i[mri mingw x64_mingw]
109109
gem 'dotenv-rails', '>= 3.1.3'
110-
gem 'factory_bot_rails', '~> 6.4', '>= 6.4.4'
110+
gem 'factory_bot_rails', '~> 6.5', '>= 6.5.1'
111111
gem 'pry-rails'
112-
gem 'rspec-rails', '~> 6.1', '>= 6.1.3'
112+
gem 'rspec-rails', '~> 7.0', '>= 7.0.0'
113113
end
114114

115115
group :development do

0 commit comments

Comments
 (0)