[PR #68] [MERGED] Bump webpack from 4.13.0 to 4.16.1 #184

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/68
Author: @dependabot-preview[bot]
Created: 7/17/2018
Status: Merged
Merged: 7/23/2018
Merged by: @ChristophWurst

Base: masterHead: dependabot/npm_and_yarn/webpack-4.16.1


📝 Commits (1)

  • c5b162c Bump webpack from 4.13.0 to 4.16.1

📊 Changes

2 files changed (+136 additions, -125 deletions)

View changed files

📝 package-lock.json (+135 -124)
📝 package.json (+1 -1)

📄 Description

Bumps webpack from 4.13.0 to 4.16.1.

Release notes

Sourced from webpack's releases.

v4.16.1

Bugfixes

  • fix reversed order when using optimization.occurrenceOrder (default in production mode)
  • output.hashDigest has a more relaxed schema
  • update dependencies
  • fix typo in schema

Internal changes

  • typescript 3 rc

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
... (truncated)
Commits
  • fa02f3d 4.16.1
  • 94b192c fix merge issue
  • db1475c Merge pull request #7656 from mohsen1/DefinePlugin-type
  • 2702273 Merge pull request #7726 from webpack/update/linters
  • 84d57e3 Merge branch 'master' into DefinePlugin-type
  • aae20a8 Merge pull request #7721 from webpack/bugfix/occurence-order
  • 0753cdc Merge branch 'master' into update/linters
  • 2c4ba6c Merge pull request #7727 from webpack/update/eslint-scope
  • 4c19fe1 Use v4 of eslint-scope
  • 7195bae Update ESLint and Prettier
  • 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/68 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 7/17/2018 **Status:** ✅ Merged **Merged:** 7/23/2018 **Merged by:** [@ChristophWurst](https://github.com/ChristophWurst) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/webpack-4.16.1` --- ### 📝 Commits (1) - [`c5b162c`](https://github.com/nextcloud/twofactor_gateway/commit/c5b162cf8aec3c6cd576ab59e9cde129764ebcdc) Bump webpack from 4.13.0 to 4.16.1 ### 📊 Changes **2 files changed** (+136 additions, -125 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+135 -124) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 4.13.0 to 4.16.1. <details> <summary>Release notes</summary> *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.16.1 > # Bugfixes > > * fix reversed order when using optimization.occurrenceOrder (default in production mode) > * `output.hashDigest` has a more relaxed schema > * update dependencies > * fix typo in schema > > # Internal changes > > * typescript 3 rc > > ## 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 > ></table> ... (truncated) </details> <details> <summary>Commits</summary> - [`fa02f3d`](https://github.com/webpack/webpack/commit/fa02f3d03344913f0a02d29cb363581bc8535bef) 4.16.1 - [`94b192c`](https://github.com/webpack/webpack/commit/94b192c96f67346c179327378dc71cde54aac199) fix merge issue - [`db1475c`](https://github.com/webpack/webpack/commit/db1475cb8c753fe9d5d5049b33d99158f4cc1126) Merge pull request [#7656](https://github-redirect.dependabot.com/webpack/webpack/issues/7656) from mohsen1/DefinePlugin-type - [`2702273`](https://github.com/webpack/webpack/commit/2702273f6f5b8c54e61f29b402c5271b9ad161f9) Merge pull request [#7726](https://github-redirect.dependabot.com/webpack/webpack/issues/7726) from webpack/update/linters - [`84d57e3`](https://github.com/webpack/webpack/commit/84d57e38b4cb68d9bbe09fe614cce8829a055f13) Merge branch 'master' into DefinePlugin-type - [`aae20a8`](https://github.com/webpack/webpack/commit/aae20a826c79fd9f9f54126a96434025904d6388) Merge pull request [#7721](https://github-redirect.dependabot.com/webpack/webpack/issues/7721) from webpack/bugfix/occurence-order - [`0753cdc`](https://github.com/webpack/webpack/commit/0753cdc47ebe0d39572f46dff56aa6da9ad5a4ce) Merge branch 'master' into update/linters - [`2c4ba6c`](https://github.com/webpack/webpack/commit/2c4ba6cf0ead656f3fcb8353cca2c98fd785b1cf) Merge pull request [#7727](https://github-redirect.dependabot.com/webpack/webpack/issues/7727) from webpack/update/eslint-scope - [`4c19fe1`](https://github.com/webpack/webpack/commit/4c19fe19ebcd6acfcbf8934104ac3d849d3b29f4) Use v4 of eslint-scope - [`7195bae`](https://github.com/webpack/webpack/commit/7195bae9b48dd2dbe2fe7000d152bff6a82971c5) Update ESLint and Prettier - Additional commits viewable in [compare view](https://github.com/webpack/webpack/compare/v4.13.0...v4.16.1) </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.1)](https://dependabot.com/compatibility-score.html?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.13.0&new-version=4.16.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`. --- <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#184
No description provided.