[PR #147] [MERGED] Bump webpack from 4.25.1 to 4.26.0 #242

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

📋 Pull Request Information

Original PR: https://github.com/nextcloud/twofactor_gateway/pull/147
Author: @dependabot-preview[bot]
Created: 11/20/2018
Status: Merged
Merged: 11/20/2018
Merged by: @ChristophWurst

Base: masterHead: dependabot/npm_and_yarn/webpack-4.26.0


📝 Commits (1)

  • ba7f6ac Bump webpack from 4.25.1 to 4.26.0

📊 Changes

2 files changed (+186 additions, -105 deletions)

View changed files

📝 package-lock.json (+185 -104)
📝 package.json (+1 -1)

📄 Description

Bumps webpack from 4.25.1 to 4.26.0.

Release notes

Sourced from webpack's releases.

v4.26.0

Features

  • Switch from uglify-es to terser as default minimizer

Note: While they are officially backward-compatible, it can still happen that a new bugs occurs with terser, which break your production builds. Make sure to validate your production builds after upgrading to this version. (Note that it's always a good idea to test your output assets before deploying.)

If you want to report bugs to terser (https://github.com/terser-js/terser), please provide a minimal repro case with minimized and non-minimized code. You can configure webpack to generate non-minimized code in production mode by setting optimization.minimize: false. When reporting a bug to terser, best report a repro case which doesn't require running webpack and is reproducible with only the terser command line.

See optimization.minimizers configuration option to switch back to uglify-es or provide additional minimize options for terser.

Commits
  • 04f90c5 4.26.0
  • e1df721 Merge pull request #8392 from vkrol/cherry-pick-terser-to-webpack-4
  • a818def fix for changed API in terser plugin warningsFilter
  • b39abf4 Rename test directories too
  • 311a728 Switch from uglifyjs-webpack-plugin to terser-webpack-plugin
  • a230148 Merge pull request #8351 from DeTeam/chunk-jsdoc-typo
  • 7a0af76 Fix a typo in Chunk#split jsdoc comment
  • See full diff 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/147 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 11/20/2018 **Status:** ✅ Merged **Merged:** 11/20/2018 **Merged by:** [@ChristophWurst](https://github.com/ChristophWurst) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/webpack-4.26.0` --- ### 📝 Commits (1) - [`ba7f6ac`](https://github.com/nextcloud/twofactor_gateway/commit/ba7f6acfa3fd65602c88623667a5979210bbe106) Bump webpack from 4.25.1 to 4.26.0 ### 📊 Changes **2 files changed** (+186 additions, -105 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+185 -104) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 4.25.1 to 4.26.0. <details> <summary>Release notes</summary> *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.26.0 > # Features > > * Switch from uglify-es to terser as default minimizer > > Note: While they are officially backward-compatible, it can still happen that a new bugs occurs with terser, which break your production builds. Make sure to validate your production builds after upgrading to this version. (Note that it's always a good idea to test your output assets before deploying.) > > If you want to report bugs to terser (https://github.com/terser-js/terser), please provide a minimal repro case with minimized and **non-minimized** code. You can configure webpack to generate non-minimized code in production mode by setting `optimization.minimize: false`. When reporting a bug to terser, best report a repro case which doesn't require running webpack and is reproducible with only the terser command line. > > See [`optimization.minimizers`](https://webpack.js.org/configuration/optimization/#optimization-minimizer) configuration option to switch back to uglify-es or provide additional minimize options for terser. </details> <details> <summary>Commits</summary> - [`04f90c5`](https://github.com/webpack/webpack/commit/04f90c53eeae4817a9c515a0daca119d0decfa45) 4.26.0 - [`e1df721`](https://github.com/webpack/webpack/commit/e1df721fd77634b5a22b4349c7d7ea15f0a2188e) Merge pull request [#8392](https://github-redirect.dependabot.com/webpack/webpack/issues/8392) from vkrol/cherry-pick-terser-to-webpack-4 - [`a818def`](https://github.com/webpack/webpack/commit/a818deff0fea6333e6da19504807d639da3946b7) fix for changed API in terser plugin warningsFilter - [`b39abf4`](https://github.com/webpack/webpack/commit/b39abf49ded1a7f69b528a151b93da114ec76359) Rename test directories too - [`311a728`](https://github.com/webpack/webpack/commit/311a7285d36b38bada46102967c431e93ff48a89) Switch from uglifyjs-webpack-plugin to terser-webpack-plugin - [`a230148`](https://github.com/webpack/webpack/commit/a2301484a50ad004c4cd33a6431b9e53c34f0d46) Merge pull request [#8351](https://github-redirect.dependabot.com/webpack/webpack/issues/8351) from DeTeam/chunk-jsdoc-typo - [`7a0af76`](https://github.com/webpack/webpack/commit/7a0af76dac68440f9ac8ad781a75d94114e5e812) Fix a typo in Chunk#split jsdoc comment - See full diff in [compare view](https://github.com/webpack/webpack/compare/v4.25.1...v4.26.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.25.1&new-version=4.26.0)](https://dependabot.com/compatibility-score.html?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.25.1&new-version=4.26.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 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:07 +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#242
No description provided.