dependabot[bot] opened a new pull request, #20649: URL: https://github.com/apache/superset/pull/20649
Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 20.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jsdom/jsdom/releases">jsdom's releases</a>.</em></p> <blockquote> <h2>Version 20.0.0</h2> <ul> <li>Node.js v14 is now the minimum supported version.</li> <li>Added <code>crypto.getRandomValues()</code>. (sjrd)</li> <li>Added <code>HTMLFormControlsCollection</code> and <code>RadioNodeList</code>, so <code>formEl.elements</code> now behaves correctly. (UndefinedBehavior)</li> <li>Added the <code>signal</code> option to <code>addEventListener()</code>. (cheap-glitch)</li> <li>Fixed the <code>:root</code> pseudoclass to work correctly. (hughs-ch)</li> <li>Updated <code>parse5</code>, bringing along some HTML parsing and serialization fixes. (fb55)</li> </ul> <h2>Version 19.0.0</h2> <ul> <li>Changed <code>jsdom.nodeLocation()</code> to return <code>undefined</code> when used on nodes that originate via fragment parsing (e.g., via <code>innerHTML</code>). Previously it would return based on the node location of the fragment string, which made node locations unreliable with respect to the original document source. This restores the behavior that was present in v14.0.0, and was accidentally broken in v14.1.0. (bakkot)</li> <li>Fixed calling <code>window.close()</code> inside the <code>Window</code>'s <code>load</code> event to no longer crash. (MattiasBuelens)</li> </ul> <h2>Version 18.1.1</h2> <ul> <li>Fixed <code>connectedCallback</code> to fire in situations involving document fragments, which was broken in v18.0.1. (GrantGryczan)</li> </ul> <h2>Version 18.1.0</h2> <ul> <li>Fixed <code>headers.append()</code> and <code>headers.set()</code> to normalize values. (MattiasBuelens)</li> <li>Fixed <code>pageshow</code> events to have <code>bubbles: true</code> and <code>cancelable: true</code>. (MattiasBuelens)</li> <li>Implemented the <code>reason</code> property on <code>AbortSignal</code>s, along with the corresponding <code>reason</code> argument to <code>abortSignal.abort()</code> and <code>AbortSignal.abort()</code>. (MattiasBuelens)</li> </ul> <h2>Version 18.0.1</h2> <ul> <li>Fixed live <code>Range</code>s to update correctly after calling <code>node.normalize()</code>. (hgiesel)</li> <li>Fixed live <code>Range</code>s to update correctly after removing child nodes. (hgiesel)</li> <li>Fixed setting <code>inputEl.valueAsDate = null</code> to no longer throw an exception, but instead set the value to the empty string. (simon-weimann)</li> <li>Improved performance of node insertion and <code>node.contains()</code>. (GrantGryczan)</li> </ul> <h2>Version 18.0.0</h2> <p>Potentially-breaking bug fixes:</p> <ul> <li>Fixed SSL certificate checking for WebSocket connections. Previously, invalid SSL certificates were always accepted; now, they properly respect the <code>ResourceLoader</code>'s <code>strictSSL</code> option (which defaults to <code>true</code>).</li> <li>Changed the global in which almost all <code>Promise</code> and <code>TypeError</code> instances are created to be the jsdom global, not the Node.js global. This could affect any code that uses <code>instanceof</code>.</li> </ul> <p>Other changes:</p> <ul> <li>Fixed moving an element between HTML and XML documents to reset the <code>tagName</code> cache, allowing it to return a lowercase value once it's in the XML document. (LucasLefevre)</li> <li>Fixed form submission to not happen when the form is invalid. (pozil)</li> </ul> <h2>Version 17.0.0</h2> <p>Breaking change: Node v12 is now the minimum supported version.</p> <h2>Version 16.7.0</h2> <ul> <li>Added <code>AbortSignal.abort()</code>. (ninevra)</li> <li>Added dummy <code>x</code> and <code>y</code> properties to the return value of <code>getBoundingClientRect()</code>. (eiko)</li> <li>Implemented wrapping for <code>textareaEl.value</code> if the <code>wrap=""</code> attribute is specified. (ninevra)</li> <li>Changed newline normalization in <code><textarea></code>s according to <a href="https://blog.whatwg.org/newline-normalizations-in-form-submission">recent HTML Standard updates</a>. (ninevra)</li> <li>Fixed some bad cascade computation in <code>getComputedStyle()</code>. (romain-trotard)</li> </ul> <h2>Version 16.6.0</h2> <ul> <li>Added <code>parentNode.replaceChildren()</code>. (<a href="https://github.com/ninevra"><code>@ninevra</code></a>)</li> <li>Fixed jsdom's handling of when code running inside the jsdom throws <code>null</code> or <code>undefined</code> as an exception. (<a href="https://github.com/mbest"><code>@mbest</code></a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jsdom/jsdom/blob/master/Changelog.md">jsdom's changelog</a>.</em></p> <blockquote> <h2>20.0.0</h2> <ul> <li>Node.js v14 is now the minimum supported version</li> <li>Added <code>crypto.getRandomValues()</code>. (sjrd)</li> <li>Added <code>HTMLFormControlsCollection</code> and <code>RadioNodeList</code>, so <code>formEl.elements</code> now behaves correctly. (UndefinedBehavior)</li> <li>Added the <code>signal</code> option to <code>addEventListener()</code>. (cheap-glitch)</li> <li>Fixed the <code>:root</code> pseudoclass to work correctly. (hughs-ch)</li> <li>Updated <code>parse5</code>, bringing along some HTML parsing and serialization fixes. (fb55)</li> </ul> <h2>19.0.0</h2> <ul> <li>Changed <code>jsdom.nodeLocation()</code> to return <code>undefined</code> when used on nodes that originate via fragment parsing (e.g., via <code>innerHTML</code>). Previously it would return based on the node location of the fragment string, which made node locations unreliable with respect to the original document source. This restores the behavior that was present in v14.0.0, and was accidentally broken in v14.1.0. (bakkot)</li> <li>Fixed calling <code>window.close()</code> inside the <code>Window</code>'s <code>load</code> event to no longer crash. (MattiasBuelens)</li> </ul> <h2>18.1.1</h2> <ul> <li>Fixed <code>connectedCallback</code> to fire in situations involving document fragments, which was broken in v18.0.1. (GrantGryczan)</li> </ul> <h2>18.1.0</h2> <ul> <li>Fixed <code>headers.append()</code> and <code>headers.set()</code> to normalize values. (MattiasBuelens)</li> <li>Fixed <code>pageshow</code> events to have <code>bubbles: true</code> and <code>cancelable: true</code>. (MattiasBuelens)</li> <li>Implemented the <code>reason</code> property on <code>AbortSignal</code>s, along with the corresponding <code>reason</code> argument to <code>abortSignal.abort()</code> and <code>AbortSignal.abort()</code>. (MattiasBuelens)</li> </ul> <h2>18.0.1</h2> <ul> <li>Fixed live <code>Range</code>s to update correctly after calling <code>node.normalize()</code>. (hgiesel)</li> <li>Fixed live <code>Range</code>s to update correctly after removing child nodes. (hgiesel)</li> <li>Fixed setting <code>inputEl.valueAsDate = null</code> to no longer throw an exception, but instead set the value to the empty string. (simon-weimann)</li> <li>Improved performance of node insertion and <code>node.contains()</code>. (GrantGryczan)</li> </ul> <h2>18.0.0</h2> <p>Potentially-breaking bug fixes:</p> <ul> <li>Fixed SSL certificate checking for WebSocket connections. Previously, invalid SSL certificates were always accepted; now, they properly respect the <code>ResourceLoader</code>'s <code>strictSSL</code> option (which defaults to <code>true</code>).</li> <li>Changed the global in which almost all <code>Promise</code> and <code>TypeError</code> instances are created to be the jsdom global, not the Node.js global. This could affect any code that uses <code>instanceof</code>.</li> </ul> <p>Other changes:</p> <ul> <li>Fixed moving an element between HTML and XML documents to reset the <code>tagName</code> cache, allowing it to return a lowercase value once it's in the XML document. (LucasLefevre)</li> <li>Fixed form submission to not happen when the form is invalid. (pozil)</li> </ul> <h2>17.0.0</h2> <p>Breaking change: Node v12 is now the minimum supported version.</p> <h2>16.7.0</h2> <ul> <li>Added <code>AbortSignal.abort()</code>. (ninevra)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsdom/jsdom/commit/6d7ccf2517259fe97b082b363134ea9612800747"><code>6d7ccf2</code></a> Version 20.0.0</li> <li><a href="https://github.com/jsdom/jsdom/commit/28ed5877040f6e7eeddd01975b738c41d8f76329"><code>28ed587</code></a> Implement HTMLFormControlsCollection and RadioNodeList</li> <li><a href="https://github.com/jsdom/jsdom/commit/9fca1df44a2dec72c723b5e1fa53a4f5f8ea684c"><code>9fca1df</code></a> Fix the :root pseudoclass when used in selectors</li> <li><a href="https://github.com/jsdom/jsdom/commit/ebce3fed1ceedb5eca60647fe169c276948af3dd"><code>ebce3fe</code></a> Add the signal option to addEventListener()</li> <li><a href="https://github.com/jsdom/jsdom/commit/136c2c409448aa4c3053a1d23e34fc38eed2c773"><code>136c2c4</code></a> Implement crypto.getRandomValues()</li> <li><a href="https://github.com/jsdom/jsdom/commit/2e355263e5cae2e4647b0956f777c0abd2c62d5b"><code>2e35526</code></a> Update parse5 to 7.0.0</li> <li><a href="https://github.com/jsdom/jsdom/commit/6c1f0585e33afceff2e802867f2abaee1c08f48f"><code>6c1f058</code></a> Update Node.js minimum and dependencies</li> <li><a href="https://github.com/jsdom/jsdom/commit/4c7eed155e421c3b261667b6312d4c89d2a74c1b"><code>4c7eed1</code></a> Revise timer GC test to be more lenient</li> <li><a href="https://github.com/jsdom/jsdom/commit/a604d67995fe5b2b1ce73090d347c23eeed011eb"><code>a604d67</code></a> Version 19.0.0</li> <li><a href="https://github.com/jsdom/jsdom/commit/e46f76f7e311447213a3a3be1526db3d53028ee5"><code>e46f76f</code></a> Fix crash when calling window.close() inside load event listener</li> <li>Additional commits viewable in <a href="https://github.com/jsdom/jsdom/compare/16.4.0...20.0.0">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: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org