Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 8bde56e

Browse files
committed
fix: Gemfile & Gemfile.lock to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-REXML-7577227 - https://snyk.io/vuln/SNYK-RUBY-REXML-7577228
1 parent f3a1f92 commit 8bde56e

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ end
4242
group :test do
4343
gem 'rails-controller-testing'
4444
gem 'webdrivers'
45-
gem 'webmock'
45+
gem 'webmock', '>= 3.11.2'
4646
gem 'vcr'
4747
end
4848

Gemfile.lock

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,11 @@ GEM
6060
minitest (>= 5.1)
6161
tzinfo (~> 2.0)
6262
zeitwerk (~> 2.3)
63-
addressable (2.7.0)
64-
public_suffix (>= 2.0.2, < 5.0)
63+
addressable (2.8.7)
64+
public_suffix (>= 2.0.2, < 7.0)
6565
autoprefixer-rails (10.2.0.0)
6666
execjs
67+
bigdecimal (3.1.8)
6768
bindex (0.8.1)
6869
bootsnap (1.5.1)
6970
msgpack (~> 1.0)
@@ -75,7 +76,8 @@ GEM
7576
byebug (11.1.3)
7677
childprocess (3.0.0)
7778
concurrent-ruby (1.1.8)
78-
crack (0.4.5)
79+
crack (1.0.0)
80+
bigdecimal
7981
rexml
8082
crass (1.0.6)
8183
diff-lcs (1.4.4)
@@ -94,7 +96,7 @@ GEM
9496
ffi (1.14.2-x64-mingw32)
9597
globalid (0.4.2)
9698
activesupport (>= 4.2.0)
97-
hashdiff (1.0.1)
99+
hashdiff (1.1.0)
98100
i18n (1.8.9)
99101
concurrent-ruby (~> 1.0)
100102
jbuilder (2.10.1)
@@ -123,10 +125,12 @@ GEM
123125
racc (~> 1.4)
124126
nokogiri (1.11.2-x64-mingw32)
125127
racc (~> 1.4)
128+
nokogiri (1.11.2-x86_64-darwin)
129+
racc (~> 1.4)
126130
nokogiri (1.11.2-x86_64-linux)
127131
racc (~> 1.4)
128132
popper_js (1.16.0)
129-
public_suffix (4.0.6)
133+
public_suffix (6.0.1)
130134
puma (5.1.1)
131135
nio4r (~> 2.0)
132136
racc (1.5.2)
@@ -171,7 +175,8 @@ GEM
171175
rb-fsevent (0.10.4)
172176
rb-inotify (0.10.1)
173177
ffi (~> 1.0)
174-
rexml (3.2.4)
178+
rexml (3.3.4)
179+
strscan
175180
rspec-core (3.10.1)
176181
rspec-support (~> 3.10.0)
177182
rspec-expectations (3.10.1)
@@ -214,6 +219,7 @@ GEM
214219
activesupport (>= 4.0)
215220
sprockets (>= 3.0.0)
216221
sqlite3 (1.4.2)
222+
strscan (3.1.0)
217223
thor (1.1.0)
218224
tilt (2.0.10)
219225
turbolinks (5.2.1)
@@ -237,8 +243,8 @@ GEM
237243
nokogiri (~> 1.6)
238244
rubyzip (>= 1.3.0)
239245
selenium-webdriver (>= 3.0, < 4.0)
240-
webmock (3.11.1)
241-
addressable (>= 2.3.6)
246+
webmock (3.23.1)
247+
addressable (>= 2.8.0)
242248
crack (>= 0.3.2)
243249
hashdiff (>= 0.4.0, < 2.0.0)
244250
webpacker (5.2.1)
@@ -277,11 +283,11 @@ DEPENDENCIES
277283
vcr
278284
web-console (>= 4.1.0)
279285
webdrivers
280-
webmock
286+
webmock (>= 3.11.2)
281287
webpacker (~> 5.0)
282288

283289
RUBY VERSION
284290
ruby 3.0.0p0
285291

286292
BUNDLED WITH
287-
2.2.6
293+
2.2.3

0 commit comments

Comments
 (0)