[PR #284] [CLOSED] fix(deps): bump core-js from 3.23.3 to 3.24.0 #298

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

📋 Pull Request Information

Original PR: https://github.com/ArthurDanjou/website-old/pull/284
Author: @dependabot[bot]
Created: 7/26/2022
Status: Closed

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


📝 Commits (1)

  • 4c7e5b5 fix(deps): bump core-js from 3.23.3 to 3.24.0

📊 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.24.0.

Changelog

Sourced from core-js's changelog.

3.24.0 - 2022.07.25
3.23.5 - 2022.07.18
  • Fixed a typo in the structuredClone feature detection, #1106
  • Added Opera Android 70 compat data mapping
3.23.4 - 2022.07.10
  • Added a workaround of the Bun ~ 0.1.1 bug that define some globals with incorrect property descriptors and that causes a crash of core-js
  • Added a fix of the FF103+ structuredClone bugs (1774866 (fixed in FF104) and 1777321 (still not fixed)) that now can clone errors, but .stack of the clone is an empty string
  • Fixed { Map, WeakMap }.prototype.emplace logic, #1102
  • Fixed order of errors throwing on iterator helpers
Commits
  • cc756d0 3.24.0
  • 234121f add Samsung Internet 18.0 compat data mapping
  • 6b4055c update compat table screenshots
  • c8ae80f update the changelog
  • 485d383 remove %TypedArray%.prototype.toSpliced method from the change array by cop...
  • c2620d2 Merge pull request #1101 from zloirock/iterator-helpers
  • 5a2d421 improve a changelog note
  • ae6018e simplify
  • 4d107e1 fix promise chain
  • 3b1f77f rework async generators core
  • 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/284 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/26/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/core-js-3.24.0` --- ### 📝 Commits (1) - [`4c7e5b5`](https://github.com/ArthurDanjou/website-old/commit/4c7e5b567fe349ed75a266dcf85b437dfee6999a) fix(deps): bump core-js from 3.23.3 to 3.24.0 ### 📊 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) from 3.23.3 to 3.24.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.24.0">3.24.0 - 2022.07.25</a></h5> <ul> <li>Recent updates of the <a href="https://github.com/tc39/proposal-iterator-helpers">iterator helpers proposal</a>, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/1101">#1101</a>: <ul> <li><code>.asIndexedPairs</code> renamed to <code>.indexed</code>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/183">proposal-iterator-helpers/183</a>: <ul> <li><code>Iterator.prototype.asIndexedPairs</code> -&gt; <code>Iterator.prototype.indexed</code></li> <li><code>AsyncIterator.prototype.asIndexedPairs</code> -&gt; <code>AsyncIterator.prototype.indexed</code></li> </ul> </li> <li>Avoid exposing spec fiction <code>%AsyncFromSyncIteratorPrototype%</code> in <code>AsyncIterator.from</code> and <code>Iterator.prototype.toAsync</code>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/182">proposal-iterator-helpers/182</a>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/202">proposal-iterator-helpers/202</a></li> <li>Avoid unnecessary promise creation in <code>%WrapForValidAsyncIteratorPrototype%.next</code>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/197">proposal-iterator-helpers/197</a></li> <li>Do not validate value in <code>%WrapForValid(Async)IteratorPrototype%.next</code>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/197">proposal-iterator-helpers/197</a> and <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/205">proposal-iterator-helpers/205</a></li> <li>Do not forward the parameter of <code>.next</code> / <code>.return</code> to an underlying iterator by the extended iterator protocol, a part of <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/194">proposal-iterator-helpers/194</a></li> <li><code>.throw</code> methods removed from all wrappers / helpers prototypes, a part of <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/194">proposal-iterator-helpers/194</a></li> <li>Close inner iterators of <code>{ Iterator, AsyncIterator }.prototype.flatMap</code> proxy iterators on <code>.return</code>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/195">proposal-iterator-helpers/195</a></li> <li>Throw <code>RangeError</code> on <code>NaN</code> in <code>{ Iterator, AsyncIterator }.prototype.{ drop, take }</code>, <a href="https://github-redirect.dependabot.com/tc39/proposal-iterator-helpers/pull/181">proposal-iterator-helpers/181</a></li> <li>Many other updates and fixes of this proposal</li> </ul> </li> <li><code>%TypedArray%.prototype.toSpliced</code> method removed from the <a href="https://github.com/tc39/proposal-change-array-by-copy">change array by copy proposal</a> and marked as obsolete in <code>core-js</code>, <a href="https://github-redirect.dependabot.com/tc39/proposal-change-array-by-copy/issues/88">proposal-change-array-by-copy/88</a></li> <li>Polyfill <code>Promise</code> with <code>unhandledrejection</code> event support (browser style) in Deno &lt; <a href="https://github.com/denoland/deno/releases/tag/v1.24.0">1.24</a></li> <li>Available new targets in <code>core-js-compat</code> / <code>core-js-builder</code> and added compat data for them: <ul> <li>Bun (<code>bun</code>), compat data for 0.1.1-0.1.5, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/1103">#1103</a></li> <li>Hermes (<code>hermes</code>), compat data for 0.1-0.11, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/1099">#1099</a></li> <li>Oculus Browser (<code>oculus</code>), compat data mapping for 3.0-22.0, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/1098">#1098</a></li> </ul> </li> <li>Added Samsung Internet 18.0 compat data mapping</li> </ul> <h5><a href="https://github.com/zloirock/core-js/releases/tag/v3.23.5">3.23.5 - 2022.07.18</a></h5> <ul> <li>Fixed a typo in the <code>structuredClone</code> feature detection, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/1106">#1106</a></li> <li>Added Opera Android 70 compat data mapping</li> </ul> <h5><a href="https://github.com/zloirock/core-js/releases/tag/v3.23.4">3.23.4 - 2022.07.10</a></h5> <ul> <li>Added a workaround of the Bun ~ 0.1.1 <a href="https://github-redirect.dependabot.com/Jarred-Sumner/bun/issues/399">bug</a> that define some globals with incorrect property descriptors and that causes a crash of <code>core-js</code></li> <li>Added a fix of the FF103+ <code>structuredClone</code> bugs (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1774866">1774866</a> (fixed in FF104) and <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1777321">1777321</a> (still not fixed)) that now can clone errors, but <code>.stack</code> of the clone is an empty string</li> <li>Fixed <code>{ Map, WeakMap }.prototype.emplace</code> logic, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/1102">#1102</a></li> <li>Fixed order of errors throwing on iterator helpers</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zloirock/core-js/commit/cc756d0011639aac2d74912413f7b5c695cfe72e"><code>cc756d0</code></a> 3.24.0</li> <li><a href="https://github.com/zloirock/core-js/commit/234121f0244fe2b962b2d1bf1305a3b79d4b2359"><code>234121f</code></a> add Samsung Internet 18.0 compat data mapping</li> <li><a href="https://github.com/zloirock/core-js/commit/6b4055c61a0601c9091d97ee121ab72e63a706b7"><code>6b4055c</code></a> update compat table screenshots</li> <li><a href="https://github.com/zloirock/core-js/commit/c8ae80fc3eea4ff84911c9d3ffc77feaee7d0b3b"><code>c8ae80f</code></a> update the changelog</li> <li><a href="https://github.com/zloirock/core-js/commit/485d38322ba472a7e0fdc066dfdbd386083ad7f4"><code>485d383</code></a> remove <code>%TypedArray%.prototype.toSpliced</code> method from the change array by cop...</li> <li><a href="https://github.com/zloirock/core-js/commit/c2620d2a3aa4412a45822ce6e738ee888f9f624a"><code>c2620d2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/1101">#1101</a> from zloirock/iterator-helpers</li> <li><a href="https://github.com/zloirock/core-js/commit/5a2d4215371b32513bbb4c27094c30a800ec7693"><code>5a2d421</code></a> improve a changelog note</li> <li><a href="https://github.com/zloirock/core-js/commit/ae6018efed2c97ef61cd900c6bd5de18ff1e45b6"><code>ae6018e</code></a> simplify</li> <li><a href="https://github.com/zloirock/core-js/commit/4d107e1b6996a4045845cb9b81cb94f744342cd0"><code>4d107e1</code></a> fix promise chain</li> <li><a href="https://github.com/zloirock/core-js/commit/3b1f77fba832266e5ef1f5c9fdad1b4e127da004"><code>3b1f77f</code></a> rework async generators core</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/compare/v3.23.3...v3.24.0">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.24.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> --- <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:42 +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#298