dependabot[bot] opened a new pull request, #353:
URL: https://github.com/apache/incubator-flagon-useralejs/pull/353

   Bumps [jsdom](https://github.com/jsdom/jsdom) from 19.0.0 to 21.1.1.
   <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 21.1.1</h2>
   <ul>
   <li>Fixed <code>jsdom.reconfigure()</code> to also adjust the URL as seen by 
the history API, so that e.g. <code>history.replaceState(null, 
&quot;&quot;)</code> would not mess up the URL. (jdufresne)</li>
   <li>Fixed <code>location.hash = &quot;&quot;</code> to leave any 
<code>#</code> in location.href.</li>
   <li>Fixes a few bugs with CSS parsing by replacing <code>cssom</code> with 
<code>rweb-cssom</code>, since the latter is maintained. (seanparmelee)</li>
   </ul>
   <h2>Version 21.1.0</h2>
   <ul>
   <li>Added <code>x</code>, <code>y</code>, <code>pageX</code>, 
<code>pageY</code>, <code>offsetX</code>, and <code>offsetY</code> to 
<code>MouseEvent</code>. (jenseng, ViniciusFXavier)</li>
   <li>Added support for <code>unset</code> with 
<code>getComputedStyle()</code>. (jsnajdr)</li>
   <li>Added the <code>submitter</code> property to <code>SubmitEvent</code>. 
(jenseng)</li>
   <li>Fixed <code>MouseEvent</code>'s <code>screenX</code> and 
<code>screenY</code> to no longer coerce to integers, allowing fractional 
values. (jenseng)</li>
   <li>Fixed <code>formEl.submit()</code> to not longer fire 
<code>submit</code> events. (jenseng)</li>
   <li>Fixed stylesheets to no longer affect the document after their 
corresponding <code>&lt;link&gt;</code> is removed. (jsnajdr)</li>
   <li>Fixed <code>pointer-events</code> to inherit when used with 
<code>getComputedStyle()</code>. (jsnajdr)</li>
   <li>Fixed <code>&lt;script&gt;</code> elements with no 
<code>src=&quot;&quot;</code> to no longer fire <code>load</code> events. 
(t1ger2080)</li>
   <li>Improved <code>getComputedStyle()</code> to cache its results, which 
should make it much faster. (jsnajdr)</li>
   </ul>
   <h2>Version 21.0.0</h2>
   <p>A potentially-breaking bug fix:</p>
   <ul>
   <li>Fixed the <code>window</code>, <code>document</code>, 
<code>location</code>, and <code>top</code> properties of <code>Window</code> 
to be non-configurable. (ExE-Boss)</li>
   </ul>
   <p>Other changes:</p>
   <ul>
   <li>Added support for <code>&lt;input type=image&gt;</code> submitting 
forms. (jenseng)</li>
   <li>Added the <code>location</code> setter to the <code>Window</code> 
object, which forwards to the <code>location.href</code> setter. Setting the 
URL is still only implemented for fragment navigations, however. (ExE-Boss)</li>
   <li>Fixed <code>defer=&quot;&quot;</code> <code>&lt;script&gt;</code> 
elements that are added after <code>DOMContentLoaded</code> to execute, instead 
of being skipped.</li>
   <li>Fixed <code>selectElement.selectedOptions</code> being incorrect when 
<code>optionElement.selected</code> is set. This was a regression introduced in 
v20.0.1. Unfortunately this also reverts the performance improvement when 
appending <code>&lt;option&gt;</code> elements that was introduced then. 
(eps1lon)</li>
   <li>Fixed the <code>self</code>, <code>locationbar</code>, 
<code>menubar</code>, <code>personalbar</code>, <code>scrollbars</code>, 
<code>statusbar</code>, <code>toolbar</code>, <code>frames</code>, 
<code>parent</code>, <code>external</code>, <code>length</code>, and 
<code>screen</code> properties of <code>Window</code> to be replaceable: that 
is, setting them will override their values, instead of having the new value be 
ignored. (ExE-Boss)</li>
   <li>Fixed a few issues with <code>JSDOM.fromURL()</code> in the browser 
build of jsdom. (LungZeno)</li>
   </ul>
   <h2>Version 20.0.3</h2>
   <ul>
   <li>Updated dependencies, notably <code>w3c-xmlserializer</code>, which 
fixes using <code>DOMParser</code> on XML documents containing emoji.</li>
   </ul>
   <h2>Version 20.0.2</h2>
   <ul>
   <li>Fixed <code>xhr.abort()</code> to no longer give an exception when the 
constructed <code>XMLHttpRequest</code> was invalid. (whamtet)</li>
   <li>Fixed <code>event.getModifierState()</code> on <code>MouseEvent</code> 
and <code>KeyboardEvent</code> instances to properly consult the 
<code>ctrlKey</code>, <code>altKey</code>, <code>metaKey</code>, and 
<code>shiftKey</code> properties of the event. (juzerzarif)</li>
   <li>Fixed custom element creation to not be affected by any modifications to 
the <code>window.customElements</code> property. (bicknellr)</li>
   </ul>
   <h2>Version 20.0.1</h2>
   <ul>
   <li>Improved the performance of appending <code>&lt;option&gt;</code> 
elements to <code>&lt;select&gt;</code> elements. (TheHound)</li>
   <li>Fixed <code>location.pathname</code> getter to not crash when the 
<code>JSDOM</code> instance was created using an opaque-path URL, including the 
default URL of <code>about:blank</code>.</li>
   <li>Fixed <code>crypto.getRandomValues()</code> to accept typed array 
subclasses. (sebamarynissen)</li>
   <li>Updated various dependency minor versions. Notably, <code>nwsapi</code> 
fixed some selectors bugs, and <code>tough-cookie</code> fixed some cookie 
bugs.</li>
   </ul>
   <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>
   </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>21.1.1</h2>
   <ul>
   <li>Fixed <code>jsdom.reconfigure()</code> to also adjust the URL as seen by 
the history API, so that e.g. <code>history.replaceState(null, 
&quot;&quot;)</code> would not mess up the URL. (jdufresne)</li>
   <li>Fixed <code>location.hash = &quot;&quot;</code> to leave any 
<code>#</code> in location.href.</li>
   <li>Fixes a few bugs with CSS parsing by replacing <code>cssom</code> with 
<code>rweb-cssom</code>, since the latter is maintained. (seanparmelee)</li>
   </ul>
   <h2>21.1.0</h2>
   <ul>
   <li>Added <code>x</code>, <code>y</code>, <code>pageX</code>, 
<code>pageY</code>, <code>offsetX</code>, and <code>offsetY</code> to 
<code>MouseEvent</code>. (jenseng, ViniciusFXavier)</li>
   <li>Added support for <code>unset</code> with 
<code>getComputedStyle()</code>. (jsnajdr)</li>
   <li>Added the <code>submitter</code> property to <code>SubmitEvent</code>. 
(jenseng)</li>
   <li>Fixed <code>MouseEvent</code>'s <code>screenX</code> and 
<code>screenY</code> to no longer coerce to integers, allowing fractional 
values. (jenseng)</li>
   <li>Fixed <code>formEl.submit()</code> to not longer fire 
<code>submit</code> events. (jenseng)</li>
   <li>Fixed stylesheets to no longer affect the document after their 
corresponding <code>&lt;link&gt;</code> is removed. (jsnajdr)</li>
   <li>Fixed <code>pointer-events</code> to inherit when used with 
<code>getComputedStyle()</code>. (jnajdr)</li>
   <li>Fixed <code>&lt;script&gt;</code> elements with no 
<code>src=&quot;&quot;</code> to no longer fire <code>load</code> events. 
(t1ger2080)</li>
   <li>Improved <code>getComputedStyle()</code> to cache its results, which 
should make it much faster. (jsnajdr)</li>
   </ul>
   <h2>21.0.0</h2>
   <p>A potentially-breaking bug fix:</p>
   <ul>
   <li>Fixed the <code>window</code>, <code>document</code>, 
<code>location</code>, and <code>top</code> properties of <code>Window</code> 
to be non-configurable. (ExE-Boss)</li>
   </ul>
   <p>Other changes:</p>
   <ul>
   <li>Added support for <code>&lt;input type=image&gt;</code> submitting 
forms. (jenseng)</li>
   <li>Added the <code>location</code> setter to the <code>Window</code> 
object, which forwards to the <code>location.href</code> setter. Setting the 
URL is still only implemented for fragment navigations, however. (ExE-Boss)</li>
   <li>Fixed <code>defer=&quot;&quot;</code> <code>&lt;script&gt;</code> 
elements that are added after <code>DOMContentLoaded</code> to execute, instead 
of being skipped.</li>
   <li>Fixed <code>selectElement.selectedOptions</code> being incorrect when 
<code>optionElement.selected</code> is set. This was a regression introduced in 
v20.0.1. Unfortunately this also reverts the performance improvement when 
appending <code>&lt;option&gt;</code> elements that was introduced then. 
(eps1lon)</li>
   <li>Fixed the <code>self</code>, <code>locationbar</code>, 
<code>menubar</code>, <code>personalbar</code>, <code>scrollbars</code>, 
<code>statusbar</code>, <code>toolbar</code>, <code>frames</code>, 
<code>parent</code>, <code>external</code>, <code>length</code>, and 
<code>screen</code> properties of <code>Window</code> to be replaceable: that 
is, setting them will override their values, instead of having the new value be 
ignored. (ExE-Boss)</li>
   <li>Fixed a few issues with <code>JSDOM.fromURL()</code> in the browser 
build of jsdom. (LungZeno)</li>
   </ul>
   <h2>20.0.3</h2>
   <ul>
   <li>Updated dependencies, notably <code>w3c-xmlserializer</code>, which 
fixes using <code>DOMParser</code> on XML documents containing emoji.</li>
   </ul>
   <h2>20.0.2</h2>
   <ul>
   <li>Fixed <code>xhr.abort()</code> to no longer give an exception when the 
constructed <code>XMLHttpRequest</code> was invalid. (whamtet)</li>
   <li>Fixed <code>event.getModifierState()</code> on <code>MouseEvent</code> 
and <code>KeyboardEvent</code> instances to properly consult the 
<code>ctrlKey</code>, <code>altKey</code>, <code>metaKey</code>, and 
<code>shiftKey</code> properties of the event. (juzerzarif)</li>
   <li>Fixed custom element creation to not be affected by any modifications to 
the <code>window.customElements</code> property. (bicknellr)</li>
   </ul>
   <h2>20.0.1</h2>
   <ul>
   <li>Improved the performance of appending <code>&lt;option&gt;</code> 
elements to <code>&lt;select&gt;</code> elements. (TheHound)</li>
   <li>Fixed <code>location.pathname</code> getter to not crash when the 
<code>JSDOM</code> instance was created using an opaque-path URL, including the 
default URL of <code>about:blank</code>.</li>
   <li>Fixed <code>crypto.getRandomValues()</code> to accept typed array 
subclasses. (sebamarynissen)</li>
   <li>Updated various dependency minor versions. Notably, <code>nwsapi</code> 
fixed some selectors bugs, and <code>tough-cookie</code> fixed some cookie 
bugs.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/31cfdd4541e0cc83c2be9b105fda41bc188f72cd";><code>31cfdd4</code></a>
 Version 21.1.1</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/946050adc0ed2e01ea2e500f8b50fc8a32e40265";><code>946050a</code></a>
 Update dependencies and dev dependencies</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/0e7b488e124f4574144091205a46bb9c3164f018";><code>0e7b488</code></a>
 Fix location.hash setter with the empty string input</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/7b15dc815cd742134958b99a97c3cc125eab5560";><code>7b15dc8</code></a>
 Make reconfigure() adjust the history API too</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/65ef06f3771a33dcbf7bef442fdc7e07816d008d";><code>65ef06f</code></a>
 Update web-platform-tests</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/5a4f77d4d9daf5d4cd52094449f70678f7b7d420";><code>5a4f77d</code></a>
 Replace cssom with rweb-cssom</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/a5a7d34e6e4c89804d806c0a312bf454e2cae905";><code>a5a7d34</code></a>
 Fix changelog typo</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/8e3a568d504353270691b5955af505155ae368bf";><code>8e3a568</code></a>
 Version 21.1.0</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/026ceb5c1ed4196b4fd43294e1f83afc2f02e559";><code>026ceb5</code></a>
 Do not fire &quot;load&quot; on &lt;script&gt; without src=&quot;&quot;</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/a5204dfb3853120c0460dd0ad89237acfaf650ca";><code>a5204df</code></a>
 Add inheritance for pointer-events to getComputedStyle()</li>
   <li>Additional commits viewable in <a 
href="https://github.com/jsdom/jsdom/compare/19.0.0...21.1.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jsdom&package-manager=npm_and_yarn&previous-version=19.0.0&new-version=21.1.1)](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: dev-unsubscr...@flagon.apache.org

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

Reply via email to