[PR #153] [CLOSED] Bump webpack from 4.26.0 to 4.27.1 #248

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

📋 Pull Request Information

Original PR: https://github.com/nextcloud/twofactor_gateway/pull/153
Author: @dependabot-preview[bot]
Created: 12/6/2018
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/webpack-4.27.1


📝 Commits (1)

  • 7dbd39c Bump webpack from 4.26.0 to 4.27.1

📊 Changes

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

View changed files

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

📄 Description

Bumps webpack from 4.26.0 to 4.27.1.

Release notes

Sourced from webpack's releases.

v4.27.1

Bugfixes

  • v4.27.1 accidentially introduced a breaking change. This reverts the change and restores the original behavior for splitChunks enforce.

v4.27.0

Features

  • When using functions as plugins they are now also called with the compiler as parameter
    • This make it possible to use arrow functions as plugins
  • splitChunks.maxSize now emits a warning when minSize > maxSize
  • Loaders have now access to a getResolve method to create their own resolver function with custom options

Bugfixes

  • splitChunks.cacheGroups.xxx.enforce now behaves as documented and enforce chunk creation
  • splitChunks.cacheGroups.xxx.enforce now no longer deletes minSize for maxSize
  • fixes a bug where splitChunks cause cacheGroups to be incorrectly merged when using the same name
    • now conditions are considered per cacheGroup
    • the correct cache group comment is displayed in stats
  • fixes a bug which causes providedExports not to be updated on rebuilds when using export * from

v4.26.1

Bugfixes

  • fix a bug where splitChunks.maxSize causes a hanging build
  • fix a bug where splitChunks.maxSize crashes when minSize > maxSize
  • fix a edgecase where splitChunks.maxSize can cause chunks bigger than minSize
  • remove unnecessary code from global builtin
Commits
  • 4056506 4.27.1
  • f29ca64 Merge pull request #8466 from webpack/bugfix/splitChunks-enforce
  • b56727e enforce should not prevent using minChunks etc. on cacheGroup
  • f47bf8b 4.27.0
  • a67ffcd Merge pull request #8452 from webpack/feature/resolveWithOptions
  • 96f625c Merge pull request #8457 from webpack/bugfix/rebuild-provided-exports
  • 56feccc convert test case to normal function for node.js 6 support
  • 2f4296e fix a bug which causes incorrect providedExports for cached modules
  • f944002 Merge pull request #8451 from webpack/bugfix/split-chunks
  • 162da1c add getResolve method to loader context
  • 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 will not automatically merge this PR because it includes a minor update to a development dependency.


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 cancel merge will cancel a previously requested merge
  • @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 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)
  • @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/153 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 12/6/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/webpack-4.27.1` --- ### 📝 Commits (1) - [`7dbd39c`](https://github.com/nextcloud/twofactor_gateway/commit/7dbd39c278f94fecc8f78a5fac79446222d472de) Bump webpack from 4.26.0 to 4.27.1 ### 📊 Changes **2 files changed** (+22 additions, -22 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+21 -21) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 4.26.0 to 4.27.1. <details> <summary>Release notes</summary> *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.27.1 > # Bugfixes > > * v4.27.1 accidentially introduced a breaking change. This reverts the change and restores the original behavior for `splitChunks` `enforce`. > > ## v4.27.0 > # Features > > * When using functions as plugins they are now also called with the compiler as parameter > * This make it possible to use arrow functions as plugins > * splitChunks.maxSize now emits a warning when minSize > maxSize > * Loaders have now access to a `getResolve` method to create their own resolver function with custom options > > # Bugfixes > > * splitChunks.cacheGroups.xxx.enforce now behaves as documented and enforce chunk creation > * splitChunks.cacheGroups.xxx.enforce now no longer deletes minSize for maxSize > * fixes a bug where splitChunks cause cacheGroups to be incorrectly merged when using the same name > * now conditions are considered per cacheGroup > * the correct cache group comment is displayed in stats > * fixes a bug which causes providedExports not to be updated on rebuilds when using `export * from` > > ## v4.26.1 > # Bugfixes > > * fix a bug where splitChunks.maxSize causes a hanging build > * fix a bug where splitChunks.maxSize crashes when minSize > maxSize > * fix a edgecase where splitChunks.maxSize can cause chunks bigger than minSize > * remove unnecessary code from global builtin </details> <details> <summary>Commits</summary> - [`4056506`](https://github.com/webpack/webpack/commit/4056506488c1e071dfc9a0127daa61bf531170bf) 4.27.1 - [`f29ca64`](https://github.com/webpack/webpack/commit/f29ca64ebb7c9653254c0a6818c52e344b9519d8) Merge pull request [#8466](https://github-redirect.dependabot.com/webpack/webpack/issues/8466) from webpack/bugfix/splitChunks-enforce - [`b56727e`](https://github.com/webpack/webpack/commit/b56727ec83cb221f299980f2908fea7473b2c488) enforce should not prevent using `minChunks` etc. on cacheGroup - [`f47bf8b`](https://github.com/webpack/webpack/commit/f47bf8b64f9698cb05eff62832a04267823039cf) 4.27.0 - [`a67ffcd`](https://github.com/webpack/webpack/commit/a67ffcda1c6ffe0a08a34d3b944fec0db38ad57a) Merge pull request [#8452](https://github-redirect.dependabot.com/webpack/webpack/issues/8452) from webpack/feature/resolveWithOptions - [`96f625c`](https://github.com/webpack/webpack/commit/96f625c5e3ca53576488a5b6fdf838f32f7d4045) Merge pull request [#8457](https://github-redirect.dependabot.com/webpack/webpack/issues/8457) from webpack/bugfix/rebuild-provided-exports - [`56feccc`](https://github.com/webpack/webpack/commit/56feccc3699d1c2bf29e2482670eccd97704fb8b) convert test case to normal function for node.js 6 support - [`2f4296e`](https://github.com/webpack/webpack/commit/2f4296e8d9ed2d46220628e9c9005258c0f49236) fix a bug which causes incorrect providedExports for cached modules - [`f944002`](https://github.com/webpack/webpack/commit/f944002bcd75c378e274787dea5574666a705744) Merge pull request [#8451](https://github-redirect.dependabot.com/webpack/webpack/issues/8451) from webpack/bugfix/split-chunks - [`162da1c`](https://github.com/webpack/webpack/commit/162da1c509943a61b5470b2ec1042ff8e75455af) add getResolve method to loader context - Additional commits viewable in [compare view](https://github.com/webpack/webpack/compare/v4.26.0...v4.27.1) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.26.0&new-version=4.27.1)](https://dependabot.com/compatibility-score.html?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.26.0&new-version=4.27.1) 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 will **not** automatically merge this PR because it includes a minor update to a development dependency. --- <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 cancel merge` will cancel a previously requested merge - `@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 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) - `@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:08 +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#248
No description provided.