Skip to content

Commit 31b0951

Browse files
committed
fix: Gemfile to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-ACTIONPACK-572498
1 parent f968562 commit 31b0951

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: Gemfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
ruby '2.6.0'
55

66
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7-
gem 'rails', '~> 6.0.3', '>= 6.0.3.1'
7+
gem 'rails', '~> 6.0.3', '>= 6.0.3.2'
88
# Use postgresql as the database for Active Record
99
gem 'pg', '>= 0.18', '< 2.0'
1010
# Use Puma as the app server
@@ -48,18 +48,18 @@ gem 'bcrypt', '~> 3.1.7'
4848
gem 'active_model_serializers', '>= 0.10.10'
4949

5050
group :development, :test do
51-
gem 'rspec-rails', '~> 3.9', '>= 3.9.0'
51+
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
5252
gem 'database_cleaner'
53-
gem 'factory_bot_rails', '>= 5.1.1'
53+
gem 'factory_bot_rails', '>= 5.2.0'
5454
gem 'faker'
5555
end
5656

5757
# https://github.com/rswag/rswag
58-
gem 'rswag-api', '>= 2.2.0'
59-
gem 'rswag-ui', '>= 2.2.0'
58+
gem 'rswag-api', '>= 2.3.1'
59+
gem 'rswag-ui', '>= 2.3.1'
6060

6161
group :development, :test do
62-
gem 'rswag-specs', '>= 2.2.0'
62+
gem 'rswag-specs', '>= 2.3.1'
6363
end
6464

6565
gem 'kaminari', '>= 1.1.1'

0 commit comments

Comments
 (0)