[PR #164] [CLOSED] Bump webpack from 4.26.0 to 4.28.0 #258

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

📋 Pull Request Information

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

Base: masterHead: dependabot/npm_and_yarn/webpack-4.28.0


📝 Commits (1)

  • b6c89fc Bump webpack from 4.26.0 to 4.28.0

📊 Changes

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

View changed files

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

📄 Description

Bumps webpack from 4.26.0 to 4.28.0.

Release notes

Sourced from webpack's releases.

v4.28.0

Features

  • IgnorePlugin: checkResource has an additional context argument

Bugfixes

  • Injection of node.js globals has been disabled for .mjs files as it's crashing

v4.27.1

Bugfixes

  • v4.27.0 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
  • e871eeb 4.28.0
  • f6d67b6 update examples
  • 573d2da Merge pull request #8511 from isiahmeadows/fix-erroneous-injection
  • 6b54a46 Fix failing test.
  • 14ef010 Fix nits, block require to prevent false positive
  • f2f62c7 Merge pull request #8516 from iliakan/master
  • a9d465f IgnorePlugin: add context argument to checkResource, deprecate checkContext
  • 31de553 Add test
  • 18d7396 Remove a broken hook
  • d5e26f7 Merge pull request #8467 from Connormiha/simplify-append-head
  • 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/164 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 12/20/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/webpack-4.28.0` --- ### 📝 Commits (1) - [`b6c89fc`](https://github.com/nextcloud/twofactor_gateway/commit/b6c89fc57ca52dae88f802055d126c3e5db3e10e) Bump webpack from 4.26.0 to 4.28.0 ### 📊 Changes **2 files changed** (+28 additions, -28 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+27 -27) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 4.26.0 to 4.28.0. <details> <summary>Release notes</summary> *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.28.0 > # Features > > * IgnorePlugin: `checkResource` has an additional `context` argument > > # Bugfixes > > * Injection of node.js globals has been disabled for `.mjs` files as it's crashing > > ## v4.27.1 > # Bugfixes > > * v4.27.0 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> - [`e871eeb`](https://github.com/webpack/webpack/commit/e871eeb121a69efd6cbfa56f977d5843bf030202) 4.28.0 - [`f6d67b6`](https://github.com/webpack/webpack/commit/f6d67b66058e0c0f1fa36d94d31aed4a2830d3d8) update examples - [`573d2da`](https://github.com/webpack/webpack/commit/573d2da1d946b59ef6990cea0edf31958d13c0d6) Merge pull request [#8511](https://github-redirect.dependabot.com/webpack/webpack/issues/8511) from isiahmeadows/fix-erroneous-injection - [`6b54a46`](https://github.com/webpack/webpack/commit/6b54a46842a21694787cbec33699955d11a799fc) Fix failing test. - [`14ef010`](https://github.com/webpack/webpack/commit/14ef0108863f7838877b53bec00502fa79026540) Fix nits, block `require` to prevent false positive - [`f2f62c7`](https://github.com/webpack/webpack/commit/f2f62c76080dd34eb319a6031fe688b7a4716cf9) Merge pull request [#8516](https://github-redirect.dependabot.com/webpack/webpack/issues/8516) from iliakan/master - [`a9d465f`](https://github.com/webpack/webpack/commit/a9d465f183a548cfa3e15ab3c5d4715fdf54db86) IgnorePlugin: add context argument to checkResource, deprecate checkContext - [`31de553`](https://github.com/webpack/webpack/commit/31de55386ab203ffc8b3b9ab1aaf6d7ec669f0b5) Add test - [`18d7396`](https://github.com/webpack/webpack/commit/18d7396835c8e2fb496a501c53504ab46d92b19b) Remove a broken hook - [`d5e26f7`](https://github.com/webpack/webpack/commit/d5e26f728adb63a1fca080ef728fd627952a921d) Merge pull request [#8467](https://github-redirect.dependabot.com/webpack/webpack/issues/8467) from Connormiha/simplify-append-head - Additional commits viewable in [compare view](https://github.com/webpack/webpack/compare/v4.26.0...v4.28.0) </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.28.0)](https://dependabot.com/compatibility-score.html?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.26.0&new-version=4.28.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) Dependabot will **not** automatically merge this PR because it includes a minor update to a development dependency. [//]: # (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 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:12 +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#258
No description provided.