[PR #713] [MERGED] fix(deps): bump core-js from 3.39.0 to 3.44.0 in /web #718

Closed
opened 2026-03-03 16:39:47 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NdoleStudio/httpsms/pull/713
Author: @dependabot[bot]
Created: 8/1/2025
Status: Merged
Merged: 9/1/2025
Merged by: @AchoArnold

Base: mainHead: dependabot/npm_and_yarn/web/core-js-3.44.0


📝 Commits (1)

  • 5fb8ad7 fix(deps): bump core-js from 3.39.0 to 3.44.0 in /web

📊 Changes

2 files changed (+7 additions, -7 deletions)

View changed files

📝 web/package.json (+1 -1)
📝 web/pnpm-lock.yaml (+6 -6)

📄 Description

Bumps core-js from 3.39.0 to 3.44.0.

Changelog

Sourced from core-js's changelog.

3.44.0 - 2025.07.07
3.43.0 - 2025.06.09
  • Changes v3.42.0...v3.43.0 (139 commits)
  • Explicit Resource Management proposals:
    • Built-ins:
      • Symbol.dispose
      • Symbol.asyncDispose
      • SuppressedError
      • DisposableStack
        • DisposableStack.prototype.dispose
        • DisposableStack.prototype.use
        • DisposableStack.prototype.adopt
        • DisposableStack.prototype.defer
        • DisposableStack.prototype.move
        • DisposableStack.prototype[@@dispose]
      • AsyncDisposableStack
        • AsyncDisposableStack.prototype.disposeAsync
        • AsyncDisposableStack.prototype.use
        • AsyncDisposableStack.prototype.adopt
        • AsyncDisposableStack.prototype.defer
        • AsyncDisposableStack.prototype.move
        • AsyncDisposableStack.prototype[@@asyncDispose]
      • Iterator.prototype[@@dispose]

... (truncated)

Commits
  • 3e7b462 v3.44.0
  • 08711bb fix some links
  • 627e897 Merge pull request #1443 from zloirock/sliding
  • 1f2c6ad update some links
  • 6f959ae Iterator.concat no longer reuses IteratorResult object of concatenated it...
  • f9f15c2 clamp no longer throws an error on NaN as min or max
  • afc1ccf sliding & windows implementation unification
  • 9a31345 Iterator#sliding implementation
  • 2e84cd6 Iterator#sliding implementation
  • a80da01 Iterator#windows update logic
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Note

Automatic rebases have been disabled on this pull request as it has been open for over 30 days.


🔄 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/NdoleStudio/httpsms/pull/713 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/1/2025 **Status:** ✅ Merged **Merged:** 9/1/2025 **Merged by:** [@AchoArnold](https://github.com/AchoArnold) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/web/core-js-3.44.0` --- ### 📝 Commits (1) - [`5fb8ad7`](https://github.com/NdoleStudio/httpsms/commit/5fb8ad785a8d18cd68c68692835025726622183d) fix(deps): bump core-js from 3.39.0 to 3.44.0 in /web ### 📊 Changes **2 files changed** (+7 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `web/package.json` (+1 -1) 📝 `web/pnpm-lock.yaml` (+6 -6) </details> ### 📄 Description Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.39.0 to 3.44.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.44.0">3.44.0 - 2025.07.07</a></h5> <ul> <li>Changes <a href="https://github.com/zloirock/core-js/compare/v3.43.0...v3.44.0">v3.43.0...v3.44.0</a> (87 commits)</li> <li><a href="https://github.com/tc39/proposal-arraybuffer-base64"><code>Uint8Array</code> to / from base64 and hex stage 3 proposal</a>: <ul> <li>Fixed <a href="https://redirect.github.com/zloirock/core-js/issues/1439">several V8 bugs</a> in <code>Uint8Array.fromHex</code> and <code>Uint8Array.prototype.{ setFromBase64, toBase64, toHex }</code>, thanks <a href="https://github.com/brc-dd"><strong><code>@​brc-dd</code></strong></a></li> </ul> </li> <li><a href="https://github.com/tc39/proposal-joint-iteration">Joint iteration stage 2.7 proposal</a>: <ul> <li>Uses <code>Get</code> in <code>Iterator.zipKeyed</code>, following <a href="https://redirect.github.com/tc39/proposal-joint-iteration/pull/43">tc39/proposal-joint-iteration#43</a></li> </ul> </li> <li><a href="https://github.com/tc39/proposal-iterator-sequencing"><code>Iterator</code> sequencing stage 2.7 proposal</a>: <ul> <li><code>Iterator.concat</code> no longer reuses <code>IteratorResult</code> object of concatenated iterators, following <a href="https://redirect.github.com/tc39/proposal-iterator-sequencing/pull/26">tc39/proposal-iterator-sequencing#26</a></li> </ul> </li> <li><a href="https://github.com/tc39/proposal-iterator-chunking"><code>Iterator</code> chunking stage 2 proposal</a>: <ul> <li>Added built-ins: <ul> <li><code>Iterator.prototype.sliding</code></li> </ul> </li> </ul> </li> <li><a href="https://github.com/tc39/proposal-math-clamp"><code>Number.prototype.clamp</code> stage 2 proposal</a>: <ul> <li><code>clamp</code> no longer throws an error on <code>NaN</code> as <code>min</code> or <code>max</code>, following <a href="https://github.com/tc39/proposal-math-clamp/commit/d2387791c265edf66fbe2455eab919016717ce6f">tc39/proposal-math-clamp#d2387791c265edf66fbe2455eab919016717ce6f</a></li> </ul> </li> <li>Fixed some cases of <code>Set.prototype.{ symmetricDifference, union }</code> detection</li> <li>Added missing dependencies to some entries of static <code>Iterator</code> methods</li> <li>Added missing <code>/full/{ instance, number/virtual }/clamp</code> entries</li> <li>Some minor stylistic changes</li> <li>Compat data improvements: <ul> <li>Added Electron 38 and 39 compat data mapping</li> <li>Added Oculus Quest Browser 38 and 39 compat data mapping</li> <li><code>Iterator</code> helpers marked as fixed and updated following the latest spec changes in Safari 26.0</li> <li><code>Set.prototype.{ difference, symmetricDifference, union }</code> marked as fixed in Safari 26.0</li> <li><code>SuppressedError</code> marked <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1971000">as fixed</a> in FF141</li> <li><code>Error.isError</code> marked <a href="https://redirect.github.com/nodejs/node/pull/58691">as fixed</a> in Node 24.3</li> <li><code>setImmediate</code> and <code>clearImmediate</code> marked as available <a href="https://redirect.github.com/denoland/deno/pull/29877">from Deno 2.4</a></li> <li><code>Math.sumPrecise</code> marked as <a href="https://redirect.github.com/oven-sh/bun/pull/20569">shipped in Bun 1.2.18</a></li> <li><code>%TypedArray%.prototype.with</code> marked as fixed in Bun 1.2.18</li> </ul> </li> </ul> <h5><a href="https://github.com/zloirock/core-js/releases/tag/v3.43.0">3.43.0 - 2025.06.09</a></h5> <ul> <li>Changes <a href="https://github.com/zloirock/core-js/compare/v3.42.0...v3.43.0">v3.42.0...v3.43.0</a> (139 commits)</li> <li><a href="https://github.com/tc39/proposal-explicit-resource-management">Explicit Resource Management proposals</a>: <ul> <li>Built-ins: <ul> <li><code>Symbol.dispose</code></li> <li><code>Symbol.asyncDispose</code></li> <li><code>SuppressedError</code></li> <li><code>DisposableStack</code> <ul> <li><code>DisposableStack.prototype.dispose</code></li> <li><code>DisposableStack.prototype.use</code></li> <li><code>DisposableStack.prototype.adopt</code></li> <li><code>DisposableStack.prototype.defer</code></li> <li><code>DisposableStack.prototype.move</code></li> <li><code>DisposableStack.prototype[@@dispose]</code></li> </ul> </li> <li><code>AsyncDisposableStack</code> <ul> <li><code>AsyncDisposableStack.prototype.disposeAsync</code></li> <li><code>AsyncDisposableStack.prototype.use</code></li> <li><code>AsyncDisposableStack.prototype.adopt</code></li> <li><code>AsyncDisposableStack.prototype.defer</code></li> <li><code>AsyncDisposableStack.prototype.move</code></li> <li><code>AsyncDisposableStack.prototype[@@asyncDispose]</code></li> </ul> </li> <li><code>Iterator.prototype[@@dispose]</code></li> </ul> </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/3e7b462d5662d3afaef35efa3cdb9fe9ffe1a2ad"><code>3e7b462</code></a> v3.44.0</li> <li><a href="https://github.com/zloirock/core-js/commit/08711bbf2fd55846bf13bdedb3f6fc81ee84791f"><code>08711bb</code></a> fix some links</li> <li><a href="https://github.com/zloirock/core-js/commit/627e8974024e181bb3786a1c7e345bd21d4639c8"><code>627e897</code></a> Merge pull request <a href="https://github.com/zloirock/core-js/tree/HEAD/packages/core-js/issues/1443">#1443</a> from zloirock/sliding</li> <li><a href="https://github.com/zloirock/core-js/commit/1f2c6ad799c5e50842d0085e5c09e84eedc65022"><code>1f2c6ad</code></a> update some links</li> <li><a href="https://github.com/zloirock/core-js/commit/6f959ae2267a3f6fe6af241c7534e4216eb575bd"><code>6f959ae</code></a> <code>Iterator.concat</code> no longer reuses <code>IteratorResult</code> object of concatenated it...</li> <li><a href="https://github.com/zloirock/core-js/commit/f9f15c2b3d47db59ff7decdc90938855a071de2a"><code>f9f15c2</code></a> <code>clamp</code> no longer throws an error on <code>NaN</code> as <code>min</code> or <code>max</code></li> <li><a href="https://github.com/zloirock/core-js/commit/afc1ccf7dfb8ca3f6a800c6823cd9373daca1d5b"><code>afc1ccf</code></a> sliding &amp; windows implementation unification</li> <li><a href="https://github.com/zloirock/core-js/commit/9a31345734080c61f726b8cb708de92a2ebbd1fc"><code>9a31345</code></a> Iterator#sliding implementation</li> <li><a href="https://github.com/zloirock/core-js/commit/2e84cd6521b0af8a5c44afc4f61742f82895e9ef"><code>2e84cd6</code></a> Iterator#sliding implementation</li> <li><a href="https://github.com/zloirock/core-js/commit/a80da01d7f2276ac10908d4a5f5b9fdf25812f41"><code>a80da01</code></a> Iterator#windows update logic</li> <li>Additional commits viewable in <a href="https://github.com/zloirock/core-js/commits/v3.44.0/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.39.0&new-version=3.44.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 16:39:47 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/httpsms#718
No description provided.