[PR #121] [CLOSED] fix(deps): bump core-js from 3.15.2 to 3.16.0 #126

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

📋 Pull Request Information

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

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


📝 Commits (1)

  • 5fd013e fix(deps): bump core-js from 3.15.2 to 3.16.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.15.2 to 3.16.0.

Changelog

Sourced from core-js's changelog.

3.16.0 - 2021.07.30
  • Array find from last proposal moved to the stage 3, July 2021 TC39 meeting
  • Array filtering stage 1 proposal:
    • Array.prototype.filterReject replaces Array.prototype.filterOut
    • %TypedArray%.prototype.filterReject replaces %TypedArray%.prototype.filterOut
  • Added Array grouping stage 1 proposal:
    • Array.prototype.groupBy
    • %TypedArray%.prototype.groupBy
  • Work with symbols made stricter: some missed before cases of methods that should throw an error on symbols now works as they should
  • Handling @@toPrimitive in some cases of ToPrimitive internal logic made stricter
  • Fixed work of Request with polyfilled URLSearchParams, #965
  • Fixed possible exposing of collections elements metadata in some cases, #427
  • Fixed crashing of Object.create(null) on WSH, #966
  • Fixed some cases of typed arrays subclassing logic
  • Fixed a minor bug related to string conversion in RegExp#exec
  • Fixed Date.prototype.getYear feature detection
  • Fixed content of some entry points
  • Some minor optimizations and refactoring
  • Deno:
    • Added Deno support (sure, after bundling since Deno does not support CommonJS)
    • Allowed deno target in core-js-compat / core-js-builder
    • A bundle for Deno published on deno.land/x/corejs
  • Added / updated compat data / mapping:
    • Deno 1.0-1.13
    • NodeJS up to 16.6
    • iOS Safari up to 15.0
    • Samsung Internet up to 15.0
    • Opera Android up to 64
    • Object.hasOwn marked as supported from V8 9.3 and FF92
    • Date.prototype.getYear marked as not supported in IE8-
  • Added summary option to core-js-builder, see more info in the README, #910
Commits

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/121 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/2/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/core-js-3.16.0` --- ### 📝 Commits (1) - [`5fd013e`](https://github.com/ArthurDanjou/website-old/commit/5fd013ee9429ffc47ccba812faefe5669f4a0a20) fix(deps): bump core-js from 3.15.2 to 3.16.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.15.2 to 3.16.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>3.16.0 - 2021.07.30</h5> <ul> <li><a href="https://github.com/tc39/proposal-array-find-from-last"><code>Array</code> find from last proposal</a> moved to the stage 3, <a href="https://github-redirect.dependabot.com/tc39/proposal-array-find-from-last/pull/47">July 2021 TC39 meeting</a></li> <li><a href="https://github.com/tc39/proposal-array-filtering"><code>Array</code> filtering stage 1 proposal</a>: <ul> <li><code>Array.prototype.filterReject</code> replaces <code>Array.prototype.filterOut</code></li> <li><code>%TypedArray%.prototype.filterReject</code> replaces <code>%TypedArray%.prototype.filterOut</code></li> </ul> </li> <li>Added <a href="https://github.com/tc39/proposal-array-grouping"><code>Array</code> grouping stage 1 proposal</a>: <ul> <li><code>Array.prototype.groupBy</code></li> <li><code>%TypedArray%.prototype.groupBy</code></li> </ul> </li> <li>Work with symbols made stricter: some missed before cases of methods that should throw an error on symbols now works as they should</li> <li>Handling <code>@@toPrimitive</code> in some cases of <code>ToPrimitive</code> internal logic made stricter</li> <li>Fixed work of <code>Request</code> with polyfilled <code>URLSearchParams</code>, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/965">#965</a></li> <li>Fixed possible exposing of collections elements metadata in some cases, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/427">#427</a></li> <li>Fixed crashing of <code>Object.create(null)</code> on WSH, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/966">#966</a></li> <li>Fixed some cases of typed arrays subclassing logic</li> <li>Fixed a minor bug related to string conversion in <code>RegExp#exec</code></li> <li>Fixed <code>Date.prototype.getYear</code> feature detection</li> <li>Fixed content of some entry points</li> <li>Some minor optimizations and refactoring</li> <li>Deno: <ul> <li>Added Deno support (sure, after bundling since Deno does not support CommonJS)</li> <li>Allowed <code>deno</code> target in <code>core-js-compat</code> / <code>core-js-builder</code></li> <li>A bundle for Deno published on <a href="https://deno.land/x/corejs">deno.land/x/corejs</a></li> </ul> </li> <li>Added / updated compat data / mapping: <ul> <li>Deno 1.0-1.13</li> <li>NodeJS up to 16.6</li> <li>iOS Safari up to 15.0</li> <li>Samsung Internet up to 15.0</li> <li>Opera Android up to 64</li> <li><code>Object.hasOwn</code> marked as supported from <a href="https://chromestatus.com/feature/5662263404920832">V8 9.3</a> and <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1721149">FF92</a></li> <li><code>Date.prototype.getYear</code> marked as not supported in IE8-</li> </ul> </li> <li>Added <code>summary</code> option to <code>core-js-builder</code>, see more info in the <a href="https://github.com/zloirock/core-js/blob/master/packages/core-js-builder/README.md"><code>README</code></a>, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/910">#910</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zloirock/core-js/commit/89686ea7429ad46a05040269be44395e3760837d"><code>89686ea</code></a> 3.16.0</li> <li><a href="https://github.com/zloirock/core-js/commit/70dc9b3a82b6e64560f5dad9535162dc6b97e6e8"><code>70dc9b3</code></a> update dependencies</li> <li><a href="https://github.com/zloirock/core-js/commit/26af5ccecb63f0531efd276f0e982850019bb785"><code>26af5cc</code></a> some stylistic fixes</li> <li><a href="https://github.com/zloirock/core-js/commit/c59ec1599872a5d8fa477f8c0e7a15caedbd5cf4"><code>c59ec15</code></a> add NodeJS 16.6 compat data mapping</li> <li><a href="https://github.com/zloirock/core-js/commit/92eb5dd373fcaa5f1a5055f1f1818e80f409a6a5"><code>92eb5dd</code></a> fix content of some entry points</li> <li><a href="https://github.com/zloirock/core-js/commit/ba97391f1b22b53d97157cc6ea23c7c1941dfe3c"><code>ba97391</code></a> disable <code>Symbol constructor throws on symbol argument</code> test</li> <li><a href="https://github.com/zloirock/core-js/commit/22c8126f46e16eddb24345f938261b809da4e0ea"><code>22c8126</code></a> fix a typo</li> <li><a href="https://github.com/zloirock/core-js/commit/7ac390056b88ae50e744c38a123cd536b812d0da"><code>7ac3900</code></a> fix a typo</li> <li><a href="https://github.com/zloirock/core-js/commit/ac93365c564d8b7d25f90abdcf17a1f02b20bfb3"><code>ac93365</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/959">#959</a> from zloirock/array-grouping</li> <li><a href="https://github.com/zloirock/core-js/commit/07846560b8ffc61573b54a2da9bbb145f167edf5"><code>0784656</code></a> IE10 fix</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/compare/v3.15.2...v3.16.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.15.2&new-version=3.16.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:01 +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#126