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

   Updates the requirements on 
[jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) to permit the 
latest version.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/jestjs/jest/releases";>jest's 
releases</a>.</em></p>
   <blockquote>
   <h2>v30.4.0</h2>
   <p>Big release! 😀</p>
   <p>Main feature is a rewrite of our custom runtime in preparation for 
stabilisation of native support of ESM. As part of that work 
<code>require(esm)</code> module is now supported on Node 24.9+ (still requires 
<code>--experimental-vm-modules</code> like before).</p>
   <p>In addition we now support fake timers for the recently released 
<code>Temporal</code> API in Node v26.</p>
   <p>React 19 is also supported properly in <code>pretty-format</code>, 
meaning snapshots of React components now work like they should.</p>
   <p>Due to all the changes, there might be regressions that snuck in. Please 
report them!</p>
   <p>Full list of changes below</p>
   <h2>Features</h2>
   <ul>
   <li><code>[babel-jest]</code> Support collecting coverage from 
<code>.mts</code>, <code>.cts</code> (and other) files (<a 
href="https://redirect.github.com/jestjs/jest/pull/15994";>#15994</a>)</li>
   <li><code>[jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, 
jest-types]</code> Add <code>--collect-tests</code> flag to discover and list 
tests without executing them (<a 
href="https://redirect.github.com/jestjs/jest/pull/16006";>#16006</a>)</li>
   <li><code>[jest-config, jest-runner, jest-worker]</code> Add 
<code>workerGracefulExitTimeout</code> config option to control how long 
workers are given to exit before being force-killed (<a 
href="https://redirect.github.com/jestjs/jest/pull/15984";>#15984</a>)</li>
   <li><code>[jest-config]</code> Add support for <code>jest.config.mts</code> 
as a valid configuration file (<a 
href="https://redirect.github.com/jestjs/jest/pull/16005";>#16005</a>)</li>
   <li><code>[jest-config, jest-core, jest-reporters, jest-runner]</code> 
<code>verbose</code> and <code>silent</code> can now be set per-project; the 
project-level value overrides the global value for that project's tests (<a 
href="https://redirect.github.com/jestjs/jest/pull/16133";>#16133</a>)</li>
   <li><code>[@jest/fake-timers]</code> Accept <code>Temporal.Duration</code> 
in <code>jest.advanceTimersByTime()</code> and 
<code>jest.advanceTimersByTimeAsync()</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16128";>#16128</a>)</li>
   <li><code>[@jest/fake-timers]</code> Accept <code>Temporal.Instant</code> 
and <code>Temporal.ZonedDateTime</code> in <code>jest.setSystemTime()</code> 
and <code>useFakeTimers({now})</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16128";>#16128</a>)</li>
   <li><code>[@jest/fake-timers]</code> Support faking 
<code>Temporal.Now.*</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16131";>#16131</a>)</li>
   <li><code>[jest-mock]</code> Add <code>clearMocksOnScope(scope)</code> on 
<code>ModuleMocker</code> for clearing every mock function exposed on a scope 
object (<a 
href="https://redirect.github.com/jestjs/jest/pull/16088";>#16088</a>)</li>
   <li><code>[jest-resolve]</code> Add <code>canResolveSync()</code> on 
<code>Resolver</code> so callers can detect when a user-configured resolver 
only exports an <code>async</code> hook (<a 
href="https://redirect.github.com/jestjs/jest/pull/16064";>#16064</a>)</li>
   <li><code>[jest-runtime]</code> Use synchronous <code>evaluate()</code> for 
ES modules without top-level <code>await</code> on Node versions that support 
it (v24.9+), and prefer the synchronous transform path when a sync transformer 
is configured (<a 
href="https://redirect.github.com/jestjs/jest/pull/16062";>#16062</a>)</li>
   <li><code>[jest-runtime]</code> Support <code>require()</code> of ES modules 
on Node v24.9+ (<a 
href="https://redirect.github.com/jestjs/jest/pull/16074";>#16074</a>)</li>
   <li><code>[jest-runtime]</code> Validate TC39 import attributes (<code>with 
{ type: 'json' }</code>) on ESM imports (<a 
href="https://redirect.github.com/jestjs/jest/pull/16127";>#16127</a>)</li>
   <li><code>[@jest/transform]</code> Add 
<code>canTransformSync(filename)</code> on <code>ScriptTransformer</code> so 
callers can pick the sync vs async transform path (<a 
href="https://redirect.github.com/jestjs/jest/pull/16062";>#16062</a>)</li>
   <li><code>[jest-util]</code> Add <code>isError</code> helper (<a 
href="https://redirect.github.com/jestjs/jest/pull/16076";>#16076</a>)</li>
   <li><code>[pretty-format]</code> Support React 19 (<a 
href="https://redirect.github.com/jestjs/jest/pull/16123";>#16123</a>)</li>
   </ul>
   <h2>Fixes</h2>
   <ul>
   <li><code>[expect-utils]</code> Fix <code>toStrictEqual</code> failing on 
<code>structuredClone</code> results due to cross-realm constructor mismatch 
(<a href="https://redirect.github.com/jestjs/jest/pull/15959";>#15959</a>)</li>
   <li><code>[@jest/expect-utils]</code> Prevent 
<code>toMatchObject</code>/subset matching from throwing when encountering 
exotic iterables (<a 
href="https://redirect.github.com/jestjs/jest/pull/15952";>#15952</a>)</li>
   <li><code>[fake-timers]</code> Convert <code>Date</code> to milliseconds 
before passing to <code>@sinonjs/fake-timers</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16029";>#16029</a>)</li>
   <li><code>[jest]</code> Export <code>GlobalConfig</code> and 
<code>ProjectConfig</code> TypeScript types (<a 
href="https://redirect.github.com/jestjs/jest/pull/16132";>#16132</a>)</li>
   <li><code>[jest-circus]</code> Prevent crash when <code>asyncError</code> is 
undefined for non-Error throws (<a 
href="https://redirect.github.com/jestjs/jest/pull/16003";>#16003</a>)</li>
   <li><code>[jest-circus, jest-jasmine2]</code> Include 
<code>Error.cause</code> in JSON <code>failureMessages</code> output (<a 
href="https://redirect.github.com/jestjs/jest/pull/15967";>#15967</a>)</li>
   <li><code>[jest-config]</code> Fix preset path resolution on Windows when 
the preset uses subpath <code>exports</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/15961";>#15961</a>)</li>
   <li><code>[jest-config]</code> Allow <code>collectCoverage</code> and 
<code>coverageProvider</code> in project config without a validation warning 
(<a href="https://redirect.github.com/jestjs/jest/pull/16132";>#16132</a>)</li>
   <li><code>[jest-config]</code> Project config validator now emits &quot;is 
not supported in an individual project configuration&quot; instead of 
&quot;probably a typing mistake&quot; for known global-only options (<a 
href="https://redirect.github.com/jestjs/jest/pull/16132";>#16132</a>)</li>
   <li><code>[jest-environment-node]</code> Fix 
<code>--localstorage-file</code> warning on Node 25+ (<a 
href="https://redirect.github.com/jestjs/jest/pull/16086";>#16086</a>)</li>
   <li><code>[jest-reporters]</code> Apply global coverage threshold to 
unmatched pattern files in addition to glob/path thresholds (<a 
href="https://redirect.github.com/jestjs/jest/pull/16137";>#16137</a>)</li>
   <li><code>[jest-reporters, jest-runner, jest-runtime, jest-transform]</code> 
Fix coverage report not showing correct code coverage when using 
<code>projects</code> config option (<a 
href="https://redirect.github.com/jestjs/jest/pull/16140";>#16140</a>)</li>
   <li><code>[jest-runtime]</code> Resolve <code>expect</code> and 
<code>@jest/expect</code> from the internal module registry so test-file 
imports share the same <code>JestAssertionError</code> as the global 
<code>expect</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16130";>#16130</a>)</li>
   <li><code>[jest-runtime]</code> Improve CJS-from-ESM interop: 
<code>__esModule</code>/Babel default unwrap, broader named-export coverage, 
and shared CJS singleton across importers (<a 
href="https://redirect.github.com/jestjs/jest/pull/16050";>#16050</a>)</li>
   <li><code>[jest-runtime]</code> Load <code>.js</code> files with ESM syntax 
but no <code>&quot;type&quot;:&quot;module&quot;</code> marker as native ESM 
(<a href="https://redirect.github.com/jestjs/jest/pull/16050";>#16050</a>)</li>
   <li><code>[jest-runtime]</code> Extend the <code>.js</code>-with-ESM-syntax 
fallback to <code>require()</code> on Node v24.9+ - falls back to 
<code>require(esm)</code> when the CJS parser rejects ESM syntax (<a 
href="https://redirect.github.com/jestjs/jest/pull/16078";>#16078</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/jestjs/jest/blob/main/CHANGELOG.md";>jest's 
changelog</a>.</em></p>
   <blockquote>
   <h2>30.4.0</h2>
   <h3>Features</h3>
   <ul>
   <li><code>[babel-jest]</code> Support collecting coverage from 
<code>.mts</code>, <code>.cts</code> (and other) files (<a 
href="https://redirect.github.com/jestjs/jest/pull/15994";>#15994</a>)</li>
   <li><code>[jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, 
jest-types]</code> Add <code>--collect-tests</code> flag to discover and list 
tests without executing them (<a 
href="https://redirect.github.com/jestjs/jest/pull/16006";>#16006</a>)</li>
   <li><code>[jest-config, jest-runner, jest-worker]</code> Add 
<code>workerGracefulExitTimeout</code> config option to control how long 
workers are given to exit before being force-killed (<a 
href="https://redirect.github.com/jestjs/jest/pull/15984";>#15984</a>)</li>
   <li><code>[jest-config]</code> Add support for <code>jest.config.mts</code> 
as a valid configuration file (<a 
href="https://redirect.github.com/jestjs/jest/pull/16005";>#16005</a>)</li>
   <li><code>[jest-config, jest-core, jest-reporters, jest-runner]</code> 
<code>verbose</code> and <code>silent</code> can now be set per-project; the 
project-level value overrides the global value for that project's tests (<a 
href="https://redirect.github.com/jestjs/jest/pull/16133";>#16133</a>)</li>
   <li><code>[@jest/fake-timers]</code> Accept <code>Temporal.Duration</code> 
in <code>jest.advanceTimersByTime()</code> and 
<code>jest.advanceTimersByTimeAsync()</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16128";>#16128</a>)</li>
   <li><code>[@jest/fake-timers]</code> Accept <code>Temporal.Instant</code> 
and <code>Temporal.ZonedDateTime</code> in <code>jest.setSystemTime()</code> 
and <code>useFakeTimers({now})</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16128";>#16128</a>)</li>
   <li><code>[@jest/fake-timers]</code> Support faking 
<code>Temporal.Now.*</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16131";>#16131</a>)</li>
   <li><code>[jest-mock]</code> Add <code>clearMocksOnScope(scope)</code> on 
<code>ModuleMocker</code> for clearing every mock function exposed on a scope 
object (<a 
href="https://redirect.github.com/jestjs/jest/pull/16088";>#16088</a>)</li>
   <li><code>[jest-resolve]</code> Add <code>canResolveSync()</code> on 
<code>Resolver</code> so callers can detect when a user-configured resolver 
only exports an <code>async</code> hook (<a 
href="https://redirect.github.com/jestjs/jest/pull/16064";>#16064</a>)</li>
   <li><code>[jest-runtime]</code> Use synchronous <code>evaluate()</code> for 
ES modules without top-level <code>await</code> on Node versions that support 
it (v24.9+), and prefer the synchronous transform path when a sync transformer 
is configured (<a 
href="https://redirect.github.com/jestjs/jest/pull/16062";>#16062</a>)</li>
   <li><code>[jest-runtime]</code> Support <code>require()</code> of ES modules 
on Node v24.9+ (<a 
href="https://redirect.github.com/jestjs/jest/pull/16074";>#16074</a>)</li>
   <li><code>[jest-runtime]</code> Validate TC39 import attributes (<code>with 
{ type: 'json' }</code>) on ESM imports (<a 
href="https://redirect.github.com/jestjs/jest/pull/16127";>#16127</a>)</li>
   <li><code>[@jest/transform]</code> Add 
<code>canTransformSync(filename)</code> on <code>ScriptTransformer</code> so 
callers can pick the sync vs async transform path (<a 
href="https://redirect.github.com/jestjs/jest/pull/16062";>#16062</a>)</li>
   <li><code>[jest-util]</code> Add <code>isError</code> helper (<a 
href="https://redirect.github.com/jestjs/jest/pull/16076";>#16076</a>)</li>
   <li><code>[pretty-format]</code> Support React 19 (<a 
href="https://redirect.github.com/jestjs/jest/pull/16123";>#16123</a>)</li>
   </ul>
   <h3>Fixes</h3>
   <ul>
   <li><code>[expect-utils]</code> Fix <code>toStrictEqual</code> failing on 
<code>structuredClone</code> results due to cross-realm constructor mismatch 
(<a href="https://redirect.github.com/jestjs/jest/pull/15959";>#15959</a>)</li>
   <li><code>[@jest/expect-utils]</code> Prevent 
<code>toMatchObject</code>/subset matching from throwing when encountering 
exotic iterables (<a 
href="https://redirect.github.com/jestjs/jest/pull/15952";>#15952</a>)</li>
   <li><code>[fake-timers]</code> Convert <code>Date</code> to milliseconds 
before passing to <code>@sinonjs/fake-timers</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16029";>#16029</a>)</li>
   <li><code>[jest]</code> Export <code>GlobalConfig</code> and 
<code>ProjectConfig</code> TypeScript types (<a 
href="https://redirect.github.com/jestjs/jest/pull/16132";>#16132</a>)</li>
   <li><code>[jest-circus]</code> Prevent crash when <code>asyncError</code> is 
undefined for non-Error throws (<a 
href="https://redirect.github.com/jestjs/jest/pull/16003";>#16003</a>)</li>
   <li><code>[jest-circus, jest-jasmine2]</code> Include 
<code>Error.cause</code> in JSON <code>failureMessages</code> output (<a 
href="https://redirect.github.com/jestjs/jest/pull/15967";>#15967</a>)</li>
   <li><code>[jest-config]</code> Fix preset path resolution on Windows when 
the preset uses subpath <code>exports</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/15961";>#15961</a>)</li>
   <li><code>[jest-config]</code> Allow <code>collectCoverage</code> and 
<code>coverageProvider</code> in project config without a validation warning 
(<a href="https://redirect.github.com/jestjs/jest/pull/16132";>#16132</a>)</li>
   <li><code>[jest-config]</code> Project config validator now emits &quot;is 
not supported in an individual project configuration&quot; instead of 
&quot;probably a typing mistake&quot; for known global-only options (<a 
href="https://redirect.github.com/jestjs/jest/pull/16132";>#16132</a>)</li>
   <li><code>[jest-environment-node]</code> Fix 
<code>--localstorage-file</code> warning on Node 25+ (<a 
href="https://redirect.github.com/jestjs/jest/pull/16086";>#16086</a>)</li>
   <li><code>[jest-reporters]</code> Apply global coverage threshold to 
unmatched pattern files in addition to glob/path thresholds (<a 
href="https://redirect.github.com/jestjs/jest/pull/16137";>#16137</a>)</li>
   <li><code>[jest-reporters, jest-runner, jest-runtime, jest-transform]</code> 
Fix coverage report not showing correct code coverage when using 
<code>projects</code> config option (<a 
href="https://redirect.github.com/jestjs/jest/pull/16140";>#16140</a>)</li>
   <li><code>[jest-runtime]</code> Resolve <code>expect</code> and 
<code>@jest/expect</code> from the internal module registry so test-file 
imports share the same <code>JestAssertionError</code> as the global 
<code>expect</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16130";>#16130</a>)</li>
   <li><code>[jest-runtime]</code> Improve CJS-from-ESM interop: 
<code>__esModule</code>/Babel default unwrap, broader named-export coverage, 
and shared CJS singleton across importers (<a 
href="https://redirect.github.com/jestjs/jest/pull/16050";>#16050</a>)</li>
   <li><code>[jest-runtime]</code> Load <code>.js</code> files with ESM syntax 
but no <code>&quot;type&quot;:&quot;module&quot;</code> marker as native ESM 
(<a href="https://redirect.github.com/jestjs/jest/pull/16050";>#16050</a>)</li>
   <li><code>[jest-runtime]</code> Extend the <code>.js</code>-with-ESM-syntax 
fallback to <code>require()</code> on Node v24.9+ - falls back to 
<code>require(esm)</code> when the CJS parser rejects ESM syntax (<a 
href="https://redirect.github.com/jestjs/jest/pull/16078";>#16078</a>)</li>
   <li><code>[jest-runtime]</code> Fix deadlocks and double-evaluation in 
concurrent ESM and wasm imports (<a 
href="https://redirect.github.com/jestjs/jest/pull/16050";>#16050</a>)</li>
   <li><code>[jest-runtime]</code> Fix error when <code>require()</code> is 
called after the Jest environment has been torn down (<a 
href="https://redirect.github.com/jestjs/jest/pull/15951";>#15951</a>)</li>
   <li><code>[jest-runtime]</code> Fix missing error when <code>import()</code> 
is called after the Jest environment has been torn down (<a 
href="https://redirect.github.com/jestjs/jest/pull/16080";>#16080</a>)</li>
   <li><code>[jest-runtime]</code> Fix virtual <code>unstable_mockModule</code> 
registrations not respected in ESM (<a 
href="https://redirect.github.com/jestjs/jest/pull/16081";>#16081</a>)</li>
   <li><code>[jest-runtime]</code> Apply <code>moduleNameMapper</code> when 
resolving modules with <code>require.resolve()</code> and the 
<code>paths</code> option (<a 
href="https://redirect.github.com/jestjs/jest/pull/16135";>#16135</a>)</li>
   </ul>
   <h3>Chore &amp; Maintenance</h3>
   <ul>
   <li><code>[@jest/fake-timers]</code> Upgrade 
<code>@sinonjs/fake-timers</code> (<a 
href="https://redirect.github.com/jestjs/jest/pull/16139";>#16139</a>)</li>
   <li><code>[jest-runtime]</code> Use synchronous <code>linkRequests</code> / 
<code>instantiate</code> for ESM linking on Node v24.9+ (<a 
href="https://redirect.github.com/jestjs/jest/pull/16063";>#16063</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/jestjs/jest/commit/5cbb21e0b3037edb42e503ec1a1ce80efad40c20";><code>5cbb21e</code></a>
 v30.4.0</li>
   <li><a 
href="https://github.com/jestjs/jest/commit/db7141a93cc85fab81cf9c25368e1f2b2c312286";><code>db7141a</code></a>
 fix: allow <code>collectCoverage</code> and <code>coverageProvider</code> in 
project config (<a 
href="https://github.com/jestjs/jest/tree/HEAD/packages/jest/issues/16132";>#16132</a>)</li>
   <li>See full diff in <a 
href="https://github.com/jestjs/jest/commits/v30.4.0/packages/jest";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to