-
Notifications
You must be signed in to change notification settings - Fork 74
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
Update nokogiri to 1.13.10 #3230
Conversation
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.10.10 to 1.13.10. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.10.10...v1.13.10) --- updated-dependencies: - dependency-name: nokogiri dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
It's been deprecated
# Conflicts: # Gemfile.lock
Can't be merged due to the licenses CI job, I'll merge this later on when #3148 is merged |
@dependabot rebase |
I think it will not rebase due to extra changes on top of its own :( |
But also it cannot run the licenses task by itself. I wonder if that can be automated.. |
@@ -60,7 +60,7 @@ def setup | |||
get :show | |||
|
|||
assert_response :success | |||
page = Nokogiri::HTML::Document.parse(response.body) | |||
page = Nokogiri::HTML4::Document.parse(response.body) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw why change this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nokogiri::HTML
as been deprecated and it's now called Nokogiri::HTML4
(see release notes). For the present version there's an alias so both are still working, but the former will be removed in future versions, so I'm advancing the work.
# Conflicts: # Gemfile.lock # doc/licenses/licenses.xml
ffb9f42
You have to rebase, otherwise changes get messed up :( |
Updated Nokogiri to fix some vulnerabilities
I have no idea why my changes weren't committed to #3137. I'm creating this PR to continue with the issue.
The name
Nokogiri::HTML
has been deprecated, now it'sNokogiri::HTML4
. Better change it now to avoid future problems when they remove the old name.Also some tests failed and I had to fix them.