You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by GitBox <gi...@apache.org> on 2022/04/06 18:02:34 UTC

[GitHub] [jackrabbit-filevault-package-maven-plugin] dependabot[bot] opened a new pull request, #76: build(deps): bump jsoup from 1.10.3 to 1.14.2 in /src/test/resources/test-projects/manifest-generation/with-unused-parent-dependencies

dependabot[bot] opened a new pull request, #76:
URL: https://github.com/apache/jackrabbit-filevault-package-maven-plugin/pull/76

   Bumps [jsoup](https://github.com/jhy/jsoup) from 1.10.3 to 1.14.2.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/jhy/jsoup/releases">jsoup's releases</a>.</em></p>
   <blockquote>
   <h2>jsoup 1.14.2</h2>
   <p>Caught by the fuzz! <strong>jsoup 1.14.2</strong> is out now, and includes a set of parser bug fixes and improvements for handling rough HTML and XML, as identified by the Jazzer JVM fuzzer. This release also includes other fixes and improvements.</p>
   <p>See the <a href="https://jsoup.org/news/release-1.14.2">release announcement</a> for the full changelog.</p>
   <h2>jsoup 1.14.1</h2>
   <p>jsoup <strong>1.14.1</strong> is out now, with simple request session management, increased parse robustness, and a ton of other improvements, speed-ups, and bug fixes.</p>
   <p>See the full <a href="https://jsoup.org/news/release-1.14.1">announcement</a> for all the details on what's changed.</p>
   <p>jsoup 1.13.1</p>
   <p>See the <a href="https://jsoup.org/news/release-1.13.1">release notes</a>.</p>
   <pre><code>&lt;dependency&gt;
     &lt;!-- jsoup HTML parser library @ https://jsoup.org/ --&gt;
     &lt;groupId&gt;org.jsoup&lt;/groupId&gt;
     &lt;artifactId&gt;jsoup&lt;/artifactId&gt;
     &lt;version&gt;1.13.1&lt;/version&gt;
   &lt;/dependency&gt;
   </code></pre>
   <h2>jsoup-1.12.2</h2>
   <p>No release notes provided.</p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/jhy/jsoup/blob/master/CHANGES">jsoup's changelog</a>.</em></p>
   <blockquote>
   <p>jsoup changelog</p>
   <p>*** Release 1.15.1 [PENDING]</p>
   <ul>
   <li>
   <p>Change: removed previously deprecated methods and classes (including org.jsoup.safety.Whitelist; use
   org.jsoup.safety.Safelist instead).</p>
   </li>
   <li>
   <p>Improvement: when converting jsoup Documents to W3C Documents in W3CDom, preserve HTML valid attribute names if the
   input document is using the HTML syntax. (Previously, would always coerce using the more restrictive XML syntax.)
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/pull/1648">jhy/jsoup#1648</a></p>
   </li>
   <li>
   <p>Improvement: added the :containsWholeText(text) selector, to match against non-normalized Element text. That can be
   useful when elements can only be distinguished by e.g. specific case, or leading whitespace, etc.
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1636">jhy/jsoup#1636</a></p>
   </li>
   <li>
   <p>Improvement: added Element#wholeOwnText() to retrieve the original (non-normalized) ownText of an Element. Also
   added the :containsWholeOwnText(text) selector, to match against that. BR elements are now treated as newlines
   in the wholeText methods.
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1636">jhy/jsoup#1636</a></p>
   </li>
   <li>
   <p>Improvement: added the :matchesWholeText(regex) and :matchesWholeOwnText(regex) selectors, to match against whole
   (non-normalized, case sensitive&gt; element text and own text, respectively.
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1636">jhy/jsoup#1636</a></p>
   </li>
   <li>
   <p>Improvement: when evaluating an XPath query against a context element, the complete document is now visible to the
   query, vs only the context element's sub-tree. This enables support for queries outside (parent or sibling) the
   element, e.g. ancestor-or-self::*.
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1652">jhy/jsoup#1652</a></p>
   </li>
   <li>
   <p>Improvement: allow a maxPaddingWidth on the indent level in OutputSettings when pretty printing. This defaults to
   30 to limit the indent level for very deeply nested elements, and may be disabled by setting to -1.
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/pull/1655">jhy/jsoup#1655</a></p>
   </li>
   <li>
   <p>Improvement: when cloning a Node or an Element, the clone gets a cloned OwnerDocument containing only that clone, so
   as to preserve applicable settings, such as the Pretty Print settings.
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/763">jhy/jsoup#763</a></p>
   </li>
   <li>
   <p>Improvement: added a convenience method Jsoup.parse(File).
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1693">jhy/jsoup#1693</a></p>
   </li>
   <li>
   <p>Improvement: in the NodeTraversor, added default implementations for NodeVisitor.tail() and NodeFilter.tail(), so
   that code using only head() methods can be written as lambdas.</p>
   </li>
   <li>
   <p>Improvement: in NodeTraversor, added support for removing nodes via Node.remove() during NodeVisitor.head().
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1699">jhy/jsoup#1699</a></p>
   </li>
   <li>
   <p>Improvement: added Node.forEachNode(Consumer<!-- raw HTML omitted -->) and Element.forEach(Consumer&lt;Element) methods, to efficiently
   traverse the DOM with a functional interface.
   <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1700">jhy/jsoup#1700</a></p>
   </li>
   <li>
   <p>Bugfix: boolean attribute names should be case-insensitive, but were not when the parser was configured to preserve</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/jhy/jsoup/commit/19c77325c9abb6f8b8b65034470e15faad6ce822"><code>19c7732</code></a> [maven-release-plugin] prepare release jsoup-1.14.2</li>
   <li><a href="https://github.com/jhy/jsoup/commit/acde180f094e2749d22034916cb35914289e521a"><code>acde180</code></a> Compress harder</li>
   <li><a href="https://github.com/jhy/jsoup/commit/530c5b0fcbef330ea762071144a864e19b1c7595"><code>530c5b0</code></a> Refactored fuzz tests to iterate all files in directory; run timeout tests</li>
   <li><a href="https://github.com/jhy/jsoup/commit/d2c455c94a3aaaca29d8cec6bd53ee9824622b51"><code>d2c455c</code></a> Speed improvement: cap number of cloned active formatting elements</li>
   <li><a href="https://github.com/jhy/jsoup/commit/0dcb53a73cd11530caee713a46d95ac9867b2805"><code>0dcb53a</code></a> Correctly consume to exit state</li>
   <li><a href="https://github.com/jhy/jsoup/commit/42da86439df7545a7418044f7e8804b7dfb2de15"><code>42da864</code></a> In bogusComment, make sure unconsume not called after a potential buffer up</li>
   <li><a href="https://github.com/jhy/jsoup/commit/eba3e39a0d4c6e55295b565511873f81a751dde2"><code>eba3e39</code></a> Fix an IOOB when HTML root cleared and then attributes added</li>
   <li><a href="https://github.com/jhy/jsoup/commit/9d538e634c47754f976e6503ed7e427f92802ec2"><code>9d538e6</code></a> Annotate some nullables</li>
   <li><a href="https://github.com/jhy/jsoup/commit/a909600117d18af97cc432a15a1fa3c67bc100de"><code>a909600</code></a> Comment on URL normalization</li>
   <li><a href="https://github.com/jhy/jsoup/commit/6b3ec64329f24f61f0eb806cef59f1fa5b233ca2"><code>6b3ec64</code></a> Removed unused import</li>
   <li>Additional commits viewable in <a href="https://github.com/jhy/jsoup/compare/jsoup-1.10.3...jsoup-1.14.2">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jsoup:jsoup&package-manager=maven&previous-version=1.10.3&new-version=1.14.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   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](https://github.com/apache/jackrabbit-filevault-package-maven-plugin/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@jackrabbit.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [jackrabbit-filevault-package-maven-plugin] dependabot[bot] commented on pull request #76: build(deps): bump jsoup from 1.10.3 to 1.14.2 in /src/test/resources/test-projects/manifest-generation/with-unused-parent-dependencies

Posted by GitBox <gi...@apache.org>.
dependabot[bot] commented on PR #76:
URL: https://github.com/apache/jackrabbit-filevault-package-maven-plugin/pull/76#issuecomment-1234852672

   Superseded by #83.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@jackrabbit.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [jackrabbit-filevault-package-maven-plugin] dependabot[bot] closed pull request #76: build(deps): bump jsoup from 1.10.3 to 1.14.2 in /src/test/resources/test-projects/manifest-generation/with-unused-parent-dependencies

Posted by GitBox <gi...@apache.org>.
dependabot[bot] closed pull request #76: build(deps): bump jsoup from 1.10.3 to 1.14.2 in /src/test/resources/test-projects/manifest-generation/with-unused-parent-dependencies
URL: https://github.com/apache/jackrabbit-filevault-package-maven-plugin/pull/76


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@jackrabbit.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org