[PR #140] [CLOSED] fix(deps): bump core-js from 3.16.2 to 3.16.4 #141

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

📋 Pull Request Information

Original PR: https://github.com/ArthurDanjou/website-old/pull/140
Author: @dependabot[bot]
Created: 8/30/2021
Status: Closed

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


📝 Commits (1)

  • 8f2def3 fix(deps): bump core-js from 3.16.2 to 3.16.4

📊 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.16.2 to 3.16.4.

Changelog

Sourced from core-js's changelog.

3.16.4 - 2021.08.29
  • AsyncFromSyncIterator made stricter, related mainly to AsyncIterator.from and AsyncIterator.prototype.flatMap
  • Handling of optional .next arguments in (Async)Iterator methods is aligned with the current spec draft (mainly - ignoring the first passed to .next argument in built-in generators)
  • Behavior of .next, .return, .throw methods on AsyncIterator helpers proxy iterators aligned with the current spec draft (built-in async generators) (mainly - some early errors moved to returned promises)
  • Fixed some cases of safe iteration closing
  • Fixed dependencies of some entry points
3.16.3 - 2021.08.25
  • Fixed CreateAsyncFromSyncIterator semantic in AsyncIterator.from, related to #765
  • Added a workaround of a specific case of broken Object.prototype, #973
Commits
  • eaf15af 3.16.4
  • 6b61dcf fix some missed dependencies
  • 21bb08d fix some cases of safe iteration closing
  • 9b260b3 move generators validation to promises
  • b7edd2a fix .return
  • 322be73 behavior of .next, .return, .throw methods on AsyncIterator helpers p...
  • 8df6d0e align handling of optional .next arguments in (Async)Iterator methods wit...
  • 0f1bc28 refactor to use getIteratorMethod + getIterator in some cases
  • 5bb48b3 prevent double get of @@(async)iterator property
  • 9773ec3 remove unnecessary check
  • 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/140 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/30/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/core-js-3.16.4` --- ### 📝 Commits (1) - [`8f2def3`](https://github.com/ArthurDanjou/website-old/commit/8f2def3ae912200116f44b767c71903429252c4a) fix(deps): bump core-js from 3.16.2 to 3.16.4 ### 📊 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.16.2 to 3.16.4. <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>3.16.4 - 2021.08.29</h5> <ul> <li><code>AsyncFromSyncIterator</code> made stricter, related mainly to <code>AsyncIterator.from</code> and <code>AsyncIterator.prototype.flatMap</code></li> <li>Handling of optional <code>.next</code> arguments in <code>(Async)Iterator</code> methods is aligned with the current spec draft (mainly - ignoring the first passed to <code>.next</code> argument in built-in generators)</li> <li>Behavior of <code>.next</code>, <code>.return</code>, <code>.throw</code> methods on <code>AsyncIterator</code> helpers proxy iterators aligned with the current spec draft (built-in async generators) (mainly - some early errors moved to returned promises)</li> <li>Fixed some cases of safe iteration closing</li> <li>Fixed dependencies of some entry points</li> </ul> <h5>3.16.3 - 2021.08.25</h5> <ul> <li>Fixed <code>CreateAsyncFromSyncIterator</code> semantic in <code>AsyncIterator.from</code>, related to <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/765">#765</a></li> <li>Added a workaround of a specific case of broken <code>Object.prototype</code>, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/973">#973</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zloirock/core-js/commit/eaf15afc85003c336f71c113b886aaf6ecb2a807"><code>eaf15af</code></a> 3.16.4</li> <li><a href="https://github.com/zloirock/core-js/commit/6b61dcf7fc8dcfb7f73127c1c459f4748e72b5fd"><code>6b61dcf</code></a> fix some missed dependencies</li> <li><a href="https://github.com/zloirock/core-js/commit/21bb08df6a48297708e199e49c6b20ff6cd1d468"><code>21bb08d</code></a> fix some cases of safe iteration closing</li> <li><a href="https://github.com/zloirock/core-js/commit/9b260b312b70296a8034afd79f5dea7c2857a9cd"><code>9b260b3</code></a> move generators validation to promises</li> <li><a href="https://github.com/zloirock/core-js/commit/b7edd2a636c18c9776a17bd5902ce888ed8b8aa6"><code>b7edd2a</code></a> fix <code>.return</code></li> <li><a href="https://github.com/zloirock/core-js/commit/322be736008809329e8aa792f04e8314d7773996"><code>322be73</code></a> behavior of <code>.next</code>, <code>.return</code>, <code>.throw</code> methods on <code>AsyncIterator</code> helpers p...</li> <li><a href="https://github.com/zloirock/core-js/commit/8df6d0eae7c77827db59ee5a8fb4cc77bd58d68e"><code>8df6d0e</code></a> align handling of optional <code>.next</code> arguments in <code>(Async)Iterator</code> methods wit...</li> <li><a href="https://github.com/zloirock/core-js/commit/0f1bc28cead0371692df45bfca471d9aea833db9"><code>0f1bc28</code></a> refactor to use <code>getIteratorMethod</code> + <code>getIterator</code> in some cases</li> <li><a href="https://github.com/zloirock/core-js/commit/5bb48b3de33953f54659325a4938952b108ae319"><code>5bb48b3</code></a> prevent double get of <code>@@(async)iterator</code> property</li> <li><a href="https://github.com/zloirock/core-js/commit/9773ec3b950ca679827c25c6c88e42bb770b23a3"><code>9773ec3</code></a> remove unnecessary check</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/compare/v3.16.2...v3.16.4">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.16.2&new-version=3.16.4)](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:04 +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#141