You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@annotator.apache.org by GitBox <gi...@apache.org> on 2022/06/24 09:48:56 UTC

[GitHub] [incubator-annotator] dependabot[bot] opened a new pull request, #126: Bump jsdom from 16.2.2 to 16.5.0

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

   Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.2.2 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=&quot;&quot;</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>&lt;input type=checkbox&gt;</code> and <code>&lt;input type=radio&gt;</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=&quot;&quot;</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>&lt;body&gt;</code> element. (eps1lon)</li>
   <li>Fixed <code>imgEl.complete</code> to return true for <code>&lt;img&gt;</code> elements with empty or unset <code>src=&quot;&quot;</code> attributes. (strager)</li>
   <li>Fixed <code>imgEl.complete</code> to return true if an error occurs loading the <code>&lt;img&gt;</code>, when canvas is enabled. (strager)</li>
   <li>Fixed <code>imgEl.complete</code> to return false if the <code>&lt;img&gt;</code> element's <code>src=&quot;&quot;</code> attribute is reset. (strager)</li>
   <li>Fixed the <code>valueMissing</code> validation check for <code>&lt;input type=&quot;radio&quot;&gt;</code>. (zjffun)</li>
   <li>Fixed <code>translate=&quot;&quot;</code> and <code>draggable=&quot;&quot;</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=&quot;&quot;</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>
   </blockquote>
   </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=&quot;&quot;</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>&lt;input type=checkbox&gt;</code> and <code>&lt;input type=radio&gt;</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=&quot;&quot;</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>&lt;body&gt;</code> element. (eps1lon)</li>
   <li>Fixed <code>imgEl.complete</code> to return true for <code>&lt;img&gt;</code> elements with empty or unset <code>src=&quot;&quot;</code> attributes. (strager)</li>
   <li>Fixed <code>imgEl.complete</code> to return true if an error occurs loading the <code>&lt;img&gt;</code>, when canvas is enabled. (strager)</li>
   <li>Fixed <code>imgEl.complete</code> to return false if the <code>&lt;img&gt;</code> element's <code>src=&quot;&quot;</code> attribute is reset. (strager)</li>
   <li>Fixed the <code>valueMissing</code> validation check for <code>&lt;input type=&quot;radio&quot;&gt;</code>. (zjffun)</li>
   <li>Fixed <code>translate=&quot;&quot;</code> and <code>draggable=&quot;&quot;</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=&quot;&quot;</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>
   </blockquote>
   </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/16.2.2...16.5.0">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=16.2.2&new-version=16.5.0)](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/incubator-annotator/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@annotator.apache.org

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


Re: [PR] Bump jsdom from 16.2.2 to 16.5.0 [incubator-annotator]

Posted by "reckart (via GitHub)" <gi...@apache.org>.
reckart commented on PR #126:
URL: https://github.com/apache/incubator-annotator/pull/126#issuecomment-1744799614

   @dependabot rebase


-- 
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@annotator.apache.org

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


Re: [PR] Bump jsdom from 16.2.2 to 16.5.0 [incubator-annotator]

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #126:
URL: https://github.com/apache/incubator-annotator/pull/126#issuecomment-1744800057

   Looks like jsdom is up-to-date now, so this is no longer needed.


-- 
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@annotator.apache.org

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


Re: [PR] Bump jsdom from 16.2.2 to 16.5.0 [incubator-annotator]

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] closed pull request #126: Bump jsdom from 16.2.2 to 16.5.0
URL: https://github.com/apache/incubator-annotator/pull/126


-- 
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@annotator.apache.org

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