René's URL Explorer Experiment


Title: Bump nokogiri from 1.10.8 to 1.12.5 by dependabot[bot] · Pull Request #6 · devilsCodeFact/github-slideshow · GitHub

Open Graph Title: Bump nokogiri from 1.10.8 to 1.12.5 by dependabot[bot] · Pull Request #6 · devilsCodeFact/github-slideshow

X Title: Bump nokogiri from 1.10.8 to 1.12.5 by dependabot[bot] · Pull Request #6 · devilsCodeFact/github-slideshow

Description: Bumps nokogiri from 1.10.8 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.8 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.8 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/devilsCodeFact/github-slideshow/pull/6

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:2cdd974e-1713-1006-5da9-1b9fe360f0d0
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id8CEE:2A07B7:7905E50:9CA2A6B:6975AF05
html-safe-nonce0e6b2c8a411cf566f89b5307fc126116d4fd4bca6064f8fcd01c93f4a38655df
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4Q0VFOjJBMDdCNzo3OTA1RTUwOjlDQTJBNkI6Njk3NUFGMDUiLCJ2aXNpdG9yX2lkIjoiMTkxMjIzMjk0OTM0NDIxODg4NSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac1afbd751b0c6af95487e60accc3567727de8e402332aae6ed72c879d92b1ca51
hovercard-subject-tagpull_request:744189409
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/devilsCodeFact/github-slideshow/pull/6/files
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.8 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
None4a4bf5f4e28041a9d2e5c107d7d20b78b4294ba261cab243b28167c16a623a1f
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/devilsCodeFact/github-slideshow git https://github.com/devilsCodeFact/github-slideshow.git
octolytics-dimension-user_id63772347
octolytics-dimension-user_logindevilsCodeFact
octolytics-dimension-repository_id256128644
octolytics-dimension-repository_nwodevilsCodeFact/github-slideshow
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id256128644
octolytics-dimension-repository_network_root_nwodevilsCodeFact/github-slideshow
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release488b30e96dfd057fbbe44c6665ccbc030b729dde
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FdevilsCodeFact%2Fgithub-slideshow%2Fpull%2F6%2Ffiles
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%2FdevilsCodeFact%2Fgithub-slideshow%2Fpull%2F6%2Ffiles
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%2Ffiles&source=header-repo&source_repo=devilsCodeFact%2Fgithub-slideshow
Reloadhttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
Reloadhttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
Reloadhttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
devilsCodeFact https://patch-diff.githubusercontent.com/devilsCodeFact
github-slideshowhttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FdevilsCodeFact%2Fgithub-slideshow
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2FdevilsCodeFact%2Fgithub-slideshow
Star 0 https://patch-diff.githubusercontent.com/login?return_to=%2FdevilsCodeFact%2Fgithub-slideshow
Code https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow
Issues 0 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/issues
Pull requests 3 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pulls
Actions https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/actions
Projects 0 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/projects
Security 0 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/security
Insights https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pulse
Code https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow
Issues https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/issues
Pull requests https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pulls
Actions https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/actions
Projects https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/projects
Security https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/security
Insights https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FdevilsCodeFact%2Fgithub-slideshow%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=%2FdevilsCodeFact%2Fgithub-slideshow%2Fissues%2Fnew%2Fchoose
dependabothttps://patch-diff.githubusercontent.com/apps/dependabot
masterhttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/tree/master
dependabot/bundler/nokogiri-1.12.5https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/tree/dependabot/bundler/nokogiri-1.12.5
Conversation 1 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6
Commits 1 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/commits
Checks 0 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/checks
Files changed https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
Please reload this pagehttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
Bump nokogiri from 1.10.8 to 1.12.5 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
6ccb85a Bump nokogiri from 1.10.8 to 1.12.5 dependabot[bot] Sep 28, 2021 https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/commits/6ccb85accb203b8271517b50095b21a26d9357d2
Clear filters https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
Please reload this pagehttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
Please reload this pagehttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files
Gemfile.lockhttps://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files#diff-89cade48462044ee1b672dc5f4c3ec250fbd29effcd8932096a23c1283c6731f
View file https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/blob/6ccb85accb203b8271517b50095b21a26d9357d2/Gemfile.lock
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files#diff-89cade48462044ee1b672dc5f4c3ec250fbd29effcd8932096a23c1283c6731f
https://patch-diff.githubusercontent.com/devilsCodeFact/github-slideshow/pull/6/files#diff-89cade48462044ee1b672dc5f4c3ec250fbd29effcd8932096a23c1283c6731f
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.