[PR #261] [MERGED] Bump webpack from 4.37.0 to 4.38.0 #340

Closed
opened 2026-02-26 05:34:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nextcloud/twofactor_gateway/pull/261
Author: @dependabot-preview[bot]
Created: 7/29/2019
Status: Merged
Merged: 7/29/2019
Merged by: @dependabot-preview[bot]

Base: masterHead: dependabot/npm_and_yarn/webpack-4.38.0


📝 Commits (1)

  • f2ef6d7 Bump webpack from 4.37.0 to 4.38.0

📊 Changes

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

View changed files

📝 package-lock.json (+3 -3)
📝 package.json (+1 -1)

📄 Description

Bumps webpack from 4.37.0 to 4.38.0.

Release notes

Sourced from webpack's releases.

v4.38.0

Performance

  • Improved performance of ProgressPlugin
  • Improved performance of chunk graph generation
    • This can boost performance when many chunks are used, especially incremental build performance
    • Modules from parent chunks are now tracked during chunk graph generation, which allows to skip these modules in async chunks. This often renders optimization.removeAvailableModules unneeded, expect in scenarios where chunks are merged during optimization.
  • optimization.removeAvailableModules is now disabled in development mode by default
    • optimization.removeAvailableModules will be disabled for all modes in next major release, feel free to disable it in production too if you want extra performance.
Commits
  • ae3db13 4.38.0
  • 9741565 Merge pull request #9472 from webpack/performance/chunk-group-available
  • 81017d5 update stats snapshot because of additional logging
  • a2c0461 disable optimization.removeAvailableModules in development by default
  • 2e0ce0d less memory, reduce timing verbosity
  • 126fb99 move chunk graph building into separate file
  • 2686baf Merge pull request #9469 from webpack/dependabot/npm_and_yarn/eslint-plugin-j...
  • 55f034b chore(deps-dev): bump eslint-plugin-jsdoc from 15.7.1 to 15.7.2
  • b088914 Merge pull request #9466 from webpack/performance/progress
  • 5a27b8f Merge pull request #9462 from webpack/dependabot/npm_and_yarn/eslint-plugin-j...
  • 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.

If all status checks pass Dependabot will automatically merge this pull request.


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 ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it
  • @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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.


🔄 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/nextcloud/twofactor_gateway/pull/261 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 7/29/2019 **Status:** ✅ Merged **Merged:** 7/29/2019 **Merged by:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/webpack-4.38.0` --- ### 📝 Commits (1) - [`f2ef6d7`](https://github.com/nextcloud/twofactor_gateway/commit/f2ef6d7fa49b172df9c3f8a675211a8d500d39d6) Bump webpack from 4.37.0 to 4.38.0 ### 📊 Changes **2 files changed** (+4 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+3 -3) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 4.37.0 to 4.38.0. <details> <summary>Release notes</summary> *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.38.0 > # Performance > > * Improved performance of ProgressPlugin > * Improved performance of chunk graph generation > * This can boost performance when many chunks are used, especially incremental build performance > * Modules from parent chunks are now tracked during chunk graph generation, which allows to skip these modules in async chunks. This often renders `optimization.removeAvailableModules` unneeded, expect in scenarios where chunks are merged during optimization. > * `optimization.removeAvailableModules` is now disabled in development mode by default > * `optimization.removeAvailableModules` will be disabled for all modes in next major release, feel free to disable it in production too if you want extra performance. </details> <details> <summary>Commits</summary> - [`ae3db13`](https://github.com/webpack/webpack/commit/ae3db13d7db6dbcdc27f2f3095b532c60c9de1c9) 4.38.0 - [`9741565`](https://github.com/webpack/webpack/commit/9741565588c64f82d942ec1096f0296ffd9443f4) Merge pull request [#9472](https://github-redirect.dependabot.com/webpack/webpack/issues/9472) from webpack/performance/chunk-group-available - [`81017d5`](https://github.com/webpack/webpack/commit/81017d583a2e9a54dd3337e3558923179de694d2) update stats snapshot because of additional logging - [`a2c0461`](https://github.com/webpack/webpack/commit/a2c0461e0078087a3f98dbf95b1a68015bc373bf) disable optimization.removeAvailableModules in development by default - [`2e0ce0d`](https://github.com/webpack/webpack/commit/2e0ce0d1a9c3f4bd29c16ec9aa52bc068c8178e5) less memory, reduce timing verbosity - [`126fb99`](https://github.com/webpack/webpack/commit/126fb9912187fc8a09d00f831267e1eae85c4984) move chunk graph building into separate file - [`2686baf`](https://github.com/webpack/webpack/commit/2686bafd864344353a8cb35f62af7a7184cd559a) Merge pull request [#9469](https://github-redirect.dependabot.com/webpack/webpack/issues/9469) from webpack/dependabot/npm_and_yarn/eslint-plugin-j... - [`55f034b`](https://github.com/webpack/webpack/commit/55f034b303d644dc3358ef3e7905b2d330d18623) chore(deps-dev): bump eslint-plugin-jsdoc from 15.7.1 to 15.7.2 - [`b088914`](https://github.com/webpack/webpack/commit/b088914eacd67b1884ed93142eda4de89c89b013) Merge pull request [#9466](https://github-redirect.dependabot.com/webpack/webpack/issues/9466) from webpack/performance/progress - [`5a27b8f`](https://github.com/webpack/webpack/commit/5a27b8f2603b2e006d69d20167f687f95aebd044) Merge pull request [#9462](https://github-redirect.dependabot.com/webpack/webpack/issues/9462) from webpack/dependabot/npm_and_yarn/eslint-plugin-j... - Additional commits viewable in [compare view](https://github.com/webpack/webpack/compare/v4.37.0...v4.38.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.37.0&new-version=4.38.0)](https://dependabot.com/compatibility-score.html?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.37.0&new-version=4.38.0) 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) If all status checks pass Dependabot will automatically merge this pull request. [//]: # (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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it). To ignore the version in this PR you can just close it - `@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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot. </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 05:34:39 +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/twofactor_gateway-nextcloud#340
No description provided.