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

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/132
Author: @dependabot[bot]
Created: 8/18/2021
Status: Closed

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


📝 Commits (1)

  • dfef501 fix(deps): bump core-js from 3.15.2 to 3.16.2

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

Changelog

Sourced from core-js's changelog.

3.16.2 - 2021.08.17
  • Added a workaround of a Closure Compiler unsafe optimization, #972
  • One more fix crashing of Object.create(null) on WSH, #970
  • Added Deno 1.14 compat data mapping
3.16.1 - 2021.08.09
  • Fixed microtask implementation on iOS Pebble, #967
  • Fixed some entry points
  • Improved old Safari compat data
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/132 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/18/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/core-js-3.16.2` --- ### 📝 Commits (1) - [`dfef501`](https://github.com/ArthurDanjou/website-old/commit/dfef5017a8437e1b75f4937069c44374cf1384b2) fix(deps): bump core-js from 3.15.2 to 3.16.2 ### 📊 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.2. <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.2 - 2021.08.17</h5> <ul> <li>Added a workaround of a Closure Compiler unsafe optimization, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/972">#972</a></li> <li>One more fix crashing of <code>Object.create(null)</code> on WSH, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/970">#970</a></li> <li>Added Deno 1.14 compat data mapping</li> </ul> <h5>3.16.1 - 2021.08.09</h5> <ul> <li>Fixed microtask implementation on iOS Pebble, <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/967">#967</a></li> <li>Fixed some entry points</li> <li>Improved old Safari compat data</li> </ul> <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/ef826cce45d2896ee92a2a27f6f09c2397e0a8b3"><code>ef826cc</code></a> 3.16.2</li> <li><a href="https://github.com/zloirock/core-js/commit/69601f3cb599355963fc1feab62d938395f18c33"><code>69601f3</code></a> add Deno 1.14 compat data mapping</li> <li><a href="https://github.com/zloirock/core-js/commit/b1d2031df17f349a4bcc301ca0c7d7572c4358b5"><code>b1d2031</code></a> fix a comment</li> <li><a href="https://github.com/zloirock/core-js/commit/1f79e841bad1c9e1dcbf82d74dc549e58c5617fe"><code>1f79e84</code></a> add a workaround of a Closure Compiler unsafe optimization, close <a href="https://github-redirect.dependabot.com/zloirock/core-js/issues/972">#972</a></li> <li><a href="https://github.com/zloirock/core-js/commit/1e01d630497c8fe5e919ccd402b37ebd95cd7a66"><code>1e01d63</code></a> update dependencies</li> <li><a href="https://github.com/zloirock/core-js/commit/f67667811fe6a028659e78bd8e00718cc192cc42"><code>f676678</code></a> update dependencies</li> <li><a href="https://github.com/zloirock/core-js/commit/52e2396ac6728629c4ab1e125fb1a1099ac2e60d"><code>52e2396</code></a> expose <code>usage</code> script for passing args manually</li> <li><a href="https://github.com/zloirock/core-js/commit/ea925077a5e050a3db25ea12d9d1af55e205231d"><code>ea92507</code></a> update dependencies</li> <li><a href="https://github.com/zloirock/core-js/commit/57450cbf4b4a1e42b525ec2d5588c6fa76962a05"><code>57450cb</code></a> update <code>eslint-plugin-regexp</code></li> <li><a href="https://github.com/zloirock/core-js/commit/7414ff1a68bc6849c5937eddc4345c9642558ad6"><code>7414ff1</code></a> update dependencies</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/compare/v3.15.2...v3.16.2">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.2)](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#140