Dependabot commands
You can trigger Dependabot actions by commenting on this MR
$dependabot rebase will rebase this MR
$dependabot recreate will recreate this MR rewriting all the manual changes and resolving conflicts
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.27.1 to 3.27.2.
<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>
<h5><a href="https://github.com/zloirock/core-js/releases/tag/v3.27.2">3.27.2 - 2023.01.19</a></h5>
<ul>
<li><a href="https://github.com/tc39/proposal-set-methods"><code>Set</code> methods proposal</a> updates:
<ul>
<li>Closing of iterators of <code>Set</code>-like objects on early exit, <a href="https://github.com/tc39/proposal-set-methods/pull/85">proposal-set-methods/85</a></li>
<li>Some other minor internal changes</li>
</ul>
</li>
<li>Added one more workaround of a <code>webpack</code> dev server bug on IE global methods, <a href="https://github.com/zloirock/core-js/issues/1161">#1161</a></li>
<li>Fixed possible <code>String.{ raw, cooked }</code> error with empty template array</li>
<li>Used non-standard V8 <code>Error.captureStackTrace</code> instead of stack parsing in new error classes / wrappers where it's possible</li>
<li>Added detection correctness of iteration to <code>Promise.{ allSettled, any }</code> feature detection, Hermes issue</li>
<li>Compat data improvements:
<ul>
<li><a href="https://github.com/tc39/proposal-change-array-by-copy">Change <code>Array</code> by copy proposal</a> marked as supported from V8 ~ Chrome 110</li>
<li>Added Samsung Internet 20 compat data mapping</li>
<li>Added Quest Browser 25 compat data mapping</li>
<li>Added React Native 0.71 Hermes compat data</li>
<li>Added Electron 23 and 24 compat data mapping</li>
<li><code>self</code> marked as fixed in Deno 1.29.3, <a href="https://github.com/denoland/deno/pull/17362">deno/17362</a></li>
</ul>
</li>
<li>Minor tweaks of minification settings for <code>core-js-bundle</code></li>
<li>Refactoring, some minor fixes, improvements, optimizations</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/zloirock/core-js/commit/c56b97f1c90f0e04fe37d1fbceabcf5835af2c01"><code>c56b97f</code></a> 3.27.2</li>
<li><a href="https://github.com/zloirock/core-js/commit/20ab9c5807a540abd291abada6e1dca8d9a37b0f"><code>20ab9c5</code></a> coerce negative set size in <code>get-set-record</code> to 0</li>
<li><a href="https://github.com/zloirock/core-js/commit/64b52bf731d26ab96f22fc1d7d188027f61d8c63"><code>64b52bf</code></a> since now <code>make-built-in</code> used in runtime, make some operations unobservable</li>
<li><a href="https://github.com/zloirock/core-js/commit/0d2f2782cbb67e6d0cd1544d54ee9bdee49a873b"><code>0d2f278</code></a> simplify iteration in <code>Set#{ isDisjointFrom, isSupersetOf }</code></li>
<li><a href="https://github.com/zloirock/core-js/commit/b4d713b7424c28ba3cce3625d610bcfa6f4f8141"><code>b4d713b</code></a> some stylistic fixes</li>
<li><a href="https://github.com/zloirock/core-js/commit/32cbd8f7ca09ccba00bf25f95fc070397b049422"><code>32cbd8f</code></a> closing of iterators of <code>Set</code>-like objects on early exit</li>
<li><a href="https://github.com/zloirock/core-js/commit/7f8fce93434109df0ab0506c24b2b9c000ac1f17"><code>7f8fce9</code></a> add detection correctness of iteration to <code>Promise.{ allSettled, any }</code> featu...</li>
<li><a href="https://github.com/zloirock/core-js/commit/4eeb86b200e3bd5e2503c2ec5000e246c2163723"><code>4eeb86b</code></a> update <code>eslint-plugin-import</code></li>
<li><a href="https://github.com/zloirock/core-js/commit/d7716d4fc35fd951ffcf970ae6107b916c8f7de8"><code>d7716d4</code></a> one more <a href="https://github.com/zloirock/core-js/tree/HEAD/packages/core-js/issues/1161">#1161</a> workaround, for the pure version export context case</li>
<li><a href="https://github.com/zloirock/core-js/commit/47bdf63d33fa17ef592c7d3fda582e3cf4581af1"><code>47bdf63</code></a> add one more workaround of a <code>webpack</code> dev server bug on IE global methods, c...</li>
<li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/commits/v3.27.2/packages/core-js">compare view</a></li>
</ul>
</details>
<br />
---
<details>
<summary>Dependabot commands</summary>
<br />
You can trigger Dependabot actions by commenting on this MR
- `$dependabot rebase` will rebase this MR
- `$dependabot recreate` will recreate this MR rewriting all the manual changes and resolving conflicts
</details>
argoyle
(Migrated from gitlab.com)
merged commit into master2023-01-19 08:35:08 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Bumps core-js from 3.27.1 to 3.27.2.
Changelog
Sourced from core-js's changelog.
Commits
c56b97f3.27.220ab9c5coerce negative set size inget-set-recordto 064b52bfsince nowmake-built-inused in runtime, make some operations unobservable0d2f278simplify iteration inSet#{ isDisjointFrom, isSupersetOf }b4d713bsome stylistic fixes32cbd8fclosing of iterators ofSet-like objects on early exit7f8fce9add detection correctness of iteration toPromise.{ allSettled, any }featu...4eeb86bupdateeslint-plugin-importd7716d4one more #1161 workaround, for the pure version export context case47bdf63add one more workaround of awebpackdev server bug on IE global methods, c...Dependabot commands
You can trigger Dependabot actions by commenting on this MR
$dependabot rebasewill rebase this MR$dependabot recreatewill recreate this MR rewriting all the manual changes and resolving conflicts