René's URL Explorer Experiment


Title: Bump nokogiri from 1.10.4 to 1.12.5 by dependabot[bot] · Pull Request #68 · nodegit/nodegit.github.com · GitHub

Open Graph Title: Bump nokogiri from 1.10.4 to 1.12.5 by dependabot[bot] · Pull Request #68 · nodegit/nodegit.github.com

X Title: Bump nokogiri from 1.10.4 to 1.12.5 by dependabot[bot] · Pull Request #68 · nodegit/nodegit.github.com

Description: Bumps nokogiri from 1.10.4 to 1.12.5. Release notes Sourced from nokogiri's releases. 1.12.5 / 2021-09-27 Security [JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h). In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parsers resolve external entities (XXE) by default. This fix turns off entity-resolution-by-default in the JRuby SAX parsers to match the CRuby SAX parsers' behavior. CRuby users are not affected by this CVE. Fixed [CRuby] Document#to_xhtml properly serializes self-closing tags in libxml > 2.9.10. A behavior change introduced in libxml 2.9.11 resulted in emitting start and and tags (e.g.,

) instead of a self-closing tag (e.g.,
) in previous Nokogiri versions. [#2324] SHA256 checksums: 36bfa3a07aced069b3f3c9b39d9fb62cb0728d284d02b079404cd55780beaeff nokogiri-1.12.5-arm64-darwin.gem 16b1a9ddbb70a9c998462912a5972097cbc79c3e01eb373906886ef8a469f589 nokogiri-1.12.5-java.gem 218dcc6edd1b49cc6244b5f88afb978739bb2f3f166c271557fe5f51e4bc713c nokogiri-1.12.5-x64-mingw32.gem e33bb919d64c16d931a5f26dc880969e587d225cfa97e6b56e790fb52179f527 nokogiri-1.12.5-x86-linux.gem e13c2ed011b8346fbd589e96fe3542d763158bc2c7ad0f4f55f6d801afd1d9ff nokogiri-1.12.5-x86-mingw32.gem 1ed64f7db7c1414b87fce28029f2a10128611d2037e0871ba298d00f9a00edd6 nokogiri-1.12.5-x86_64-darwin.gem 0868c8d0a147904d4dedaaa05af5f06656f2d3c67e4432601718559bf69d6cea nokogiri-1.12.5-x86_64-linux.gem 2b20905942acc580697c8c496d0d1672ab617facb9d30d156b3c7676e67902ec nokogiri-1.12.5.gem 1.12.4 / 2021-08-29 Notable fix: Namespace inheritance Namespace behavior when reparenting nodes has historically been poorly specified and the behavior diverged between CRuby and JRuby. As a result, making this behavior consistent in v1.12.0 introduced a breaking change. This patch release reverts the Builder behavior present in v1.12.0..v1.12.3 but keeps the Document behavior. This release also introduces a Document attribute to allow affected users to easily change this behavior for their legacy code without invasive changes. Compensating Feature in XML::Document This release of Nokogiri introduces a new Document boolean attribute, namespace_inheritance, which controls whether children should inherit a namespace when they are reparented. Nokogiri::XML:Document defaults this attribute to false meaning "do not inherit," thereby making explicit the behavior change introduced in v1.12.0. CRuby users who desire the pre-v1.12.0 behavior may set document.namespace_inheritance = true before reparenting nodes. See https://nokogiri.org/rdoc/Nokogiri/XML/Document.html#namespace_inheritance-instance_method for example usage. Fix for XML::Builder ... (truncated) Changelog Sourced from nokogiri's changelog. 1.12.5 / 2021-09-27 Security [JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h). In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parsers resolve external entities (XXE) by default. This fix turns off entity-resolution-by-default in the JRuby SAX parsers to match the CRuby SAX parsers' behavior. CRuby users are not affected by this CVE. Fixed [CRuby] Document#to_xhtml properly serializes self-closing tags in libxml > 2.9.10. A behavior change introduced in libxml 2.9.11 resulted in emitting start and and tags (e.g.,

) instead of a self-closing tag (e.g.,
) in previous Nokogiri versions. [#2324] 1.12.4 / 2021-08-29 Notable fix: Namespace inheritance Namespace behavior when reparenting nodes has historically been poorly specified and the behavior diverged between CRuby and JRuby. As a result, making this behavior consistent in v1.12.0 introduced a breaking change. This patch release reverts the Builder behavior present in v1.12.0..v1.12.3 but keeps the Document behavior. This release also introduces a Document attribute to allow affected users to easily change this behavior for their legacy code without invasive changes. Compensating Feature in XML::Document This release of Nokogiri introduces a new Document boolean attribute, namespace_inheritance, which controls whether children should inherit a namespace when they are reparented. Nokogiri::XML:Document defaults this attribute to false meaning "do not inherit," thereby making explicit the behavior change introduced in v1.12.0. CRuby users who desire the pre-v1.12.0 behavior may set document.namespace_inheritance = true before reparenting nodes. See https://nokogiri.org/rdoc/Nokogiri/XML/Document.html#namespace_inheritance-instance_method for example usage. Fix for XML::Builder However, recognizing that we want Builder-created children to inherit namespaces, Builder now will set namespace_inheritance=true on the underlying document for both JRuby and CRuby. This means that, on CRuby, the pre-v1.12.0 behavior is restored. Users who want to turn this behavior off may pass a keyword argument to the Builder constructor like so: Nokogiri::XML::Builder.new(namespace_inheritance: false) See https://nokogiri.org/rdoc/Nokogiri/XML/Builder.html#label-Namespace+inheritance for example usage. Downstream gem maintainers Note that any downstream gems may want to specifically omit Nokogiri v1.12.0--v1.12.3 from their dependency specification if they rely on child namespace inheritance: ... (truncated) Commits 47f6a46 version bump to v1.12.5 2a0ac88 update CHANGELOG 6b60637 Merge pull request #2329 from sparklemotion/flavorjones-GHSA-2rr5-8q37-2w7h_1... 4bd943c fix(jruby): SAX parser uses an entity resolver f943ee4 refactor(jruby): handle errors more consistently 2790122 format: test files 01e1618 Merge pull request #2327 from sparklemotion/2324-xhtml-self-closing-tags_v1.12.x a0180c7 fix: HTML4::Document.to_xhtml self-closing tags 564ac17 release v1.12.4 4d5754b backport #2320 Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) @dependabot use these labels will set the current labels as the default for future PRs for this repo and language @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the Security Alerts page.

Open Graph Description: Bumps nokogiri from 1.10.4 to 1.12.5. Release notes Sourced from nokogiri's releases. 1.12.5 / 2021-09-27 Security [JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h). In Nokogiri v1.12.4 an...

X Description: Bumps nokogiri from 1.10.4 to 1.12.5. Release notes Sourced from nokogiri's releases. 1.12.5 / 2021-09-27 Security [JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h). In Nokogiri v1.12....

Opengraph URL: https://github.com/nodegit/nodegit.github.com/pull/68

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:9c9799e4-7360-6473-ee79-b8c32624e4ba
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-idCBF0:2294D5:3B21C34:50A2624:6973985A
html-safe-nonce4217acda5d5668817791ffa86c361064222aa448de245c1d8f37118050f5b1ce
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQkYwOjIyOTRENTozQjIxQzM0OjUwQTI2MjQ6Njk3Mzk4NUEiLCJ2aXNpdG9yX2lkIjoiNTIyNzY1MDI3NTM3MDgzNDAxMSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac4ecf47dc0f8cd28a47a2326a83c98b3c486b04d39e19f3d91c2b884ce811770a
hovercard-subject-tagpull_request:743862153
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/nodegit/nodegit.github.com/pull/68/checks
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps nokogiri from 1.10.4 to 1.12.5. Release notes Sourced from nokogiri's releases. 1.12.5 / 2021-09-27 Security [JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h). In Nokogiri v1.12.4 an...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonef0b5e2d1da32de5a0b7bcfbc5ba007c93e8e63098fba29e1200efb674aa72e66
turbo-cache-controlno-preview
go-importgithub.com/nodegit/nodegit.github.com git https://github.com/nodegit/nodegit.github.com.git
octolytics-dimension-user_id657068
octolytics-dimension-user_loginnodegit
octolytics-dimension-repository_id1462352
octolytics-dimension-repository_nwonodegit/nodegit.github.com
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1462352
octolytics-dimension-repository_network_root_nwonodegit/nodegit.github.com
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release6fc3acd8abe8a5ec0c4bf4d09d9e27d14301112d
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodegit%2Fnodegit.github.com%2Fpull%2F68%2Fchecks
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodegit%2Fnodegit.github.com%2Fpull%2F68%2Fchecks
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=nodegit%2Fnodegit.github.com
Reloadhttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks
Reloadhttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks
Reloadhttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks
nodegit https://patch-diff.githubusercontent.com/nodegit
nodegit.github.comhttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fnodegit%2Fnodegit.github.com
Fork 21 https://patch-diff.githubusercontent.com/login?return_to=%2Fnodegit%2Fnodegit.github.com
Star 14 https://patch-diff.githubusercontent.com/login?return_to=%2Fnodegit%2Fnodegit.github.com
Code https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com
Issues 21 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/issues
Pull requests 12 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pulls
Actions https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/actions
Projects 0 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/projects
Wiki https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/wiki
Security 0 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/security
Insights https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pulse
Code https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com
Issues https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/issues
Pull requests https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pulls
Actions https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/actions
Projects https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/projects
Wiki https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/wiki
Security https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/security
Insights https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fnodegit%2Fnodegit.github.com%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Fnodegit%2Fnodegit.github.com%2Fissues%2Fnew%2Fchoose
dependabothttps://patch-diff.githubusercontent.com/apps/dependabot
masterhttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/tree/master
dependabot/bundler/nokogiri-1.12.5https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/tree/dependabot/bundler/nokogiri-1.12.5
Conversation 1 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68
Commits 1 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/commits
Checks 0 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks
Files changed https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/files
Please reload this pagehttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks
Please reload this pagehttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks
Bump nokogiri from 1.10.4 to 1.12.5 https://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/nodegit/nodegit.github.com/pull/68/checks
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.