[PR #57] [MERGED] Bump webpack from 4.5.0 to 4.12.1 #174

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

📋 Pull Request Information

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

Base: masterHead: dependabot/npm_and_yarn/webpack-4.12.1


📝 Commits (1)

  • 4dce06e Bump webpack from 4.5.0 to 4.12.1

📊 Changes

2 files changed (+411 additions, -127 deletions)

View changed files

📝 package-lock.json (+410 -126)
📝 package.json (+1 -1)

📄 Description

Bumps webpack from 4.5.0 to 4.12.1.

Release notes

Sourced from webpack's releases.

v4.12.1

Bugfixes

  • fix problem causing a stack overflow when reexporting circular
  • fix a bug causing missing modules in bundles when using splitChunks
  • run modules in correct order when using import with sideEffects: false
    • added order to DependencyReference
  • add missing support for [chunkhash] in target: "webworker"
  • fix bug causing incomplete profile (race condition) with the ProfilingPlugin

Internal changes

  • Added more types
  • lint files on commit with lint-staged

v4.12.0

Features

  • Errors from loaders show the loader path in the error message
  • add support for optional catch and line and paragraph separator in strings (ES2019)

Bugfixes

  • fixes a bug where chunks have duplicate ids when using records
  • fix bubbling in HMR for import() when importing a non-ESM
  • fix issue with in installing with pnpm
  • update dependencies of the ProfilingPlugin

v4.11.1

Features

  • add optimization.mangleWasmImports option to disable mangling of wasm imports

Bugfixes

  • disable wasm import mangling temporary because of bugs in the underlying wasm processing

v4.11.0

Features

  • support reportProgress in afterEmit
  • Warnings are now emitted if magic comments don't compile
  • Added support for matchResource inline request for loaders
  • Using webpackPrefetch in entry chunk now triggers prefetching in runtime
    • No link tag needed for this in HTML
  • Warnings will be emitted when trying to use i64-functions imported from wasm

Bugfixes

  • get_global initializer in wasm globals now work correctly
... (truncated)
Commits
  • 8a7597a 4.12.1
  • bb38c5d Merge pull request #7586 from samccone/sjs/fix_webpack_profiling_race
  • 735f99c Fix race condition in profiling plugin.
  • 3fb49de Merge pull request #7581 from TimHambourger/master
  • 6dd4d76 Merge pull request #7582 from arkadyt/bugfix/remove-dead-links-from-examples-doc
  • 2bc5437 Merge pull request #7532 from Legends/CommentCompilationWarning
  • 1e7b4e9 Remove dead links from /examples README.md.
  • 2fb9a6c remove typedef Position import
  • 4fc03e1 Merge pull request #7531 from Legends/APP
  • 1ef1241 Implement all path variables for webworker dynamic imports
  • 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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @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

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/57 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 6/25/2018 **Status:** ✅ Merged **Merged:** 6/25/2018 **Merged by:** [@ChristophWurst](https://github.com/ChristophWurst) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/webpack-4.12.1` --- ### 📝 Commits (1) - [`4dce06e`](https://github.com/nextcloud/twofactor_gateway/commit/4dce06eeb30da1870749a11b599e9ac33e366bf7) Bump webpack from 4.5.0 to 4.12.1 ### 📊 Changes **2 files changed** (+411 additions, -127 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+410 -126) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [webpack](https://github.com/webpack/webpack) from 4.5.0 to 4.12.1. <details> <summary>Release notes</summary> *Sourced from [webpack's releases](https://github.com/webpack/webpack/releases).* > ## v4.12.1 > # Bugfixes > > * fix problem causing a stack overflow when reexporting circular > * fix a bug causing missing modules in bundles when using `splitChunks` > * run modules in correct order when using `import` with `sideEffects: false` > * added order to `DependencyReference` > * add missing support for `[chunkhash]` in `target: "webworker"` > * fix bug causing incomplete profile (race condition) with the `ProfilingPlugin` > > # Internal changes > > * Added more types > * lint files on commit with `lint-staged` > > ## v4.12.0 > # Features > > * Errors from loaders show the loader path in the error message > * add support for optional catch and line and paragraph separator in strings (ES2019) > > # Bugfixes > > * fixes a bug where chunks have duplicate ids when using records > * fix bubbling in HMR for `import()` when importing a non-ESM > * fix issue with in installing with pnpm > * update dependencies of the ProfilingPlugin > > ## v4.11.1 > # Features > > * add `optimization.mangleWasmImports` option to disable mangling of wasm imports > > # Bugfixes > > * disable wasm import mangling temporary because of bugs in the underlying wasm processing > > ## v4.11.0 > # Features > > * support `reportProgress` in `afterEmit` > * Warnings are now emitted if magic comments don't compile > * Added support for matchResource inline request for loaders > * Using webpackPrefetch in entry chunk now triggers prefetching in runtime > * No link tag needed for this in HTML > * Warnings will be emitted when trying to use i64-functions imported from wasm > > # Bugfixes > > * get_global initializer in wasm globals now work correctly ></table> ... (truncated) </details> <details> <summary>Commits</summary> - [`8a7597a`](https://github.com/webpack/webpack/commit/8a7597aa6eb2eef66a8f9db3a0c49bcb96022a94) 4.12.1 - [`bb38c5d`](https://github.com/webpack/webpack/commit/bb38c5d03970de5e2f188011ad5abf0981532108) Merge pull request [#7586](https://github-redirect.dependabot.com/webpack/webpack/issues/7586) from samccone/sjs/fix_webpack_profiling_race - [`735f99c`](https://github.com/webpack/webpack/commit/735f99c01bb82a4ea703b63d1a1ac74a8d7235b7) Fix race condition in profiling plugin. - [`3fb49de`](https://github.com/webpack/webpack/commit/3fb49dec05a204ca4f8267ebd46affc36ce267bf) Merge pull request [#7581](https://github-redirect.dependabot.com/webpack/webpack/issues/7581) from TimHambourger/master - [`6dd4d76`](https://github.com/webpack/webpack/commit/6dd4d76231d3a28bceed31645c9b80fc7b34fe41) Merge pull request [#7582](https://github-redirect.dependabot.com/webpack/webpack/issues/7582) from arkadyt/bugfix/remove-dead-links-from-examples-doc - [`2bc5437`](https://github.com/webpack/webpack/commit/2bc54370931f34ce9d583467f6403dbbcd0581c9) Merge pull request [#7532](https://github-redirect.dependabot.com/webpack/webpack/issues/7532) from Legends/CommentCompilationWarning - [`1e7b4e9`](https://github.com/webpack/webpack/commit/1e7b4e9a5e45bb752435bd9470a234542762656b) Remove dead links from /examples README.md. - [`2fb9a6c`](https://github.com/webpack/webpack/commit/2fb9a6c10f867105edd03ae13aba8d2f7ff95858) remove typedef Position import - [`4fc03e1`](https://github.com/webpack/webpack/commit/4fc03e17d1a6f115b3b773ac0b663a73942d9d22) Merge pull request [#7531](https://github-redirect.dependabot.com/webpack/webpack/issues/7531) from Legends/APP - [`1ef1241`](https://github.com/webpack/webpack/commit/1ef124143add25274a1e75564058ad58804c4b26) Implement all path variables for webworker dynamic imports - Additional commits viewable in [compare view](https://github.com/webpack/webpack/compare/v4.5.0...v4.12.1) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.5.0&new-version=4.12.1)](https://dependabot.com/compatibility-score.html?dependency-name=webpack&package-manager=npm_and_yarn&previous-version=4.5.0&new-version=4.12.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`. --- **Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit. You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com). <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 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 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:50 +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#174
No description provided.