dependabot[bot] opened a new pull request, #35598: URL: https://github.com/apache/superset/pull/35598
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.40.0 to 3.46.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/zloirock/core-js/blob/master/CHANGELOG.md">core-js's changelog</a>.</em></p> <blockquote> <h3><a href="https://github.com/zloirock/core-js/releases/tag/v3.46.0">3.46.0 - 2025.10.09</a></h3> <ul> <li>Changes <a href="https://github.com/zloirock/core-js/compare/v3.45.1...v3.46.0">v3.45.1...v3.46.0</a> (116 commits)</li> <li><a href="https://github.com/tc39/proposal-upsert"><code>Map</code> upsert stage 3 proposal</a>: <ul> <li>Fixed <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1988369">a FF <code>WeakMap.prototype.getOrInsertComputed</code> bug with callback calling before validation a key</a></li> </ul> </li> <li><a href="https://github.com/tc39/proposal-iterator-chunking"><code>Iterator</code> chunking proposal</a>: <ul> <li>Built-ins: <ul> <li><code>Iterator.prototype.chunks</code></li> <li><code>Iterator.prototype.windows</code></li> </ul> </li> <li>Moved to stage 2.7, <a href="https://github.com/tc39/proposals/commit/08e583103c6c244c05a26d9fee518ef8145ba2f6">September 2025 TC39 meeting</a></li> <li><code>Iterator.prototype.sliding</code> method replaced with an extra parameter of <code>Iterator.prototype.windows</code> method, [tc39/proposal-iterator-chunking/<a href="https://github.com/zloirock/core-js/tree/HEAD/packages/core-js/issues/24">#24</a>](<a href="https://redirect.github.com/tc39/proposal-iterator-chunking/pull/24">tc39/proposal-iterator-chunking#24</a>), [tc39/proposal-iterator-chunking/<a href="https://github.com/zloirock/core-js/tree/HEAD/packages/core-js/issues/26">#26</a>](<a href="https://redirect.github.com/tc39/proposal-iterator-chunking/pull/26">tc39/proposal-iterator-chunking#26</a>)</li> </ul> </li> <li>Fixed <a href="https://github.com/tc39/proposal-joint-iteration"><code>Iterator.zip</code> and <code>Iterator.zipKeyed</code></a> behavior with <code>mode: 'longest'</code> option, <a href="https://redirect.github.com/zloirock/core-js/issues/1469">#1469</a>, thanks <a href="https://github.com/lionel-rowe"><strong><code>@lionel-rowe</code></strong></a></li> <li>Fixed work of <code>Object.groupBy</code> and <a href="https://github.com/tc39/proposal-joint-iteration"><code>Iterator.zipKeyed</code></a> together with <code>Symbol</code> polyfill - some cases of symbol keys on result <code>null</code>-prototype object were able to leak out to <code>for-in</code></li> <li>Compat data improvements: <ul> <li><a href="https://github.com/tc39/proposal-upsert"><code>Map</code> upsert proposal</a> features marked as shipped from FF144</li> <li>Added <a href="https://redirect.github.com/nodejs/node/pull/59896">Node 25.0</a> compat data mapping</li> <li>Added <a href="https://github.com/denoland/deno/releases/tag/v2.5.0">Deno 2.5</a> compat data mapping</li> <li>Updated Electron 39 compat data mapping</li> <li>Updated Opera 121+ compat data mapping</li> <li>Added <a href="https://forums.opera.com/topic/86530/opera-for-android-92">Opera Android 92</a> compat data mapping</li> <li>Added Oculus Quest Browser 40 compat data mapping</li> </ul> </li> </ul> <h3><a href="https://github.com/zloirock/core-js/releases/tag/v3.45.1">3.45.1 - 2025.08.20</a></h3> <ul> <li>Changes <a href="https://github.com/zloirock/core-js/compare/v3.45.0...v3.45.1">v3.45.0...v3.45.1</a> (30 commits)</li> <li>Fixed a conflict of native methods from <a href="https://github.com/tc39/proposal-upsert"><code>Map</code> upsert proposal</a> with polyfilled methods in the pure version</li> <li>Added <code>bugs</code> fields to <code>package.json</code> of all packages</li> <li>Compat data improvements: <ul> <li><a href="https://github.com/tc39/proposal-upsert"><code>Map</code> upsert proposal</a> features marked as shipped from Bun 1.2.20</li> <li>Added Samsung Internet 29 compat data mapping</li> <li>Added Electron 39 compat data mapping</li> </ul> </li> </ul> <h3><a href="https://github.com/zloirock/core-js/releases/tag/v3.45.0">3.45.0 - 2025.08.04</a></h3> <ul> <li>Changes <a href="https://github.com/zloirock/core-js/compare/v3.44.0...v3.45.0">v3.44.0...v3.45.0</a> (70 commits)</li> <li><a href="https://github.com/tc39/proposal-arraybuffer-base64"><code>Uint8Array</code> to / from base64 and hex proposal</a>: <ul> <li>Built-ins: <ul> <li><code>Uint8Array.fromBase64</code></li> <li><code>Uint8Array.fromHex</code></li> <li><code>Uint8Array.prototype.setFromBase64</code></li> <li><code>Uint8Array.prototype.setFromHex</code></li> <li><code>Uint8Array.prototype.toBase64</code></li> <li><code>Uint8Array.prototype.toHex</code></li> </ul> </li> <li>Moved to stable ES, <a href="https://github.com/tc39/proposals/commit/d41fe182cdb90da3076ab711aae3944ed86bcf18">July 2025 TC39 meeting</a></li> <li>Added <code>es.</code> namespace modules, <code>/es/</code> and <code>/stable/</code> namespaces entries</li> <li>Added detection of a Webkit bug: <code>Uint8Array</code> fromBase64 / setFromBase64 does not throw an error on incorrect length of base64 string</li> </ul> </li> <li><a href="https://github.com/tc39/proposal-math-sum"><code>Math.sumPrecise</code> proposal</a>: <ul> <li>Built-ins: <ul> <li><code>Math.sumPrecise</code></li> </ul> </li> <li>Moved to stable ES, <a href="https://github.com/tc39/proposals/commit/2616413ace9074bfd444adee9501fae4c8d66fcb">July 2025 TC39 meeting</a></li> <li>Added <code>es.</code> namespace module, <code>/es/</code> and <code>/stable/</code> namespaces entries</li> </ul> </li> <li><a href="https://github.com/tc39/proposal-iterator-sequencing"><code>Iterator</code> sequencing proposal</a>: <ul> <li>Built-ins:</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zloirock/core-js/commit/98d9dc499ffa8fe7543b8cb8f613351e5b3ab8de"><code>98d9dc4</code></a> v3.46.0</li> <li><a href="https://github.com/zloirock/core-js/commit/38420bdad4bda36eea0c697bb5cecd62caa53911"><code>38420bd</code></a> add <code>homepage</code> field to <code>package.json</code>s</li> <li><a href="https://github.com/zloirock/core-js/commit/a7aee4c58a7eec4fb5958fcb6ba4f07d14446f1d"><code>a7aee4c</code></a> some fixes</li> <li><a href="https://github.com/zloirock/core-js/commit/12b441d64df944e45bc6d709b6a9e3c2c0ce72ea"><code>12b441d</code></a> Fix <code>Iterator.zip</code> and <code>Iterator.zipKeyed</code> behavior with <code>mode: 'longest'</code> op...</li> <li><a href="https://github.com/zloirock/core-js/commit/15d7a7da70c80bfa3e7fbc2a618acc8b07ce8034"><code>15d7a7d</code></a> update copyright</li> <li><a href="https://github.com/zloirock/core-js/commit/9eaa6ad79a76c03703ea01bc16beca42ee44e054"><code>9eaa6ad</code></a> Merge pull request <a href="https://github.com/zloirock/core-js/tree/HEAD/packages/core-js/issues/1451">#1451</a> from zloirock/iterator-chunking-stage-2-7</li> <li><a href="https://github.com/zloirock/core-js/commit/686808fb6ade734d86f5dc9443869550b5490759"><code>686808f</code></a> clarify versions</li> <li><a href="https://github.com/zloirock/core-js/commit/a21ab8d81f8ee58e64e0ec5c9279725483315ed5"><code>a21ab8d</code></a> FF <code>WeakMap.prototype.getOrInsertComputed</code> was fixed</li> <li><a href="https://github.com/zloirock/core-js/commit/747e64806ff04a09b5f3d7990dfcd80afcd91656"><code>747e648</code></a> Fix object property creation for potential Symbol keys</li> <li><a href="https://github.com/zloirock/core-js/commit/6bfb3cde052a1ad9ec3666e47ddd97ef6dfcd430"><code>6bfb3cd</code></a> move <code>Iterator</code> chunking proposal to stage 2.7</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/commits/v3.46.0/packages/core-js">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 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]
