[PR #339] fix(deps): bump core-js from 3.23.3 to 3.27.0 #357

Closed
opened 2025-12-01 17:06:57 +01:00 by arthur · 0 comments
Owner

Original Pull Request: https://github.com/ArthurDanjou/website-old/pull/339

State: closed
Merged: No


Bumps core-js from 3.23.3 to 3.27.0.

Changelog

Sourced from core-js's changelog.

3.27.0 - 2022.12.26
  • Iterator Helpers proposal:
    • Built-ins:
      • Iterator
        • Iterator.from
        • Iterator.prototype.drop
        • Iterator.prototype.every
        • Iterator.prototype.filter
        • Iterator.prototype.find
        • Iterator.prototype.flatMap
        • Iterator.prototype.forEach
        • Iterator.prototype.map
        • Iterator.prototype.reduce
        • Iterator.prototype.some
        • Iterator.prototype.take
        • Iterator.prototype.toArray
        • Iterator.prototype.toAsync
        • Iterator.prototype[@@toStringTag]
      • AsyncIterator
        • AsyncIterator.from
        • AsyncIterator.prototype.drop
        • AsyncIterator.prototype.every
        • AsyncIterator.prototype.filter
        • AsyncIterator.prototype.find
        • AsyncIterator.prototype.flatMap
        • AsyncIterator.prototype.forEach
        • AsyncIterator.prototype.map
        • AsyncIterator.prototype.reduce
        • AsyncIterator.prototype.some
        • AsyncIterator.prototype.take
        • AsyncIterator.prototype.toArray
        • AsyncIterator.prototype[@@toStringTag]
    • Moved to Stage 3, November 2022 TC39 meeting
    • Added /actual/ entries, unconditional forced replacement disabled for features that survived to Stage 3
    • .from accept strings, .flatMap throws on strings returned from the callback, proposal-iterator-helpers/244, proposal-iterator-helpers/250
    • .from and .flatMap throws on non-object iterators, proposal-iterator-helpers/253
  • Set methods proposal:
    • Built-ins:
      • Set.prototype.intersection
      • Set.prototype.union
      • Set.prototype.difference
      • Set.prototype.symmetricDifference
      • Set.prototype.isSubsetOf
      • Set.prototype.isSupersetOf
      • Set.prototype.isDisjointFrom
    • Moved to Stage 3, November 2022 TC39 meeting
    • Reimplemented with new semantics:
      • Optimized performance (iteration over lowest set)
      • Accepted only Set-like objects as an argument, not all iterables
      • Accepted only Sets as this, no @@species support, and other minor changes

... (truncated)

Commits
  • 66c427f 3.27.0
  • c8322b0 allow gc disposed resources before disposing all resources of stack
  • 0d9478e add some comments
  • 68c9bf6 smoothed behavior of some conflicting proposals
  • 4cc298a fix a couple of tests
  • c5e2d95 add set(Timeout|Interval|Immediate) extra arguments fix for Bun (similarly ...
  • 078397e remove unreachable condition
  • 5c6b8fa throw an error on non-frozen raw templates for avoiding possible breaking cha...
  • 4d1b116 some optimizations
  • 041835b drop extra dependencies from /proposals|stage/ entries, they are not requir...
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)
**Original Pull Request:** https://github.com/ArthurDanjou/website-old/pull/339 **State:** closed **Merged:** No --- Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.23.3 to 3.27.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> <h5><a href="https://github.com/zloirock/core-js/releases/tag/v3.27.0">3.27.0 - 2022.12.26</a></h5> <ul> <li><a href="https://github.com/tc39/proposal-iterator-helpers">Iterator Helpers</a> proposal: <ul> <li>Built-ins: <ul> <li><code>Iterator</code> <ul> <li><code>Iterator.from</code></li> <li><code>Iterator.prototype.drop</code></li> <li><code>Iterator.prototype.every</code></li> <li><code>Iterator.prototype.filter</code></li> <li><code>Iterator.prototype.find</code></li> <li><code>Iterator.prototype.flatMap</code></li> <li><code>Iterator.prototype.forEach</code></li> <li><code>Iterator.prototype.map</code></li> <li><code>Iterator.prototype.reduce</code></li> <li><code>Iterator.prototype.some</code></li> <li><code>Iterator.prototype.take</code></li> <li><code>Iterator.prototype.toArray</code></li> <li><code>Iterator.prototype.toAsync</code></li> <li><code>Iterator.prototype[@@toStringTag]</code></li> </ul> </li> <li><code>AsyncIterator</code> <ul> <li><code>AsyncIterator.from</code></li> <li><code>AsyncIterator.prototype.drop</code></li> <li><code>AsyncIterator.prototype.every</code></li> <li><code>AsyncIterator.prototype.filter</code></li> <li><code>AsyncIterator.prototype.find</code></li> <li><code>AsyncIterator.prototype.flatMap</code></li> <li><code>AsyncIterator.prototype.forEach</code></li> <li><code>AsyncIterator.prototype.map</code></li> <li><code>AsyncIterator.prototype.reduce</code></li> <li><code>AsyncIterator.prototype.some</code></li> <li><code>AsyncIterator.prototype.take</code></li> <li><code>AsyncIterator.prototype.toArray</code></li> <li><code>AsyncIterator.prototype[@@toStringTag]</code></li> </ul> </li> </ul> </li> <li>Moved to Stage 3, <a href="https://github-redirect.dependabot.com/babel/proposals/issues/85#issuecomment-1333474304">November 2022 TC39 meeting</a></li> <li>Added <code>/actual/</code> entries, unconditional forced replacement disabled for features that survived to Stage 3</li> <li><code>.from</code> accept strings, <code>.flatMap</code> throws on strings returned from the callback, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/244">proposal-iterator-helpers/244</a>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/250">proposal-iterator-helpers/250</a></li> <li><code>.from</code> and <code>.flatMap</code> throws on non-object <em>iterators</em>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/253">proposal-iterator-helpers/253</a></li> </ul> </li> <li><a href="https://github.com/tc39/proposal-set-methods"><code>Set</code> methods proposal</a>: <ul> <li>Built-ins: <ul> <li><code>Set.prototype.intersection</code></li> <li><code>Set.prototype.union</code></li> <li><code>Set.prototype.difference</code></li> <li><code>Set.prototype.symmetricDifference</code></li> <li><code>Set.prototype.isSubsetOf</code></li> <li><code>Set.prototype.isSupersetOf</code></li> <li><code>Set.prototype.isDisjointFrom</code></li> </ul> </li> <li>Moved to Stage 3, <a href="https://github-redirect.dependabot.com/babel/proposals/issues/85#issuecomment-1332175557">November 2022 TC39 meeting</a></li> <li>Reimplemented with <a href="https://tc39.es/proposal-set-methods/">new semantics</a>: <ul> <li>Optimized performance (iteration over lowest set)</li> <li>Accepted only <code>Set</code>-like objects as an argument, not all iterables</li> <li>Accepted only <code>Set</code>s as <code>this</code>, no <code>@@species</code> support, and other minor changes</li> </ul> </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/66c427f71fa7c1d640bb05d6a4ab4ba11e308d2f"><code>66c427f</code></a> 3.27.0</li> <li><a href="https://github.com/zloirock/core-js/commit/c8322b0826c5b8dbcd3ccd4f78c193376dd231d7"><code>c8322b0</code></a> allow gc disposed resources before disposing all resources of stack</li> <li><a href="https://github.com/zloirock/core-js/commit/0d9478e3151b63fce963bdd22d4d805af5d5a10b"><code>0d9478e</code></a> add some comments</li> <li><a href="https://github.com/zloirock/core-js/commit/68c9bf6d8531a01ced7c3934b9a221aec81ab2e2"><code>68c9bf6</code></a> smoothed behavior of some conflicting proposals</li> <li><a href="https://github.com/zloirock/core-js/commit/4cc298a133fead34d62f21c8fd75c02cf40b6341"><code>4cc298a</code></a> fix a couple of tests</li> <li><a href="https://github.com/zloirock/core-js/commit/c5e2d95b7cfa9f2cf8be6a48ebf2f1127dabdcd4"><code>c5e2d95</code></a> add <code>set(Timeout|Interval|Immediate)</code> extra arguments fix for Bun (similarly ...</li> <li><a href="https://github.com/zloirock/core-js/commit/078397e740dfd36f761c9dd48970a8f8d37204c9"><code>078397e</code></a> remove unreachable condition</li> <li><a href="https://github.com/zloirock/core-js/commit/5c6b8fa55bb37d6f75e72929ea2a1d4d297f9868"><code>5c6b8fa</code></a> throw an error on non-frozen raw templates for avoiding possible breaking cha...</li> <li><a href="https://github.com/zloirock/core-js/commit/4d1b1169db2b9739bcb4cf9888b9df1d9424e3e4"><code>4d1b116</code></a> some optimizations</li> <li><a href="https://github.com/zloirock/core-js/commit/041835bf0db1b58e86a428ffeaab2c94c4ee39fd"><code>041835b</code></a> drop extra dependencies from <code>/proposals|stage/</code> entries, they are not requir...</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/commits/v3.27.0/packages/core-js">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=core-js&package-manager=npm_and_yarn&previous-version=3.23.3&new-version=3.27.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) </details>
arthur added the pull-request label 2025-12-01 17:06:57 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: arthur/website-old#357