dependabot[bot] opened a new pull request #213: URL: https://github.com/apache/any23/pull/213
Bumps [jsoup](https://github.com/jhy/jsoup) from 1.14.2 to 1.14.3. <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.3</h2> <p><strong>jsoup 1.14.3</strong> is out now, adding native <strong>XPath</strong> selector support, improved <code>\<template></code> support, and also includes a bunch of bug fixes, improvements, and performance enhancements.</p> <p>See the <a href="https://jsoup.org/news/release-1.14.3">release announcement</a> for the full changelog.</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: 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> </ul> <p>*** Release 1.14.3 [2021-Sep-30]</p> <ul> <li> <p>Improvement: added native XPath support in Element#selectXpath(String) <a href="https://github-redirect.dependabot.com/jhy/jsoup/pull/1629">jhy/jsoup#1629</a></p> </li> <li> <p>Improvement: added full support for the <template> tag to the HTML5 parser spec. <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1634">jhy/jsoup#1634</a></p> </li> <li> <p>Improvement: added support in CharacterReader to track newlines, so that parse errors can be reported more intuitively. <a href="https://github-redirect.dependabot.com/jhy/jsoup/pull/1624">jhy/jsoup#1624</a></p> </li> <li> <p>Improvement: tracked parse errors now have more details, including the erroneous token, to help clarify the errors.</p> </li> <li> <p>Improvement: speed and memory optimizations for the :has(subquery) selector.</p> </li> <li> <p>Improvement: the :contains(text) and :containsOwn(text) selectors are now whitespace normalized, aligning to the document text that they are matching against. <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/876">jhy/jsoup#876</a></p> </li> <li> <p>Improvement: in Element, speed optimized adopting all of an element's child nodes into a currently empty element. Improves the HTML adoption agency algorithm when adopting elements with many children. <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1638">jhy/jsoup#1638</a></p> </li> <li> <p>Improvement: increased the parse speed when in RCData (e.g. <!-- raw HTML omitted -->) and unescaped <!-- raw HTML omitted --> tokens are found, by memoizing the <!-- raw HTML omitted --> scan and reducing GC. <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1644">jhy/jsoup#1644</a></p> </li> <li> <p>Improvement: when parsing custom tags (in HTML or XML), added a flyweight cache on Tag.valueOf(name) to reduce memory overhead when many tags are repeated. Also tuned other areas of the parser when many very deeply stacked custom elements were present. <a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1646">jhy/jsoup#1646</a></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/00061629b5b91f09afbfea7eae3710bb3253c5b9"><code>0006162</code></a> [maven-release-plugin] prepare release jsoup-1.14.3</li> <li><a href="https://github.com/jhy/jsoup/commit/80a939612f702962ffa7f0fd121fedc2040e0afe"><code>80a9396</code></a> Javadoc update for XPath</li> <li><a href="https://github.com/jhy/jsoup/commit/0d1f04a04ffc26592a8dda787a1fd0d707285e0f"><code>0d1f04a</code></a> Javadoc update to add <a href="https://github.com/since"><code>@​since</code></a> 1.14.3</li> <li><a href="https://github.com/jhy/jsoup/commit/89de79670c77039a99177fe6f739ea6f675a3a59"><code>89de796</code></a> Bump junit-jupiter from 5.8.0 to 5.8.1 (<a href="https://github-redirect.dependabot.com/jhy/jsoup/issues/1645">#1645</a>)</li> <li><a href="https://github.com/jhy/jsoup/commit/b14eb2a26c3fcbaa9d95edb569692baa0283c4ca"><code>b14eb2a</code></a> Test case and change note for parser improvements incl tag flyweight</li> <li><a href="https://github.com/jhy/jsoup/commit/4b46397a3c6f18f88cac76c6e983e2aa6cbef230"><code>4b46397</code></a> Short-circuit tag scans for custom tags</li> <li><a href="https://github.com/jhy/jsoup/commit/d3f4e319e009f7af8f1305279495d05e8488b089"><code>d3f4e31</code></a> Flyweight Tag.valueOf in TreeBuilder</li> <li><a href="https://github.com/jhy/jsoup/commit/a8df71b3f520e528406655ab4a73c369c83d8aac"><code>a8df71b</code></a> Limit the stack depth we scan looking for mis-closed DD / DT tags</li> <li><a href="https://github.com/jhy/jsoup/commit/e4ae6faa38e3452a639961dbb834adcb2d104d2c"><code>e4ae6fa</code></a> Per spec, only foster incoming nodes if current node is a table foster target</li> <li><a href="https://github.com/jhy/jsoup/commit/41932fe2078f6c7c8414b0c71f65d6aa2d8d9a6d"><code>41932fe</code></a> JDK 17 changelog</li> <li>Additional commits viewable in <a href="https://github.com/jhy/jsoup/compare/jsoup-1.14.2...jsoup-1.14.3">compare view</a></li> </ul> </details> <br /> [](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) </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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
