Skip to content

Commit

Permalink
Update Nokogumbo version to address dependency warnings
Browse files Browse the repository at this point in the history
Partially addresses the following notification triggered on application launch.
```
NOTE: nokogumbo: Using Nokogiri::HTML5 provided by Nokogiri. See sparklemotion/nokogiri#2205 for more information.
```

This change updates `sanitize` to a verzion that removes the dependency on nokogumbo.
The remaining dependency comes from the `linkeddata` data gem which has a more complicated
dependency chain to address.
  • Loading branch information
mark-dce committed Oct 3, 2021
1 parent 34d26bf commit e66fb33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -38,7 +38,7 @@ gem 'rack', '>= 2.1.4'
gem 'rails', '>= 5.2.4.5'
gem 'rsolr', '~> 1.0'
gem 'rubyzip'
gem 'sanitize', '~> 5.2'
gem 'sanitize', '~> 6.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'sidekiq'
Expand Down
7 changes: 3 additions & 4 deletions Gemfile.lock
Expand Up @@ -879,10 +879,9 @@ GEM
rubyzip (2.3.0)
samvera-nesting_indexer (2.0.0)
dry-equalizer
sanitize (5.2.3)
sanitize (6.0.0)
crass (~> 1.0.2)
nokogiri (>= 1.8.0)
nokogumbo (~> 2.0)
nokogiri (>= 1.12.0)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
Expand Down Expand Up @@ -1101,7 +1100,7 @@ DEPENDENCIES
rspec-rails (~> 3.5)
rspec_junit_formatter
rubyzip
sanitize (~> 5.2)
sanitize (~> 6.0)
sass-rails (~> 5.0)
selenium-webdriver
shoulda-matchers
Expand Down

0 comments on commit e66fb33

Please sign in to comment.