[PR #67] [CLOSED] Bump webpack from 4.13.0 to 4.16.0 #185

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

📋 Pull Request Information

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

Base: masterHead: dependabot/npm_and_yarn/webpack-4.16.0


📝 Commits (1)

  • 7f1d054 Bump webpack from 4.13.0 to 4.16.0

📊 Changes

2 files changed (+132 additions, -121 deletions)

View changed files

📝 package-lock.json (+131 -120)
📝 package.json (+1 -1)

📄 Description

Bumps webpack from 4.13.0 to 4.16.0.

Release notes

Sourced from webpack's releases.

v4.16.0

Features

  • add wasm support for electron-renderer target
  • add optimization.moduleIds and optimization.chunkIds options to replace other options

Bugfixes

  • fix order of side effect evaluation for exported dependencies in side-effect-free modules
  • fix some typos
  • Support the case when passing an array to output.library.root and using a devtool
  • fix a HMR logging message issue in browser where err.stack is not set
  • add missing default extensions to the DllReferencePlugin
  • module/chunk ids in Stats now sort numerical when they are numbers
  • fix lost chunk reasons when using optimization.splitChunks.maxSize
  • fix cases where Dependency.loc is a string instead of an object

Deprecations

  • deprecated Dependency.compare in favor of compareLocations
  • optimization.namedModules is now deprecated
  • optimization.hashedModuleIds is now deprecated
  • optimization.namedChunks is now deprecated
  • optimization.occurrenceOrder is now deprecated

v4.15.1

Bugfixes

  • fix memory leaks when using HMR and in SplitChunksPlugin cache
  • fix undefined automaticNameDelimiter in cache groups when using maxSize
  • fix ProfilingPlugin for node.js 10 and 6

v4.15.0

Features:

  • add maxSize option for splitChunks (experimental)
  • add a helpful error when using wasm in a initial chunk

v4.14.0

Features

  • add new hook Compilation.dependencyReference to modify the dependency references

Bugfixes

  • Allow chunks to emit multiple assets to the same filename when hash matches
Commits
  • 18d33c6 4.16.0
  • 6f72243 Merge pull request #7700 from webpack/bugfix/loc-in-single-entry-and-loader-p...
  • 3366421 Merge pull request #7663 from webpack/feature/automatic-name-prefix
  • 8891bd5 Merge pull request #7696 from webpack/bugfix/max-size-reasons
  • 365beb1 Merge pull request #7699 from webpack/ci/upgrade-jest
  • b93225a add types and fix incorrect loc type
  • f0cd451 do not instrument node_modules
  • baa450d Merge pull request #7698 from webpack/bugfix/deprecated
  • b32a4f5 Merge branch 'master' into bugfix/max-size-reasons
  • f95d0f0 Merge pull request #7695 from webpack/bugfix/sort-ids-stats
  • 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 merge will merge this PR after your CI passes on it
  • @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 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/67 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 7/12/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/webpack-4.16.0` --- ### 📝 Commits (1) - [`7f1d054`](https://github.com/nextcloud/twofactor_gateway/commit/7f1d0549a4eed4734eb1ec4d20933a56ce101dac) Bump webpack from 4.13.0 to 4.16.0 ### 📊 Changes **2 files changed** (+132 additions, -121 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+131 -120) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 4.13.0 to 4.16.0. <details> <summary>Release notes</summary> *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.16.0 > # Features > > * add wasm support for `electron-renderer` target > * add `optimization.moduleIds` and `optimization.chunkIds` options to replace other options > > # Bugfixes > > * fix order of side effect evaluation for exported dependencies in side-effect-free modules > * fix some typos > * Support the case when passing an array to `output.library.root` and using a devtool > * fix a HMR logging message issue in browser where `err.stack` is not set > * add missing default extensions to the DllReferencePlugin > * module/chunk ids in Stats now sort numerical when they are numbers > * fix lost chunk reasons when using `optimization.splitChunks.maxSize` > * fix cases where `Dependency.loc` is a string instead of an object > > # Deprecations > > * deprecated `Dependency.compare` in favor of `compareLocations` > * `optimization.namedModules` is now deprecated > * `optimization.hashedModuleIds` is now deprecated > * `optimization.namedChunks` is now deprecated > * `optimization.occurrenceOrder` is now deprecated > > ## v4.15.1 > # Bugfixes > > * fix memory leaks when using HMR and in SplitChunksPlugin cache > * fix undefined automaticNameDelimiter in cache groups when using maxSize > * fix ProfilingPlugin for node.js 10 and 6 > > ## v4.15.0 > # Features: > > * add `maxSize` option for `splitChunks` (experimental) > * add a helpful error when using wasm in a initial chunk > > ## v4.14.0 > # Features > > * add new hook `Compilation.dependencyReference` to modify the dependency references > > # Bugfixes > > * Allow chunks to emit multiple assets to the same filename when hash matches </details> <details> <summary>Commits</summary> - [`18d33c6`](https://github.com/webpack/webpack/commit/18d33c630f799e99e5e43fc0b6931713dc976529) 4.16.0 - [`6f72243`](https://github.com/webpack/webpack/commit/6f722436697ffa946d4c5c69d25e6cbba4aa0796) Merge pull request [#7700](https://github-redirect.dependabot.com/webpack/webpack/issues/7700) from webpack/bugfix/loc-in-single-entry-and-loader-p... - [`3366421`](https://github.com/webpack/webpack/commit/3366421f1784c449f415cda5930a8e445086f688) Merge pull request [#7663](https://github-redirect.dependabot.com/webpack/webpack/issues/7663) from webpack/feature/automatic-name-prefix - [`8891bd5`](https://github.com/webpack/webpack/commit/8891bd5f042641d122cf1835b0a759dfc41941cc) Merge pull request [#7696](https://github-redirect.dependabot.com/webpack/webpack/issues/7696) from webpack/bugfix/max-size-reasons - [`365beb1`](https://github.com/webpack/webpack/commit/365beb1a6d86429e8a1438bd1cb077ae7ae3429c) Merge pull request [#7699](https://github-redirect.dependabot.com/webpack/webpack/issues/7699) from webpack/ci/upgrade-jest - [`b93225a`](https://github.com/webpack/webpack/commit/b93225a6a120a4155c118a0c1a5f4b0823863c41) add types and fix incorrect loc type - [`f0cd451`](https://github.com/webpack/webpack/commit/f0cd45102c76a66c79a1e72149fd29a23a60ad4b) do not instrument node_modules - [`baa450d`](https://github.com/webpack/webpack/commit/baa450dc4d71390f201f4903e5373cc1f37df259) Merge pull request [#7698](https://github-redirect.dependabot.com/webpack/webpack/issues/7698) from webpack/bugfix/deprecated - [`b32a4f5`](https://github.com/webpack/webpack/commit/b32a4f5f6403ec96dbe264cf15dada2a344650ed) Merge branch 'master' into bugfix/max-size-reasons - [`f95d0f0`](https://github.com/webpack/webpack/commit/f95d0f053788185ab20547c9e1dc111572dd06a5) Merge pull request [#7695](https://github-redirect.dependabot.com/webpack/webpack/issues/7695) from webpack/bugfix/sort-ids-stats - Additional commits viewable in [compare view](https://github.com/webpack/webpack/compare/v4.13.0...v4.16.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.13.0&new-version=4.16.0)](https://dependabot.com/compatibility-score.html?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.13.0&new-version=4.16.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`. --- <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 merge` will merge this PR after your CI passes on it - `@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 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:33:52 +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#185
No description provided.