:alarm_clock: Pomodoro timer built with ReactJS.
Bumps [jsdom](https://github.com/jsdom/jsdom) from 9.12.0 to 16.5.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 16.5.0</h2> <ul> <li>Added <code>window.queueMicrotask()</code>.</li> <li>Added <code>window.event</code>.</li> <li>Added <code>inputEvent.inputType</code>. (diegohaz)</li> <li>Removed <code>ondragexit</code> from <code>Window</code> and friends, per a spec update.</li> <li>Fixed the URL of <code>about:blank</code> iframes. Previously it was getting set to the parent's URL. (SimonMueller)</li> <li>Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.</li> <li>Fixed the <code>hidden=""</code> attribute to cause <code>display: none</code> per the user-agent stylesheet. (ph-fritsche)</li> <li>Fixed the <code>new File()</code> constructor to no longer convert <code>/</code> to <code>:</code>, per <a href="https://github-redirect.dependabot.com/w3c/FileAPI/issues/41">a pending spec update</a>.</li> <li>Fixed mutation observer callbacks to be called with the <code>MutationObserver</code> instance as their <code>this</code> value.</li> <li>Fixed <code><input type=checkbox></code> and <code><input type=radio></code> to be mutable even when disabled, per <a href="https://github-redirect.dependabot.com/whatwg/html/pull/5805">a spec update</a>.</li> <li>Fixed <code>XMLHttpRequest</code> to not fire a redundant final <code>progress</code> event if a <code>progress</code> event was previously fired with the same <code>loaded</code> value. This would usually occur with small files.</li> <li>Fixed <code>XMLHttpRequest</code> to expose the <code>Content-Length</code> header on cross-origin responses.</li> <li>Fixed <code>xhr.response</code> to return <code>null</code> for failures that occur during the middle of the download.</li> <li>Fixed edge cases around passing callback functions or event handlers. (ExE-Boss)</li> <li>Fixed edge cases around the properties of proxy-like objects such as <code>localStorage</code> or <code>dataset</code>. (ExE-Boss)</li> <li>Fixed a potential memory leak with custom elements (although we could not figure out how to trigger it). (soncodi)</li> </ul> <h2>Version 16.4.0</h2> <ul> <li>Added a not-implemented warning if you try to use the second pseudo-element argument to <code>getComputedStyle()</code>, unless you pass a <code>::part</code> or <code>::slotted</code> pseudo-element, in which case we throw an error per the spec. (ExE-Boss)</li> <li>Improved the performance of repeated access to <code>el.tagName</code>, which also indirectly improves performance of selector matching and style computation. (eps1lon)</li> <li>Fixed <code>form.elements</code> to respect the <code>form=""</code> attribute, so that it can contain non-descendant form controls. (ccwebdesign)</li> <li>Fixed <code>el.focus()</code> to do nothing on disconnected elements. (eps1lon)</li> <li>Fixed <code>el.focus()</code> to work on SVG elements. (zjffun)</li> <li>Fixed removing the currently-focused element to move focus to the <code><body></code> element. (eps1lon)</li> <li>Fixed <code>imgEl.complete</code> to return true for <code><img></code> elements with empty or unset <code>src=""</code> attributes. (strager)</li> <li>Fixed <code>imgEl.complete</code> to return true if an error occurs loading the <code><img></code>, when canvas is enabled. (strager)</li> <li>Fixed <code>imgEl.complete</code> to return false if the <code><img></code> element's <code>src=""</code> attribute is reset. (strager)</li> <li>Fixed the <code>valueMissing</code> validation check for <code><input type="radio"></code>. (zjffun)</li> <li>Fixed <code>translate=""</code> and <code>draggable=""</code> attribute processing to use ASCII case-insensitivity, instead of Unicode case-insensitivity. (zjffun)</li> </ul> <h2>Version 16.3.0</h2> <ul> <li>Added firing of <code>focusin</code> and <code>focusout</code> when using <code>el.focus()</code> and <code>el.blur()</code>. (trueadm)</li> <li>Fixed elements with the <code>contenteditable=""</code> attribute to be considered as focusable. (jamieliu386)</li> <li>Fixed <code>window.NodeFilter</code> to be per-<code>Window</code>, instead of shared across all <code>Window</code>s. (ExE-Boss)</li> <li>Fixed edge-case behavior involving use of objects with <code>handleEvent</code> properties as event listeners. (ExE-Boss)</li> <li>Fixed a second failing image load sometimes firing a <code>load</code> event instead of an <code>error</code> event, when the <code>canvas</code> package is installed. (strager)</li> <li>Fixed drawing an empty canvas into another canvas. (zjffun)</li> </ul> <h2>Version 16.2.2</h2> <ul> <li>Updated <code>StyleSheetList</code> for better spec compliance; notably it no longer inherits from <code>Array.prototype</code>. (ExE-Boss)</li> <li>Fixed <code>requestAnimationFrame()</code> from preventing process exit. This likely regressed in v16.1.0.</li> <li>Fixed <code>setTimeout()</code> to no longer leak the closures passed in to it. This likely regressed in v16.1.0. (AviVahl)</li> <li>Fixed infinite recursion that could occur when calling <code>click()</code> on a <code><label></code> element, or one of its descendants.</li> <li>Fixed <code>getComputedStyle()</code> to consider inline <code>style=""</code> attributes. (eps1lon)</li> <li>Fixed several issues with <code><input type="number"></code>'s <code>stepUp()</code> and <code>stepDown()</code> functions to be properly decimal-based, instead of floating point-based.</li> <li>Fixed various issues where updating <code>selectEl.value</code> would not invalidate properties such as <code>selectEl.selectedOptions</code>. (ExE-Boss)</li> <li>Fixed <code><input></code>'s <code>src</code> property, and <code><ins></code>/<code><del></code>'s <code>cite</code> property, to properly reflect as URLs.</li> <li>Fixed <code>window.addEventLister</code>, <code>window.removeEventListener</code>, and <code>window.dispatchEvent</code> to properly be inherited from <code>EventTarget</code>, instead of being distinct functions. (ExE-Boss)</li> <li>Fixed errors that would occur if attempting to use a DOM object, such as a custom element, as an argument to <code>addEventListener</code>.</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>16.5.0</h2> <ul> <li>Added <code>window.queueMicrotask()</code>.</li> <li>Added <code>window.event</code>.</li> <li>Added <code>inputEvent.inputType</code>. (diegohaz)</li> <li>Removed <code>ondragexit</code> from <code>Window</code> and friends, per a spec update.</li> <li>Fixed the URL of <code>about:blank</code> iframes. Previously it was getting set to the parent's URL. (SimonMueller)</li> <li>Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.</li> <li>Fixed the <code>hidden=""</code> attribute to cause <code>display: none</code> per the user-agent stylesheet. (ph-fritsche)</li> <li>Fixed the <code>new File()</code> constructor to no longer convert <code>/</code> to <code>:</code>, per <a href="https://github-redirect.dependabot.com/w3c/FileAPI/issues/41">a pending spec update</a>.</li> <li>Fixed mutation observer callbacks to be called with the <code>MutationObserver</code> instance as their <code>this</code> value.</li> <li>Fixed <code><input type=checkbox></code> and <code><input type=radio></code> to be mutable even when disabled, per <a href="https://github-redirect.dependabot.com/whatwg/html/pull/5805">a spec update</a>.</li> <li>Fixed <code>XMLHttpRequest</code> to not fire a redundant final <code>progress</code> event if a <code>progress</code> event was previously fired with the same <code>loaded</code> value. This would usually occur with small files.</li> <li>Fixed <code>XMLHttpRequest</code> to expose the <code>Content-Length</code> header on cross-origin responses.</li> <li>Fixed <code>xhr.response</code> to return <code>null</code> for failures that occur during the middle of the download.</li> <li>Fixed edge cases around passing callback functions or event handlers. (ExE-Boss)</li> <li>Fixed edge cases around the properties of proxy-like objects such as <code>localStorage</code> or <code>dataset</code>. (ExE-Boss)</li> <li>Fixed a potential memory leak with custom elements (although we could not figure out how to trigger it). (soncodi)</li> </ul> <h2>16.4.0</h2> <ul> <li>Added a not-implemented warning if you try to use the second pseudo-element argument to <code>getComputedStyle()</code>, unless you pass a <code>::part</code> or <code>::slotted</code> pseudo-element, in which case we throw an error per the spec. (ExE-Boss)</li> <li>Improved the performance of repeated access to <code>el.tagName</code>, which also indirectly improves performance of selector matching and style computation. (eps1lon)</li> <li>Fixed <code>form.elements</code> to respect the <code>form=""</code> attribute, so that it can contain non-descendant form controls. (ccwebdesign)</li> <li>Fixed <code>el.focus()</code> to do nothing on disconnected elements. (eps1lon)</li> <li>Fixed <code>el.focus()</code> to work on SVG elements. (zjffun)</li> <li>Fixed removing the currently-focused element to move focus to the <code><body></code> element. (eps1lon)</li> <li>Fixed <code>imgEl.complete</code> to return true for <code><img></code> elements with empty or unset <code>src=""</code> attributes. (strager)</li> <li>Fixed <code>imgEl.complete</code> to return true if an error occurs loading the <code><img></code>, when canvas is enabled. (strager)</li> <li>Fixed <code>imgEl.complete</code> to return false if the <code><img></code> element's <code>src=""</code> attribute is reset. (strager)</li> <li>Fixed the <code>valueMissing</code> validation check for <code><input type="radio"></code>. (zjffun)</li> <li>Fixed <code>translate=""</code> and <code>draggable=""</code> attribute processing to use ASCII case-insensitivity, instead of Unicode case-insensitivity. (zjffun)</li> </ul> <h2>16.3.0</h2> <ul> <li>Added firing of <code>focusin</code> and <code>focusout</code> when using <code>el.focus()</code> and <code>el.blur()</code>. (trueadm)</li> <li>Fixed elements with the <code>contenteditable=""</code> attribute to be considered as focusable. (jamieliu386)</li> <li>Fixed <code>window.NodeFilter</code> to be per-<code>Window</code>, instead of shared across all <code>Window</code>s. (ExE-Boss)</li> <li>Fixed edge-case behavior involving use of objects with <code>handleEvent</code> properties as event listeners. (ExE-Boss)</li> <li>Fixed a second failing image load sometimes firing a <code>load</code> event instead of an <code>error</code> event, when the <code>canvas</code> package is installed. (strager)</li> <li>Fixed drawing an empty canvas into another canvas. (zjffun)</li> </ul> <h2>16.2.2</h2> <ul> <li>Updated <code>StyleSheetList</code> for better spec compliance; notably it no longer inherits from <code>Array.prototype</code>. (ExE-Boss)</li> <li>Fixed <code>requestAnimationFrame()</code> from preventing process exit. This likely regressed in v16.1.0.</li> <li>Fixed <code>setTimeout()</code> to no longer leak the closures passed in to it. This likely regressed in v16.1.0. (AviVahl)</li> <li>Fixed infinite recursion that could occur when calling <code>click()</code> on a <code><label></code> element, or one of its descendants.</li> <li>Fixed <code>getComputedStyle()</code> to consider inline <code>style=""</code> attributes. (eps1lon)</li> <li>Fixed several issues with <code><input type="number"></code>'s <code>stepUp()</code> and <code>stepDown()</code> functions to be properly decimal-based, instead of floating point-based.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsdom/jsdom/commit/2d82763248296c5f118d6fd890317f5db5de1635"><code>2d82763</code></a> Version 16.5.0</li> <li><a href="https://github.com/jsdom/jsdom/commit/974131176b7f35d311fd18d6a06f5173f06cc363"><code>9741311</code></a> Fix loading of subresources with Unicode filenames</li> <li><a href="https://github.com/jsdom/jsdom/commit/5e465535081b6354ef82a28ae62a246aee6cf684"><code>5e46553</code></a> Use domenic's ESLint config as the base</li> <li><a href="https://github.com/jsdom/jsdom/commit/19b35dad40eb5e98ab47c13ba4207d4e0676899d"><code>19b35da</code></a> Fix the URL of about:blank iframes</li> <li><a href="https://github.com/jsdom/jsdom/commit/017568e4fbd8d10ebc17df7cad1acb358ef3c938"><code>017568e</code></a> Support inputType on InputEvent</li> <li><a href="https://github.com/jsdom/jsdom/commit/29f4fdf4912f8f4cb9d84dc5f7b0181e6e557d65"><code>29f4fdf</code></a> Upgrade dependencies</li> <li><a href="https://github.com/jsdom/jsdom/commit/e2f76393e4e100d806659ae8f42c664f6d170760"><code>e2f7639</code></a> Refactor create‑event‑accessor.js to remove code duplication</li> <li><a href="https://github.com/jsdom/jsdom/commit/ff69a75706eac5ef90d9eb46aedd90a14e29984c"><code>ff69a75</code></a> Convert JSDOM to use callback functions</li> <li><a href="https://github.com/jsdom/jsdom/commit/19df6bc9a52f3018ba555fa51a3f2ac84dc84bd6"><code>19df6bc</code></a> Update links in contributing guidelines</li> <li><a href="https://github.com/jsdom/jsdom/commit/1e34ff52020e3f3711f9367fa651615c645cf4d3"><code>1e34ff5</code></a> Test triage</li> <li>Additional commits viewable in <a href="https://github.com/jsdom/jsdom/compare/9.12.0...16.5.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) - `@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/afonsopacifer/react-pomodoro/network/alerts). </details>
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by dependabot[bot] and has received 0 comments.