Skip to content

Commit

Permalink
Bump core-js from 3.29.1 to 3.31.1 (#207)
Browse files Browse the repository at this point in the history
Bumps
[core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js)
from 3.29.1 to 3.31.1.
<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.31.1">3.31.1 -
2023.07.06</a></h5>
<ul>
<li>Fixed a <code>structuredClone</code> bug with cloning views of
transferred buffers, <a
href="https://redirect.github.com/zloirock/core-js/issues/1265">#1265</a></li>
<li>Fixed the order of arguments validation in <code>DataView</code>
methods</li>
<li>Allowed cloning of <a
href="https://github.com/tc39/proposal-float16array"><code>Float16Array</code></a>
in <code>structuredClone</code></li>
<li>Compat data improvements:
<ul>
<li><a
href="https://github.com/tc39/proposal-set-methods"><code>Set</code>
methods proposal</a> marked as <a
href="https://developer.apple.com/documentation/safari-release-notes/safari-17-release-notes#JavaScript">supported
from Safari 17.0</a></li>
<li>New <code>URL</code> features: <a
href="https://url.spec.whatwg.org/#dom-url-canparse"><code>URL.canParse</code></a>,
<a
href="https://url.spec.whatwg.org/#dom-urlsearchparams-size"><code>URLSearchParams.prototype.size</code></a>
and <a
href="https://url.spec.whatwg.org/#dom-urlsearchparams-delete"><code>value</code>
argument of <code>URLSearchParams.prototype.{ has, delete }</code></a>
marked as <a
href="https://developer.apple.com/documentation/safari-release-notes/safari-17-release-notes#Web-API">supported
from Safari 17.0</a></li>
<li><code>value</code> argument of <code>URLSearchParams.prototype.{
has, delete }</code> marked as supported from <a
href="https://redirect.github.com/denoland/deno/pull/19654">Deno
1.35</a></li>
<li><code>AggregateError</code> and well-formed
<code>JSON.stringify</code> marked as <a
href="https://reactnative.dev/blog/2023/06/21/0.72-metro-package-exports-symlinks#more-ecmascript-support-in-hermes">supported
React Native 0.72 Hermes</a></li>
<li>Added Deno 1.35 compat data mapping</li>
<li>Added Quest Browser 28 compat data mapping</li>
<li>Added missing NodeJS 12.16-12.22 compat data mapping</li>
<li>Updated Opera Android 76 compat data mapping</li>
</ul>
</li>
</ul>
<h5><a
href="https://github.com/zloirock/core-js/releases/tag/v3.31.0">3.31.0 -
2023.06.12</a></h5>
<ul>
<li><a href="https://github.com/tc39/proposal-is-usv-string">Well-formed
unicode strings proposal</a>:
<ul>
<li>Methods:
<ul>
<li><code>String.prototype.isWellFormed</code> method</li>
<li><code>String.prototype.toWellFormed</code> method</li>
</ul>
</li>
<li>Moved to stable ES, <a
href="https://github.com/tc39/notes/blob/main/meetings/2023-05/may-15.md#well-formed-unicode-strings-for-stage-4">May
2023 TC39 meeting</a></li>
<li>Added <code>es.</code> namespace modules, <code>/es/</code> and
<code>/stable/</code> namespaces entries</li>
</ul>
</li>
<li><a
href="https://github.com/tc39/proposal-array-grouping"><code>Array</code>
grouping proposal</a>, <a
href="https://github.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#arrayprototypegroup-rename-for-web-compatibility">May
2023 TC39 meeting updates</a>:
<ul>
<li>Because of the <a
href="https://redirect.github.com/tc39/proposal-array-grouping/issues/44">web
compat issue</a>, <a
href="https://redirect.github.com/tc39/proposal-array-grouping/pull/47">moved
from prototype to static methods</a>. Added:
<ul>
<li><code>Object.groupBy</code> method</li>
<li><code>Map.groupBy</code> method (with the actual semantic - with a
minor difference it was present <a
href="https://github.com/tc39/proposal-collection-methods">in the
collections methods stage 1 proposal</a>)</li>
</ul>
</li>
<li>Demoted to stage 2</li>
</ul>
</li>
<li><a
href="https://github.com/tc39/proposal-decorator-metadata">Decorator
Metadata proposal</a>, <a
href="https://github.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#decorator-metadata-for-stage-3">May
2023 TC39 meeting updates</a>:
<ul>
<li>Moved to stage 3</li>
<li>Added <code>Function.prototype[Symbol.metadata]</code> (<code>===
null</code>)</li>
<li>Added <code>/actual/</code> entries</li>
</ul>
</li>
<li><a href="https://github.com/tc39/proposal-iterator-helpers">Iterator
Helpers stage 3 proposal</a>:
<ul>
<li>Changed <code>Symbol.iterator</code> fallback from callable check to
<code>undefined</code> / <code>null</code> check, <a
href="https://github.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#iterator-helpers-should-symboliterator-fallback-be-a-callable-check-or-an-undefinednull-check">May
2023 TC39 meeting</a>, <a
href="https://redirect.github.com/tc39/proposal-iterator-helpers/pull/272">proposal-iterator-helpers/272</a></li>
<li>Removed <code>IsCallable</code> check on <code>NextMethod</code>,
deferring errors to <code>Call</code> site, <a
href="https://github.com/tc39/notes/blob/main/meetings/2023-05/may-16.md#iterator-helpers-should-malformed-iterators-fail-early-or-fail-only-when-iterated">May
2023 TC39 meeting</a>, <a
href="https://redirect.github.com/tc39/proposal-iterator-helpers/pull/274">proposal-iterator-helpers/274</a></li>
</ul>
</li>
<li>Added <a
href="https://github.com/tc39/proposal-promise-with-resolvers"><code>Promise.withResolvers</code>
stage 2 proposal</a>:
<ul>
<li><code>Promise.withResolvers</code> method</li>
</ul>
</li>
<li><a
href="https://github.com/tc39/proposal-symbol-predicates"><code>Symbol</code>
predicates stage 2 proposal</a>:
<ul>
<li>The methods renamed to end with <code>Symbol</code>, <a
href="https://github.com/tc39/notes/blob/main/meetings/2023-05/may-15.md#symbol-predicates">May
2023 TC39 meeting</a>:
<ul>
<li><code>Symbol.isRegistered</code> -&gt;
<code>Symbol.isRegisteredSymbol</code> method</li>
<li><code>Symbol.isWellKnown</code> -&gt;
<code>Symbol.isWellKnownSymbol</code> method</li>
</ul>
</li>
</ul>
</li>
<li>Added <code>value</code> argument of
<code>URLSearchParams.prototype.{ has, delete }</code>, <a
href="https://redirect.github.com/whatwg/url/pull/735">url/735</a></li>
<li>Fixed some cases of increasing buffer size in
<code>ArrayBuffer.prototype.{ transfer, transferToFixedLength }</code>
polyfills</li>
<li>Fixed awaiting async
<code>AsyncDisposableStack.prototype.adopt</code> callback, <a
href="https://redirect.github.com/zloirock/core-js/issues/1258">#1258</a></li>
<li>Fixed <code>URLSearchParams#size</code> in ES3 engines (IE8-)</li>
<li>Added a workaround in <code>Object.{ entries, values }</code> for
some IE versions bug with invisible integer keys on
<code>null</code>-prototype objects</li>
<li>Added TypeScript definitions to <code>core-js-compat</code>, <a
href="https://redirect.github.com/zloirock/core-js/issues/1235">#1235</a>,
thanks <a
href="https://github.com/susnux"><strong><code>@​susnux</code></strong></a></li>
<li>Compat data improvements:
<ul>
<li><a
href="https://github.com/tc39/proposal-set-methods"><code>Set.prototype.difference</code></a>
that was missed in Bun because of <a
href="https://redirect.github.com/oven-sh/bun/issues/2309">a bug</a>
added in 0.6.0</li>
<li><code>Array.prototype.{ group, groupToMap }</code> marked as no
longer supported in WebKit runtimes because of the mentioned above web
compat issue. For example, it's disabled from Bun 0.6.2</li>
<li>Methods from the <a
href="https://github.com/tc39/proposal-change-array-by-copy">change
<code>Array</code> by copy proposal</a> marked as supported from
FF115</li>
<li><a
href="https://github.com/tc39/proposal-array-from-async"><code>Array.fromAsync</code></a>
marked as supported from FF115</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/zloirock/core-js/commit/9376c6f8adc252e5fb66ec0dffd10bcb53b3c9cd"><code>9376c6f</code></a>
3.31.1</li>
<li><a
href="https://github.com/zloirock/core-js/commit/bb6571bc3d271b30130d0eb5f928c361aedb3a16"><code>bb6571b</code></a>
some fixes and optimizations</li>
<li><a
href="https://github.com/zloirock/core-js/commit/22895f645dab8362581897ff4211198db5dbd5ec"><code>22895f6</code></a>
fix a <code>structuredClone</code> bug with cloning views of transferred
buffers, close ...</li>
<li><a
href="https://github.com/zloirock/core-js/commit/8b8430cf4cca254856c230d75ea01b6ab266e873"><code>8b8430c</code></a>
update some links</li>
<li><a
href="https://github.com/zloirock/core-js/commit/55608b6965cd445eb5588188b6be9f202a2d29bf"><code>55608b6</code></a>
fix the order of arguments validation in <code>DataView</code>
methods</li>
<li><a
href="https://github.com/zloirock/core-js/commit/199c633ee517a496ce789498a76ad8eeeecfc3a0"><code>199c633</code></a>
3.31.0</li>
<li><a
href="https://github.com/zloirock/core-js/commit/fe4ac8a52dd9e11ab9dd419af43bff18bc456bef"><code>fe4ac8a</code></a>
avoid some extra work</li>
<li><a
href="https://github.com/zloirock/core-js/commit/c22285c6d1f3eee78ec42097289104664cf017d2"><code>c22285c</code></a>
add a workaround in <code>Object.{ entries, values }</code> for some IE
versions bug wit...</li>
<li><a
href="https://github.com/zloirock/core-js/commit/38592f4a9c3f181c78ab946c13500083bde2b40c"><code>38592f4</code></a>
workaround IE bug</li>
<li><a
href="https://github.com/zloirock/core-js/commit/57dd86a3cee9d47f3aaf8070ccfa4282167b1800"><code>57dd86a</code></a>
fix <code>URLSearchParams#size</code> in ES3 engines (IE8-)</li>
<li>Additional commits viewable in <a
href="https://github.com/zloirock/core-js/commits/v3.31.1/packages/core-js">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.29.1&new-version=3.31.1)](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>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jul 17, 2023
1 parent f56c927 commit 57998eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dependencies": {
"@deepmodeling/args": "0.0.7",
"axios": "^1.4.0",
"core-js": "^3.29.1",
"core-js": "^3.31.1",
"register-service-worker": "^1.7.1",
"vue": "^3.2.47",
"vue-axios": "^3.5.2",
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5431,10 +5431,10 @@ __metadata:
languageName: node
linkType: hard

"core-js@npm:^3.29.1":
version: 3.29.1
resolution: "core-js@npm:3.29.1"
checksum: b38446dbfcfd3887b3d4922990da487e2c95044cb4c5717aaf95e786a4c6b218f05c056c7ed6c699169b9794a49fec890e402659d54661fc56965a0eb717e7bd
"core-js@npm:^3.31.1":
version: 3.31.1
resolution: "core-js@npm:3.31.1"
checksum: 14519213a63c55cf188bdd2f4dece54583feaf6b90e75d6c65e07f509cd487055bf64898aeda7c97c36029ac1ea2f2ed8e4b02281553f6a257e7143a32a14015
languageName: node
linkType: hard

Expand Down Expand Up @@ -6049,7 +6049,7 @@ __metadata:
"@vue/cli-service": ~5.0.8
"@vue/compiler-sfc": ^3.3.4
axios: ^1.4.0
core-js: ^3.29.1
core-js: ^3.31.1
crypto-browserify: ^3.12.0
eslint: ^8.44.0
eslint-plugin-vue: ^9.15.1
Expand Down

0 comments on commit 57998eb

Please sign in to comment.