dependabot[bot] opened a new pull request, #3389:
URL: https://github.com/apache/tinkerpop/pull/3389

   Bumps [jsdom](https://github.com/jsdom/jsdom) from 26.1.0 to 29.0.2.
   <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>v29.0.2</h2>
   <ul>
   <li>Significantly improved and sped up <code>getComputedStyle()</code>. 
Computed value rules are now applied across a broader set of properties, and 
include fixes related to inheritance, defaulting keywords, custom properties, 
and color-related values such as <code>currentcolor</code> and system colors. 
(<a href="https://github.com/asamuzaK";><code>@​asamuzaK</code></a>)</li>
   <li>Fixed CSS <code>'background</code>' and <code>'border'</code> shorthand 
parsing. (<a 
href="https://github.com/asamuzaK";><code>@​asamuzaK</code></a>)</li>
   </ul>
   <h2>v29.0.1</h2>
   <ul>
   <li>Fixed CSS parsing of <code>'border'</code>, <code>'background'</code>, 
and their sub-shorthands containing keywords or <code>var()</code>. (<a 
href="https://github.com/asamuzaK";><code>@​asamuzaK</code></a>)</li>
   <li>Fixed <code>getComputedStyle()</code> to return a more functional 
<code>CSSStyleDeclaration</code> object, including indexed access support, 
which regressed in v29.0.0.</li>
   </ul>
   <h2>v29.0.0</h2>
   <p>Breaking changes:</p>
   <ul>
   <li>Node.js v22.13.0+ is now the minimum supported v22 version (was 
v22.12.0+).</li>
   </ul>
   <p>Other changes:</p>
   <ul>
   <li>Overhauled the CSSOM implementation, replacing the <a 
href="https://www.npmjs.com/package/@acemir/cssom";><code>@acemir/cssom</code></a>
 and <a href="https://github.com/jsdom/cssstyle";><code>cssstyle</code></a> 
dependencies with fresh internal implementations built on webidl2js wrappers 
and the <a 
href="https://www.npmjs.com/package/css-tree";><code>css-tree</code></a> parser. 
Serialization, parsing, and API behavior is improved in various ways, 
especially around edge cases.</li>
   <li>Added <code>CSSCounterStyleRule</code> and <code>CSSNamespaceRule</code> 
to jsdom <code>Window</code>s.</li>
   <li>Added <code>cssMediaRule.matches</code> and 
<code>cssSupportsRule.matches</code> getters.</li>
   <li>Added proper media query parsing in <code>MediaList</code>, using 
<code>css-tree</code> instead of naive comma-splitting. Invalid queries become 
<code>&quot;not all&quot;</code> per spec.</li>
   <li>Added <code>cssKeyframeRule.keyText</code> getter/setter validation.</li>
   <li>Added <code>cssStyleRule.selectorText</code> setter validation: invalid 
selectors are now rejected.</li>
   <li>Added <code>styleSheet.ownerNode</code>, <code>styleSheet.href</code>, 
and <code>styleSheet.title</code>.</li>
   <li>Added bad port blocking per the <a 
href="https://fetch.spec.whatwg.org/#bad-port";>fetch specification</a>, 
preventing fetches to commonly-abused ports.</li>
   <li>Improved <code>Document</code> initialization performance by lazily 
initializing the CSS selector engine, avoiding ~0.5 ms of overhead per 
<code>Document</code>. (<a 
href="https://github.com/thypon";><code>@​thypon</code></a>)</li>
   <li>Fixed a memory leak when stylesheets were removed from the document.</li>
   <li>Fixed <code>CSSStyleDeclaration</code> modifications to properly trigger 
custom element reactions.</li>
   <li>Fixed nested <code>@media</code> rule parsing.</li>
   <li>Fixed <code>CSSStyleSheet</code>'s &quot;disallow modification&quot; 
flag not being checked in all mutation methods.</li>
   <li>Fixed <code>XMLHttpRequest</code>'s <code>response</code> getter 
returning parsed JSON during the <code>LOADING</code> state instead of 
<code>null</code>.</li>
   <li>Fixed <code>getComputedStyle()</code> crashing in XHTML documents when 
stylesheets contained at-rules such as <code>@page</code> or 
<code>@font-face</code>.</li>
   <li>Fixed a potential hang in synchronous <code>XMLHttpRequest</code> caused 
by a race condition with the worker thread's idle timeout.</li>
   </ul>
   <h2>v28.1.0</h2>
   <ul>
   <li>Added <code>blob.text()</code>, <code>blob.arrayBuffer()</code>, and 
<code>blob.bytes()</code> methods.</li>
   <li>Improved <code>getComputedStyle()</code> to account for CSS specificity 
when multiple rules apply. (<a 
href="https://github.com/asamuzaK";><code>@​asamuzaK</code></a>)</li>
   <li>Improved synchronous <code>XMLHttpRequest</code> performance by using a 
persistent worker thread, avoiding ~400ms of setup overhead on every 
synchronous request after the first one.</li>
   <li>Improved performance of <code>node.getRootNode()</code>, 
<code>node.isConnected</code>, and <code>event.dispatchEvent()</code> by 
caching the root node of document-connected trees.</li>
   <li>Fixed <code>getComputedStyle()</code> to correctly handle 
<code>!important</code> priority. (<a 
href="https://github.com/asamuzaK";><code>@​asamuzaK</code></a>)</li>
   <li>Fixed <code>document.getElementById()</code> to return the first element 
in tree order when multiple elements share the same ID.</li>
   <li>Fixed <code>&lt;svg&gt;</code> elements to no longer incorrectly proxy 
event handlers to the <code>Window</code>.</li>
   <li>Fixed <code>FileReader</code> event timing and 
<code>fileReader.result</code> state to more closely follow the spec.</li>
   <li>Fixed a potential hang when synchronous <code>XMLHttpRequest</code> 
encountered dispatch errors.</li>
   <li>Fixed compatibility with environments where Node.js's built-in 
<code>fetch()</code> has been used before importing jsdom, by working around 
undici v6/v7 incompatibilities.</li>
   </ul>
   <h2>v28.0.0</h2>
   <ul>
   <li>Overhauled resource loading customization. See <a 
href="https://github.com/jsdom/jsdom/blob/2b65c6a80af2c899e32933c5e0cb842164852149/README.md#loading-subresources";>the
 new README</a> for details on the new API.</li>
   <li>Added MIME type sniffing to <code>&lt;iframe&gt;</code> and 
<code>&lt;frame&gt;</code> loads.</li>
   <li>Regression: <code>WebSocket</code>s are no longer correctly throttled to 
one connection per origin. This is a result of the bug at <a 
href="https://redirect.github.com/nodejs/undici/issues/4743";>nodejs/undici#4743</a>.</li>
   <li>Fixed decoding of the query components of <code>&lt;a&gt;</code> and 
<code>&lt;area&gt;</code> elements in non-UTF-8 documents.</li>
   <li>Fixed <code>XMLHttpRequest</code> fetches and <code>WebSocket</code> 
upgrade requests to be interceptable by the new customizable resource loading. 
(Except synchronous <code>XMLHttpRequest</code>s.)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/2a1e2cdb443e276b28ca49937cf7a7d6fa0a4806";><code>2a1e2cd</code></a>
 29.0.2</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/4097d66ba188805a408b5186b4b8036bf582b40f";><code>4097d66</code></a>
 Resolve computed CSS values lazily in CSSStyleDeclaration</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/cf5523ff92978fc08f7e40c0f44053946101d064";><code>cf5523f</code></a>
 Add more test cases for nested color-mix with currentColor</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/b33b61657e563ec841cb7a29c98ad236cc71c0b0";><code>b33b616</code></a>
 Add test that getComputedStyle() works with !important</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/6bf559c416654641d3ca197982d646eac6de85ae";><code>6bf559c</code></a>
 Add test for custom property inheritance in computed styles</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/68176571d00c50441fc3a428e1315fc1fb3b2bab";><code>6817657</code></a>
 Fix border shorthand handling</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/470f5c5943d001f9abf8396734fc0c6f11174784";><code>470f5c5</code></a>
 Consolidate color helpers</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/3db53cb2cb14aef35717cbec75b6bd638b1224a7";><code>3db53cb</code></a>
 Fix background shorthand handlers</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/678e84093ad44b444be6e0317b84396832ff39c6";><code>678e840</code></a>
 Remove some longhand property files</li>
   <li><a 
href="https://github.com/jsdom/jsdom/commit/d526a07432982dcb89597e469c0fb00ba54884bb";><code>d526a07</code></a>
 Add regression test for getComputedStyle() liveness</li>
   <li>Additional commits viewable in <a 
href="https://github.com/jsdom/jsdom/compare/v26.1.0...v29.0.2";>compare 
view</a></li>
   </ul>
   </details>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by [GitHub Actions](<a 
href="https://www.npmjs.com/~GitHub";>https://www.npmjs.com/~GitHub</a> 
Actions), a new releaser for jsdom since your current version.</p>
   </details>
   <details>
   <summary>Install script changes</summary>
   <p>This version modifies <code>prepare</code> script that runs during 
installation. Review the package contents before updating.</p>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jsdom&package-manager=npm_and_yarn&previous-version=26.1.0&new-version=29.0.2)](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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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]

Reply via email to