Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix nokogiri GHSA-r95h-9x8f-r3f7 #237

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 27 additions & 23 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PATH
moneta (~> 1.6.0)
morphine (~> 0.1.1)
multi_json (~> 1.15.0)
nokogiri (~> 1.15.6)
nokogiri (~> 1.16.5)
pony (~> 1.12)
rack-cache (>= 1.7, < 2)
rack-rewrite (~> 1.5.1)
Expand All @@ -29,7 +29,7 @@ GEM
remote: https://rubygems.org/
specs:
RedCloth (4.3.4)
activesupport (7.1.3.2)
activesupport (7.1.3.4)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
Expand All @@ -44,11 +44,11 @@ GEM
attr_extras (7.1.0)
base64 (0.2.0)
bcrypt (3.1.20)
bigdecimal (3.1.7)
bigdecimal (3.1.8)
bson (4.15.0)
chronic (0.10.2)
colorize (1.1.0)
concurrent-ruby (1.2.3)
concurrent-ruby (1.3.3)
connection_pool (2.4.1)
coveralls (0.8.23)
json (>= 1.8, < 3)
Expand All @@ -75,13 +75,13 @@ GEM
httparty (0.21.0)
mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
i18n (1.14.4)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
i18n-spec (0.6.0)
iso
iso (0.4.0)
i18n
json (2.7.1)
json (2.7.2)
json_spec (1.1.5)
multi_json (~> 1.0)
rspec (>= 2.0, < 4.0)
Expand All @@ -101,19 +101,20 @@ GEM
memory_profiler (1.0.1)
mime-types (3.5.2)
mime-types-data (~> 3.2015)
mime-types-data (3.2024.0305)
mime-types-data (3.2024.0604)
mimetype-fu (0.1.2)
mini_mime (1.1.5)
mini_portile2 (2.8.5)
minitest (5.22.3)
mini_portile2 (2.8.7)
minitest (5.23.1)
moneta (1.6.0)
mongo (2.18.3)
bson (>= 4.14.1, < 5.0.0)
morphine (0.1.1)
multi_json (1.15.0)
multi_xml (0.6.0)
multi_xml (0.7.1)
bigdecimal (~> 3.1)
mutex_m (0.2.0)
net-imap (0.4.10)
net-imap (0.4.12)
date
net-protocol
net-pop (0.1.2)
Expand All @@ -122,21 +123,21 @@ GEM
timeout
net-smtp (0.5.0)
net-protocol
nio4r (2.7.1)
nokogiri (1.15.6)
nio4r (2.7.3)
nokogiri (1.16.5)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.15.6-x86_64-darwin)
nokogiri (1.16.5-x86_64-darwin)
racc (~> 1.4)
origin (2.3.1)
pony (1.13.1)
mail (>= 2.0)
public_suffix (5.0.4)
public_suffix (5.0.5)
puma (6.4.2)
nio4r (~> 2.0)
racc (1.7.3)
rack (3.0.10)
rack-cache (1.16.0)
racc (1.8.0)
rack (3.0.11)
rack-cache (1.17.0)
rack (>= 0.4)
rack-mini-profiler (0.10.7)
rack (>= 1.2.0)
Expand All @@ -147,8 +148,9 @@ GEM
rack (>= 1.3)
rack_csrf (2.6.0)
rack (>= 1.1.0)
rake (13.1.0)
rexml (3.2.6)
rake (13.2.1)
rexml (3.2.9)
strscan
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
Expand All @@ -172,15 +174,17 @@ GEM
simplecov-html (0.10.2)
stackprof (0.2.26)
stringex (2.8.6)
strscan (3.1.0)
sync (0.5.0)
temple (0.10.3)
term-ansicolor (1.7.2)
term-ansicolor (1.8.0)
tins (~> 1.0)
thor (1.3.1)
tilt (2.3.0)
timecop (0.9.8)
timecop (0.9.9)
timeout (0.4.1)
tins (1.32.1)
tins (1.33.0)
bigdecimal
sync
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion locomotivecms_steam.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'mongo', '~> 2.18.2'
spec.add_development_dependency 'origin', '~> 2.3.1'

spec.add_dependency 'nokogiri', '~> 1.15.6'
spec.add_dependency 'nokogiri', '~> 1.16.5'
spec.add_dependency 'sanitize', '~> 6.0.1'
spec.add_dependency 'morphine', '~> 0.1.1'
spec.add_dependency 'httparty', '~> 0.21.0'
Expand Down