Build(deps): bump core-js from 3.32.2 to 3.33.0 #1495

Merged
argoyle merged 1 commits from dependabot-npm_and_yarn-core-js-3.33.0 into master 2023-10-02 13:10:14 +00:00
argoyle commented 2023-10-02 04:39:59 +00:00 (Migrated from gitlab.com)

Bumps core-js from 3.32.2 to 3.33.0.

Changelog

Sourced from core-js's changelog.

3.33.0 - 2023.10.02
Commits
  • d47567b 3.33.0
  • ea68a15 add RegExp.escape
  • cb8cea4 avoid ArrayBufferDetaching protector cell invalidating in modern V8
  • c0f549d fix DataView.prototype.{ getFloat16, setFloat16 } conversion
  • 95fc11e unify Math.f16round and Math.fround
  • 9466445 rework Math.f16round
  • fe28701 add ArrayBuffer.prototype.{ transfer, transferToFixedLength } and support t...
  • e66e477 limit a fallback to RangeError
  • 06b4703 add an extra workaround of errors with exotic environment objects in Symbol...
  • d86daaa review eslint config: enforce new with error constructors
  • Additional commits viewable in compare view


Dependabot commands
You can trigger Dependabot actions by commenting on this MR
  • $dependabot recreate will recreate this MR rewriting all the manual changes and resolving conflicts
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.32.2 to 3.33.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.33.0">3.33.0 - 2023.10.02</a></h5> <ul> <li>Re-introduced <a href="https://github.com/tc39/proposal-regex-escaping"><code>RegExp</code> escaping stage 2 proposal</a>, September 2023 TC39 meeting: <ul> <li>Added <code>RegExp.escape</code> method with the new set of symbols for escaping</li> <li>Some years ago, it was presented in <code>core-js</code>, but it was removed after rejecting the old version of this proposal</li> </ul> </li> <li>Added <a href="https://github.com/tc39/proposal-arraybuffer-transfer"><code>ArrayBuffer.prototype.{ transfer, transferToFixedLength }</code></a> and support transferring of <code>ArrayBuffer</code>s via <a href="https://html.spec.whatwg.org/multipage/structured-data.html#dom-structuredclone"><code>structuredClone</code></a> to engines with <code>MessageChannel</code></li> <li>Optimized <a href="https://github.com/tc39/proposal-float16array"><code>Math.f16round</code></a> polyfill</li> <li>Fixed <a href="https://github.com/petamoriken/float16/issues/1046">some conversion cases</a> of <a href="https://github.com/tc39/proposal-float16array"><code>Math.f16round</code> and <code>DataView.prototype.{ getFloat16, setFloat16 }</code></a></li> <li>Fully forced polyfilling of <a href="https://github.com/tc39/proposal-observable">the TC39 <code>Observable</code> proposal</a> because of incompatibility with <a href="https://github.com/WICG/observable">the new WHATWG <code>Observable</code> proposal</a></li> <li>Added an extra workaround of errors with exotic environment objects in <code>Symbol</code> polyfill, <a href="https://github.com/zloirock/core-js/issues/1289">#1289</a></li> <li>Some minor fixes and stylistic changes</li> <li>Compat data improvements: <ul> <li>V8 unshipped <a href="https://github.com/tc39/proposal-iterator-helpers"><code>Iterator</code> helpers</a> because of <a href="https://github.com/tc39/proposal-iterator-helpers/issues/286">some Web compatibility issues</a></li> <li><a href="https://github.com/tc39/proposal-promise-with-resolvers"><code>Promise.withResolvers</code></a> marked as <a href="https://chromestatus.com/feature/5810984110784512">supported from V8 ~ Chrome 119</a></li> <li><a href="https://github.com/tc39/proposal-array-grouping"><code>Array</code> grouping proposal</a> features marked as <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1792650#c9">supported from FF119</a></li> <li><a href="https://url.spec.whatwg.org/#dom-urlsearchparams-delete"><code>value</code> argument of <code>URLSearchParams.prototype.{ has, delete }</code></a> marked as properly supported from V8 ~ Chrome 118</li> <li><a href="https://url.spec.whatwg.org/#dom-url-canparse"><code>URL.canParse</code></a> and <a href="https://url.spec.whatwg.org/#dom-urlsearchparams-size"><code>URLSearchParams.prototype.size</code></a> marked as <a href="https://github.com/oven-sh/bun/releases/tag/bun-v1.0.2">supported from Bun 1.0.2</a></li> <li>Added Deno 1.37 compat data mapping</li> <li>Added Electron 28 compat data mapping</li> <li>Added Opera Android 78 compat data mapping</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zloirock/core-js/commit/d47567b4c6ecd6e30237dd3848219617a3f08ccb"><code>d47567b</code></a> 3.33.0</li> <li><a href="https://github.com/zloirock/core-js/commit/ea68a1551374bca5c98361ac291cede89d44d0df"><code>ea68a15</code></a> add <code>RegExp.escape</code></li> <li><a href="https://github.com/zloirock/core-js/commit/cb8cea4ca34de0a418e9ee3e6b027d462359f64b"><code>cb8cea4</code></a> avoid ArrayBufferDetaching protector cell invalidating in modern V8</li> <li><a href="https://github.com/zloirock/core-js/commit/c0f549deaef691615c20abad82e5aa989b574594"><code>c0f549d</code></a> fix <code>DataView.prototype.{ getFloat16, setFloat16 }</code> conversion</li> <li><a href="https://github.com/zloirock/core-js/commit/95fc11e177e16230f0df4356b3aa43b8b183c019"><code>95fc11e</code></a> unify <code>Math.f16round</code> and <code>Math.fround</code></li> <li><a href="https://github.com/zloirock/core-js/commit/94664452e5dfc9051b4381abc5a8f2a44506ecbe"><code>9466445</code></a> rework <code>Math.f16round</code></li> <li><a href="https://github.com/zloirock/core-js/commit/fe287012f274e8a19a7d9849ec881aa04a8131ab"><code>fe28701</code></a> add <code>ArrayBuffer.prototype.{ transfer, transferToFixedLength }</code> and support t...</li> <li><a href="https://github.com/zloirock/core-js/commit/e66e477cc25fc176e6977e55468d1ae0c46921c8"><code>e66e477</code></a> limit a fallback to <code>RangeError</code></li> <li><a href="https://github.com/zloirock/core-js/commit/06b4703d6393d58b7885437ab268ddda4103f174"><code>06b4703</code></a> add an extra workaround of errors with exotic environment objects in <code>Symbol</code>...</li> <li><a href="https://github.com/zloirock/core-js/commit/d86daaaae3b8d8c4a0693f9101c33bebf88550a7"><code>d86daaa</code></a> review <code>eslint</code> config: enforce <code>new</code> with error constructors</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/commits/v3.33.0/packages/core-js">compare view</a></li> </ul> </details> <br /> --- <details> <summary>Dependabot commands</summary> <br /> You can trigger Dependabot actions by commenting on this MR - `$dependabot recreate` will recreate this MR rewriting all the manual changes and resolving conflicts </details>
argoyle commented 2023-10-02 13:09:55 +00:00 (Migrated from gitlab.com)

added 3 commits

  • 7e440747...8f3129bb - 2 commits from branch master
  • 35ef5239 - Build(deps): bump core-js from 3.32.2 to 3.33.0

Compare with previous version

added 3 commits <ul><li>7e440747...8f3129bb - 2 commits from branch <code>master</code></li><li>35ef5239 - Build(deps): bump core-js from 3.32.2 to 3.33.0</li></ul> [Compare with previous version](/unboundsoftware/dancefinder/dancefinder-app/-/merge_requests/1446/diffs?diff_id=804302845&start_sha=7e440747ff9a7d4f7d9f7ca16599aa15cf85effd)
argoyle (Migrated from gitlab.com) merged commit into master 2023-10-02 13:10:14 +00:00
Sign in to join this conversation.