[PR #162] [MERGED] fix(deps): bump webpack from 5.78.0 to 5.79.0 in /web #214

Closed
opened 2026-03-03 16:37:18 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NdoleStudio/httpsms/pull/162
Author: @dependabot[bot]
Created: 4/17/2023
Status: Merged
Merged: 4/17/2023
Merged by: @AchoArnold

Base: mainHead: dependabot/npm_and_yarn/web/webpack-5.79.0


📝 Commits (1)

  • dd522c8 fix(deps): bump webpack from 5.78.0 to 5.79.0 in /web

📊 Changes

3 files changed (+47 additions, -50 deletions)

View changed files

📝 web/package-lock.json (+16 -24)
📝 web/package.json (+1 -1)
📝 web/yarn.lock (+30 -25)

📄 Description

Bumps webpack from 5.78.0 to 5.79.0.

Release notes

Sourced from webpack's releases.

v5.79.0

New Features

Bugfixes

Developer Experience

Contributor Experience

New Contributors

Full Changelog: https://github.com/webpack/webpack/compare/v5.78.0...v5.79.0

Commits
  • ecdcc1a 5.79.0
  • c07ca8e Merge pull request #15608 from webpack/fix/consume-esm-bundled-library
  • 3b8c9c6 Merge pull request #16419 from karlhorky/patch-1
  • a9ea0d9 Merge pull request #16915 from webpack/fix-case-sensitivity-in-css
  • 69d9c40 Merge pull request #16944 from snitin315/fix/read-records-callback
  • 66f6472 Merge pull request #12774 from snitin315/export-more-types
  • 96c5d21 Merge pull request #16882 from snitin315/limit-identifier-length
  • 7f08e4d Merge pull request #16925 from chenjiahan/fix/css_cross_origin_loading
  • ee1a267 Merge pull request #16935 from snitin315/fix/dll-plugin-contenthash
  • 4cacd7e Merge pull request #16941 from webpack/feat/destructuring-assignment
  • Additional commits viewable in compare view

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/NdoleStudio/httpsms/pull/162 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 4/17/2023 **Status:** ✅ Merged **Merged:** 4/17/2023 **Merged by:** [@AchoArnold](https://github.com/AchoArnold) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/web/webpack-5.79.0` --- ### 📝 Commits (1) - [`dd522c8`](https://github.com/NdoleStudio/httpsms/commit/dd522c86edd93bb0f313d15a93a468d9d8eea4df) fix(deps): bump webpack from 5.78.0 to 5.79.0 in /web ### 📊 Changes **3 files changed** (+47 additions, -50 deletions) <details> <summary>View changed files</summary> 📝 `web/package-lock.json` (+16 -24) 📝 `web/package.json` (+1 -1) 📝 `web/yarn.lock` (+30 -25) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 5.78.0 to 5.79.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/webpack/releases">webpack's releases</a>.</em></p> <blockquote> <h2>v5.79.0</h2> <h2>New Features</h2> <ul> <li>webpack will now support simple destructuring scenarios for treeshaking namespaced imports and <code>DefinePlugin</code> by <a href="https://github.com/vankop"><code>@​vankop</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16941">webpack/webpack#16941</a></li> </ul> <h2>Bugfixes</h2> <ul> <li>Truncate extremely long module names in <code>DefaultStatsPrinter</code> by <a href="https://github.com/snitin315"><code>@​snitin315</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16882">webpack/webpack#16882</a></li> <li>Add <code>[contenthash]</code> template support in <code>DllPlugin</code>'s <code>name</code> option by <a href="https://github.com/snitin315"><code>@​snitin315</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16935">webpack/webpack#16935</a></li> <li>Fixed a bug where <code>readRecords</code> compiler hook was causing hangs in conjunction with the <code>ReadRecordsPlugin</code> by <a href="https://github.com/snitin315"><code>@​snitin315</code></a> &amp; <a href="https://github.com/zookatron"><code>@​zookatron</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16944">webpack/webpack#16944</a></li> <li>webpack can now consume ESM bundles generated by webpack's esm output support by <a href="https://github.com/vankop"><code>@​vankop</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/15608">webpack/webpack#15608</a></li> <li>[CSS] - webpack now respects CSS's case-insensitivity with atTags like <code>@MEDIA</code> by <a href="https://github.com/alexander-akait"><code>@​alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16915">webpack/webpack#16915</a></li> <li>[CSS] - Fixes a bug where crossOriginLoading anonymous would not work when loading styles by <a href="https://github.com/chenjiahan"><code>@​chenjiahan</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16925">webpack/webpack#16925</a></li> </ul> <h2>Developer Experience</h2> <ul> <li>Fix broken links and typos found in examples by <a href="https://github.com/snitin315"><code>@​snitin315</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16937">webpack/webpack#16937</a></li> <li>Export more <code>Externals</code> Option types by <a href="https://github.com/snitin315"><code>@​snitin315</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/12774">webpack/webpack#12774</a></li> </ul> <h2>Contributor Experience</h2> <ul> <li>Add new test case for ModuleFederationPlugin usage with <code>shareScope</code> option by <a href="https://github.com/snitin315"><code>@​snitin315</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16943">webpack/webpack#16943</a></li> <li>Bump core-js from 3.20.3 to 3.30.0 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16905">webpack/webpack#16905</a></li> <li>Update all applicable local dependencies and devDependencies by <a href="https://github.com/alexander-akait"><code>@​alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16919">webpack/webpack#16919</a>, <a href="https://redirect.github.com/webpack/webpack/pull/16924">webpack/webpack#16924</a>, <a href="https://redirect.github.com/webpack/webpack/pull/16936">webpack/webpack#16936</a>, <a href="https://redirect.github.com/webpack/webpack/pull/16968">webpack/webpack#16968</a></li> <li>Update to Jest 29 by <a href="https://github.com/alexander-akait"><code>@​alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/webpack/pull/16947">webpack/webpack#16947</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/chenjiahan"><code>@​chenjiahan</code></a> made their first contribution in <a href="https://redirect.github.com/webpack/webpack/pull/16925">webpack/webpack#16925</a></li> <li><a href="https://github.com/karlhorky"><code>@​karlhorky</code></a> made their first contribution in <a href="https://redirect.github.com/webpack/webpack/pull/16419">webpack/webpack#16419</a></li> <li><a href="https://github.com/zookatron"><code>@​zookatron</code></a> made their first contribution in <a href="https://redirect.github.com/webpack/webpack/pull/16301">webpack/webpack#16301</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/webpack/webpack/compare/v5.78.0...v5.79.0">https://github.com/webpack/webpack/compare/v5.78.0...v5.79.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/webpack/commit/ecdcc1a1d02a3097acb9ebc0896365ae1f4d25e2"><code>ecdcc1a</code></a> 5.79.0</li> <li><a href="https://github.com/webpack/webpack/commit/c07ca8e1023df1ff250cea07f2e240120892d2a6"><code>c07ca8e</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/15608">#15608</a> from webpack/fix/consume-esm-bundled-library</li> <li><a href="https://github.com/webpack/webpack/commit/3b8c9c613e7747aaeab31cbd2f89a698823bd12f"><code>3b8c9c6</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/16419">#16419</a> from karlhorky/patch-1</li> <li><a href="https://github.com/webpack/webpack/commit/a9ea0d94a6c454f3f675b9cf2e2aa8d02fb44992"><code>a9ea0d9</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/16915">#16915</a> from webpack/fix-case-sensitivity-in-css</li> <li><a href="https://github.com/webpack/webpack/commit/69d9c405df5cf5ecd182a057f8a0862f1740b2ef"><code>69d9c40</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/16944">#16944</a> from snitin315/fix/read-records-callback</li> <li><a href="https://github.com/webpack/webpack/commit/66f647260d6651a7d3637dd1b1655b49def36c47"><code>66f6472</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/12774">#12774</a> from snitin315/export-more-types</li> <li><a href="https://github.com/webpack/webpack/commit/96c5d21a2f3eb3097119e18fa75cb44983cc52eb"><code>96c5d21</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/16882">#16882</a> from snitin315/limit-identifier-length</li> <li><a href="https://github.com/webpack/webpack/commit/7f08e4d45fe840889f249004b097304c0c14adbf"><code>7f08e4d</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/16925">#16925</a> from chenjiahan/fix/css_cross_origin_loading</li> <li><a href="https://github.com/webpack/webpack/commit/ee1a26715ea1af86034f4e644744809868ba79cb"><code>ee1a267</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/16935">#16935</a> from snitin315/fix/dll-plugin-contenthash</li> <li><a href="https://github.com/webpack/webpack/commit/4cacd7e956ee13657a9830045bde58235cb24c12"><code>4cacd7e</code></a> Merge pull request <a href="https://redirect.github.com/webpack/webpack/issues/16941">#16941</a> from webpack/feat/destructuring-assignment</li> <li>Additional commits viewable in <a href="https://github.com/webpack/webpack/compare/v5.78.0...v5.79.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=5.78.0&new-version=5.79.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>
kerem 2026-03-03 16:37:18 +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#214
No description provided.