[PR #583] [CLOSED] Bump webpack from 5.76.1 to 5.95.0 in /app #602

Closed
opened 2026-02-26 04:35:44 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mageddo/dns-proxy-server/pull/583
Author: @dependabot[bot]
Created: 9/30/2024
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/app/webpack-5.95.0


📝 Commits (1)

  • 198cbbc Bump webpack from 5.76.1 to 5.95.0 in /app

📊 Changes

1 file changed (+298 additions, -187 deletions)

View changed files

📝 app/package-lock.json (+298 -187)

📄 Description

Bumps webpack from 5.76.1 to 5.95.0.

Release notes

Sourced from webpack's releases.

v5.95.0

Bug Fixes

  • Fixed hanging when attempting to read a symlink-like file that it can't read
  • Handle default for import context element dependency
  • Merge duplicate chunks call after split chunks
  • Generate correctly code for dynamically importing the same file twice and destructuring
  • Use content hash as [base] and [name] for extracted DataURI's
  • Distinguish module and import in module-import for externals import's
  • [Types] Make EnvironmentPlugin default values types less strict
  • [Types] Typescript 5.6 compatibility

New Features

  • Add new optimization.avoidEntryIife option (true by default for the production mode)
  • Pass output.hash* options to loader context

Performance

  • Avoid unneeded re-visit in build chunk graph

v5.94.0

Bug Fixes

  • Added runtime condition for harmony reexport checked
  • Handle properly data/http/https protocols in source maps
  • Make bigint optimistic when browserslist not found
  • Move @​types/eslint-scope to dev deps
  • Related in asset stats is now always an array when no related found
  • Handle ASI for export declarations
  • Mangle destruction incorrect with export named default properly
  • Fixed unexpected asi generation with sequence expression
  • Fixed a lot of types

New Features

  • Added new external type "module-import"
  • Support webpackIgnore for new URL() construction
  • [CSS] @import pathinfo support

Security

  • Fixed DOM clobbering in auto public path

v5.93.0

Bug Fixes

  • Generate correct relative path to runtime chunks
  • Makes DefinePlugin quieter under default log level
  • Fixed mangle destructuring default in namespace import

... (truncated)

Commits
  • e20fd63 chore(release): 5.95.0
  • 4866b0d feat: added new optimization.entryIife option
  • d90f692 fix: merge duplicate chunks after split chunks
  • 90dec30 fix(externals): distinguish “module” and “import” in “module-import”
  • c1a0a46 fix(externals): distinguish “module” and “import” in “module-import”
  • 14d8fa8 fix: all tests cases
  • dae16ad feat: pass output.hash* options to loader context
  • 75d185d feat: pass output.hash* options to loader context
  • 46e0b9c test: update
  • 8e62f9f test
  • 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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

🔄 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/mageddo/dns-proxy-server/pull/583 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/30/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/app/webpack-5.95.0` --- ### 📝 Commits (1) - [`198cbbc`](https://github.com/mageddo/dns-proxy-server/commit/198cbbc5d527ccc6eb174aafd25343ff35dee176) Bump webpack from 5.76.1 to 5.95.0 in /app ### 📊 Changes **1 file changed** (+298 additions, -187 deletions) <details> <summary>View changed files</summary> 📝 `app/package-lock.json` (+298 -187) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 5.76.1 to 5.95.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.95.0</h2> <h2>Bug Fixes</h2> <ul> <li>Fixed hanging when attempting to read a symlink-like file that it can't read</li> <li>Handle <code>default</code> for import context element dependency</li> <li>Merge duplicate chunks call after split chunks</li> <li>Generate correctly code for dynamically importing the same file twice and destructuring</li> <li>Use content hash as [base] and [name] for extracted DataURI's</li> <li>Distinguish <code>module</code> and <code>import</code> in <code>module-import</code> for externals <code>import</code>'s</li> <li>[Types] Make <code>EnvironmentPlugin</code> default values types less strict</li> <li>[Types] Typescript 5.6 compatibility</li> </ul> <h2>New Features</h2> <ul> <li>Add new <code>optimization.avoidEntryIife</code> option (<code>true</code> by default for the <code>production</code> mode)</li> <li>Pass output.hash* options to loader context</li> </ul> <h2>Performance</h2> <ul> <li>Avoid unneeded re-visit in build chunk graph</li> </ul> <h2>v5.94.0</h2> <h2>Bug Fixes</h2> <ul> <li>Added runtime condition for harmony reexport checked</li> <li>Handle properly <code>data</code>/<code>http</code>/<code>https</code> protocols in source maps</li> <li>Make <code>bigint</code> optimistic when browserslist not found</li> <li>Move <code>@​types/eslint-scope</code> to dev deps</li> <li>Related in asset stats is now always an array when no related found</li> <li>Handle ASI for export declarations</li> <li>Mangle destruction incorrect with export named default properly</li> <li>Fixed unexpected asi generation with sequence expression</li> <li>Fixed a lot of types</li> </ul> <h2>New Features</h2> <ul> <li>Added new external type &quot;module-import&quot;</li> <li>Support <code>webpackIgnore</code> for <code>new URL()</code> construction</li> <li>[CSS] <code>@import</code> pathinfo support</li> </ul> <h2>Security</h2> <ul> <li>Fixed DOM clobbering in auto public path</li> </ul> <h2>v5.93.0</h2> <h2>Bug Fixes</h2> <ul> <li>Generate correct relative path to runtime chunks</li> <li>Makes <code>DefinePlugin</code> quieter under default log level</li> <li>Fixed mangle destructuring default in namespace import</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/webpack/commit/e20fd634fd24fab2c821a6e6114ace706ca052d0"><code>e20fd63</code></a> chore(release): 5.95.0</li> <li><a href="https://github.com/webpack/webpack/commit/4866b0daf1dfd675a3e5d5b27656bf9529ffa106"><code>4866b0d</code></a> feat: added new <code>optimization.entryIife</code> option</li> <li><a href="https://github.com/webpack/webpack/commit/d90f6920f06b50ccf169b282aff6a8b0a23b43e3"><code>d90f692</code></a> fix: merge duplicate chunks after split chunks</li> <li><a href="https://github.com/webpack/webpack/commit/90dec30ff41ceb745b4e4d39ea1ecdb1cd3e39de"><code>90dec30</code></a> fix(externals): distinguish “module” and “import” in “module-import”</li> <li><a href="https://github.com/webpack/webpack/commit/c1a0a4666e62211a11b1489d16c45e41113b715a"><code>c1a0a46</code></a> fix(externals): distinguish “module” and “import” in “module-import”</li> <li><a href="https://github.com/webpack/webpack/commit/14d8fa8dd563350082a08519154ebce38064759c"><code>14d8fa8</code></a> fix: all tests cases</li> <li><a href="https://github.com/webpack/webpack/commit/dae16ad11e2d2accddc549a92082da3d2e667b01"><code>dae16ad</code></a> feat: pass output.hash* options to loader context</li> <li><a href="https://github.com/webpack/webpack/commit/75d185d27ecc0a73a7a743bc15dc734676da372c"><code>75d185d</code></a> feat: pass <code>output.hash*</code> options to loader context</li> <li><a href="https://github.com/webpack/webpack/commit/46e0b9cc05ae53755cda2d6b6b50be5ce6759d6f"><code>46e0b9c</code></a> test: update</li> <li><a href="https://github.com/webpack/webpack/commit/8e62f9f36b6030ba8de52ec3f6bda43927a1a963"><code>8e62f9f</code></a> test</li> <li>Additional commits viewable in <a href="https://github.com/webpack/webpack/compare/v5.76.1...v5.95.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.76.1&new-version=5.95.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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/mageddo/dns-proxy-server/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 04:35:44 +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/dns-proxy-server-mageddo#602
No description provided.