Bump Nokogiri to 1.11.1 (#12133)
This commit is contained in:
parent
c2517a7443
commit
7112f0f8f5
10 changed files with 11 additions and 7 deletions
|
|
@ -68,7 +68,7 @@ script:
|
|||
- './cc-test-reporter before-build'
|
||||
- if [ "$KNAPSACK_PRO_CI_NODE_INDEX" == "0" ]; then yarn test --colors; fi
|
||||
- if [ "$KNAPSACK_PRO_CI_NODE_INDEX" == "0" ]; then ./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.lcov.json; fi
|
||||
- if [ "$KNAPSACK_PRO_CI_NODE_INDEX" == "1" ]; then bundle exec bundle-audit check --update --ignore CVE-2015-9284 CVE-2020-26247; fi
|
||||
- if [ "$KNAPSACK_PRO_CI_NODE_INDEX" == "1" ]; then bundle exec bundle-audit check --update --ignore CVE-2015-9284; fi
|
||||
- if [ "$KNAPSACK_PRO_CI_NODE_INDEX" == "1" ]; then yarn build-storybook; fi
|
||||
- if [ "$KNAPSACK_PRO_CI_NODE_INDEX" == "2" ]; then bin/test-console-check; fi
|
||||
- bundle exec rake data_updates:run # required for at least creating the first admin user in e2e tests.
|
||||
|
|
|
|||
2
Gemfile
2
Gemfile
|
|
@ -57,7 +57,7 @@ gem "kaminari", "~> 1.2" # A Scope & Engine based, clean, powerful, customizable
|
|||
gem "katex", "~> 0.6.0" # This rubygem enables you to render TeX math to HTML using KaTeX. It uses ExecJS under the hood
|
||||
gem "liquid", "~> 4.0" # A secure, non-evaling end user template engine with aesthetic markup
|
||||
gem "mini_racer", "~> 0.3.1" # Minimal embedded v8
|
||||
gem "nokogiri", "~> 1.10" # HTML, XML, SAX, and Reader parser
|
||||
gem "nokogiri", "~> 1.11" # HTML, XML, SAX, and Reader parser
|
||||
gem "octokit", "~> 4.20" # Simple wrapper for the GitHub API
|
||||
gem "oj", "~> 3.10" # JSON parser and object serializer
|
||||
gem "omniauth", "~> 1.9" # A generalized Rack framework for multiple-provider authentication
|
||||
|
|
|
|||
12
Gemfile.lock
12
Gemfile.lock
|
|
@ -453,7 +453,7 @@ GEM
|
|||
mini_histogram (0.3.1)
|
||||
mini_magick (4.11.0)
|
||||
mini_mime (1.0.2)
|
||||
mini_portile2 (2.4.0)
|
||||
mini_portile2 (2.5.0)
|
||||
mini_racer (0.3.1)
|
||||
libv8 (~> 8.4.255)
|
||||
minitest (5.14.2)
|
||||
|
|
@ -466,8 +466,11 @@ GEM
|
|||
nenv (0.3.0)
|
||||
netrc (0.11.0)
|
||||
nio4r (2.5.4)
|
||||
nokogiri (1.10.10)
|
||||
mini_portile2 (~> 2.4.0)
|
||||
nokogiri (1.11.1)
|
||||
mini_portile2 (~> 2.5.0)
|
||||
racc (~> 1.4)
|
||||
nokogiri (1.11.1-x86_64-darwin)
|
||||
racc (~> 1.4)
|
||||
notiffany (0.1.3)
|
||||
nenv (~> 0.1)
|
||||
shellany (~> 0.0)
|
||||
|
|
@ -533,6 +536,7 @@ GEM
|
|||
rest-client (~> 2.0, >= 2.0.2)
|
||||
pusher-signature (0.1.8)
|
||||
raabro (1.4.0)
|
||||
racc (1.5.2)
|
||||
rack (2.2.3)
|
||||
rack-attack (6.3.1)
|
||||
rack (>= 1.0, < 3)
|
||||
|
|
@ -903,7 +907,7 @@ DEPENDENCIES
|
|||
memory_profiler (~> 0.9)
|
||||
mini_racer (~> 0.3.1)
|
||||
nakayoshi_fork (~> 0.0.4)
|
||||
nokogiri (~> 1.10)
|
||||
nokogiri (~> 1.11)
|
||||
octokit (~> 4.20)
|
||||
oj (~> 3.10)
|
||||
omniauth (~> 1.9)
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ module CodeBlockParser
|
|||
next if el.name == "code"
|
||||
|
||||
if el.search("code").empty?
|
||||
el.swap(Html::ParseEmoji.call(el.to_html))
|
||||
el.swap(Html::ParseEmoji.call(el.to_html)) if el.parent.present?
|
||||
else
|
||||
el.children = escape_colon_emojis_in_codeblock(el.children.to_html)
|
||||
end
|
||||
|
|
|
|||
BIN
vendor/cache/mini_portile2-2.4.0.gem
vendored
BIN
vendor/cache/mini_portile2-2.4.0.gem
vendored
Binary file not shown.
BIN
vendor/cache/mini_portile2-2.5.0.gem
vendored
Normal file
BIN
vendor/cache/mini_portile2-2.5.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/nokogiri-1.10.10.gem
vendored
BIN
vendor/cache/nokogiri-1.10.10.gem
vendored
Binary file not shown.
BIN
vendor/cache/nokogiri-1.11.1-x86_64-darwin.gem
vendored
Normal file
BIN
vendor/cache/nokogiri-1.11.1-x86_64-darwin.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/nokogiri-1.11.1-x86_64-linux.gem
vendored
Normal file
BIN
vendor/cache/nokogiri-1.11.1-x86_64-linux.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/racc-1.5.2.gem
vendored
Normal file
BIN
vendor/cache/racc-1.5.2.gem
vendored
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue