[PR #340] [CLOSED] fix(deps): bump core-js from 3.23.3 to 3.27.1 #353

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

📋 Pull Request Information

Original PR: https://github.com/ArthurDanjou/website-old/pull/340
Author: @dependabot[bot]
Created: 12/30/2022
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/core-js-3.27.1


📝 Commits (1)

  • a4ab85a fix(deps): bump core-js from 3.23.3 to 3.27.1

📊 Changes

2 files changed (+5 additions, -5 deletions)

View changed files

📝 package.json (+1 -1)
📝 yarn.lock (+4 -4)

📄 Description

Bumps core-js from 3.23.3 to 3.27.1.

Changelog

Sourced from core-js's changelog.

3.27.1 - 2022.12.30
  • Fixed a Chakra-based MS Edge (18-) bug that unfreeze (O_o) frozen arrays used as WeakMap keys
  • Fixing of the previous bug also fixes some cases of String.dedent in MS Edge
  • Fixed dependencies of some entries
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

... (truncated)

Commits
  • f44604e 3.27.1
  • 98995dc add some missed dependencies to entries
  • 10517de add all iterator helpers to (Async)Iterator.from entries for runtime
  • 0f4a279 some stylistic changes
  • da2e4f8 fix a Chakra-based MS Edge (18-) bug that unfreeze (O_o) frozen arrays used a...
  • 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
  • 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ArthurDanjou/website-old/pull/340 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 12/30/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/core-js-3.27.1` --- ### 📝 Commits (1) - [`a4ab85a`](https://github.com/ArthurDanjou/website-old/commit/a4ab85a3535eb14c73b23de271eda7d3b0250051) fix(deps): bump core-js from 3.23.3 to 3.27.1 ### 📊 Changes **2 files changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+1 -1) 📝 `yarn.lock` (+4 -4) </details> ### 📄 Description Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.23.3 to 3.27.1. <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.1">3.27.1 - 2022.12.30</a></h5> <ul> <li>Fixed a Chakra-based MS Edge (18-) bug that unfreeze (O_o) frozen arrays used as <code>WeakMap</code> keys</li> <li>Fixing of the previous bug also fixes some cases of <code>String.dedent</code> in MS Edge</li> <li>Fixed dependencies of some entries</li> </ul> <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> </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/f44604e6c9a81aa6e718e37eb9a30e840b5491df"><code>f44604e</code></a> 3.27.1</li> <li><a href="https://github.com/zloirock/core-js/commit/98995dc998afe98899d0caab0701ea75aa1e49c8"><code>98995dc</code></a> add some missed dependencies to entries</li> <li><a href="https://github.com/zloirock/core-js/commit/10517def66f5fc5fa595b99c784ac611a4715eb6"><code>10517de</code></a> add all iterator helpers to <code>(Async)Iterator.from</code> entries for runtime</li> <li><a href="https://github.com/zloirock/core-js/commit/0f4a279c21400e16a7f256f0b52c571a6b110bff"><code>0f4a279</code></a> some stylistic changes</li> <li><a href="https://github.com/zloirock/core-js/commit/da2e4f8d15174c70269bc8e1961358d0407c81d6"><code>da2e4f8</code></a> fix a Chakra-based MS Edge (18-) bug that unfreeze (O_o) frozen arrays used a...</li> <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>Additional commits viewable in <a href="https://github.com/zloirock/core-js/commits/v3.27.1/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.1)](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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
arthur added the pull-request label 2025-12-01 17:06:55 +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#353