Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency webpack to v4.47.0 #304

Open
wants to merge 1 commit into
base: source
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 28, 2019

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
webpack 4.36.1 -> 4.47.0 age adoption passing confidence

Release Notes

webpack/webpack (webpack)

v4.47.0

Compare Source

New Features

New Contributors

Full Changelog: webpack/webpack@v4.46.0...v4.47.0

v4.46.0

Compare Source

Bugfixes

  • fix behavior of defaults for resolve.roots to be backward-compatible

v4.45.0

Compare Source

Features

  • resolve server-relative requests relative to project context by default

Bugfixes

  • fix a bug where splitChunk minSize is not handled correctly
  • fix a bug where the order of splitChunk cacheGroups is not handled correctly

v4.44.2

Compare Source

Bugfixes

  • make sure to generate correct chunk connection for blocks that are only connected in some runtimes
    • fixes a bug where filename contains undefined hash at runtime

v4.44.1

Compare Source

Bugfixes

  • fix bug in sideEffects optimization when using export * from "non-esm" and a default export.
  • add missing optional peerDependencies for webpack-cli and webpack-command to support Yarn 2

v4.44.0

Compare Source

Features

  • Improve sideEffects flag behavior when dynamic modules are part of the tree
    • Fixes a bug which causes empty modules (or type-only modules) to "break" Tree Shaking
  • add splitChunks.enforceSizeThreshold to allow enfore splitting larger chunks unrelated from other limiations
    • Not set by default to avoid breaking change
    • It will be set by default to 50k in webpack 5
    • It's recommended to set it in webpack 4 too
  • add support for resolve.roots and default resolve.roots: [context]
    • This allows to resolve server-relative urls (e.g. /src/abc) to the project root (or other locations when configured)
    • This allows to use loaders that rely on that behavior

Bugfixes

  • fix bug where splitChunks produced non-optimal results when minSize is set to 0
    • This lead to NaNs in some places which breaks ordering
  • Fix bug which lead to HMR not working for splitChunks in entrypoints
  • force update watchpack and chokidar for chokidar bugfix which causes files to stop being watched

v4.43.0

Compare Source

Features

  • add module.hot.invalidate() to HMR API

Dependencies

  • push versions for forced security updates

v4.42.1

Compare Source

Bugfixes

  • update webassemblyjs dependencies for instruction update
  • update mkdirp dependency for security reasons

v4.42.0

Compare Source

Bugfixes

  • Disable constant replacements in "use asm" scope
  • Update schema to disallow functions for output.hotUpdateChunkFilename as this doesn't work
  • Hoist exports in concatenated module to handle circular references with non-concatenated modules correctly
  • Flag all modules as used in DLLs to fix missing exports

v4.41.6

Compare Source

Bugfixes

  • Windows network paths are considered as absolute paths
  • fix hanging of FlagDependencyExportsPlugin when using export * in a circular matter

v4.41.5

Compare Source

Bugfixes

  • handle relative paths with webpack:// prefix in SourceMaps correctly
  • fixes a non-determinism about providedExports with export * which caused changing module hashes and unnecessary HMR invalidation

v4.41.4

Compare Source

Bugfixes

  • fix case where __webpack_require__.e is not a function when using module concatenation
  • fix incorrect imported module when using sideEffects in a certain constellation of export names

Performance

  • lazy-require Webassembly related modules for improved startup performance

v4.41.3

Compare Source

Security

  • force upgrade terser-webpack-plugin dependency for security fix (not affecting webpack)

Funding

  • add npm funding field to package.json

v4.41.2

Compare Source

Bugfixes

  • fix issue with invalide timezone

v4.41.1

Compare Source

Bugfixes

  • fix incorrect request shortening when directory looks similar to parent directory
  • fix crash when timezone is unknown

v4.41.0

Compare Source

Developer Experience

  • disallow cache group named test with shorthand syntax to point out a potential config error

Performance

  • Improve performance of LimitChunkCountPlugin

v4.40.3

Compare Source

Bugfixes

  • fix a bug that the HMR plugin affected child compilations

Performance

  • improve performance of splitChunks name option by caching hashed value
  • improve rebuild performance by caching module size computation

v4.40.2

Compare Source

Bugfixes

  • fix a bug where asset is undefined

v4.40.1

Compare Source

Bugfixes

  • convert "multiple assets emit to the same filename" error into a warning
  • compare asset content when multiple assets emit to the same filename

v4.40.0

Compare Source

Features

  • adds asset info for emitted assets
    • new methods allow easy emitting/updating of assets compilation.emitAsset/updateAsset (instead of accessing the Object compilation.assets)
    • new getter methods to get assets compilation.getAssets() and compilation.getAsset(name)
    • 3 flags in asset info:
      • immutable: when set an asset can be cache infinitely
      • development: when set an asset is some kind of development tool (i. e. a SourceMap)
      • hotModuleReplacement: when set an asset is generated for an hot update
    • Stats expose info object in assets
    • String version of Stats show flags

v4.39.3

Compare Source

Bugfixes

  • fix a missing module in chunk caused by incorrect chunk graph generation of async chunks

v4.39.2

Compare Source

Bugfixes

  • fix ProfilingPlugin not ending traces correctly

v4.39.1

Compare Source

Bugfixes

  • fix problem that progress lines were too long on some terminals
  • fix a problem that ...100% is displayed instead of 100%

v4.39.0

Compare Source

Features

  • Infrastructure logger for node.js has now colors + symbols to mark different kind of messages
  • Logger API has now a status method which allows to write temporary status messages
  • ProgressPlugin default handler uses the Infrastructure Logger status message to output messages
  • Placeholders in paths can now be escaped with i. e. [\id\]
  • Compiler.hooks.assetEmitted have been added to get byte content of emitted assets

Bugfixes

  • Logging output is now aligned to have space for symbols
  • renamed Compiler.hooks.infrastructurelog to Compiler.hooks.infrastructureLog
  • Properties that are defined on the Object.prototype can now be chunk ids (i. e. constructor)
  • library.name now supports placeholders in libraryTarget: "system"
  • 2 places were module profiles were incorrectly captured were fixed

Dependencies

  • Forced upgrade of all direct dependencies
  • webpack-sources + terser-webpack-plugin comes with quality optimizations for SourceMaps

v4.38.0

Compare Source

Performance

  • Improved performance of ProgressPlugin
  • Improved performance of chunk graph generation
    • This can boost performance when many chunks are used, especially incremental build performance
    • Modules from parent chunks are now tracked during chunk graph generation, which allows to skip these modules in async chunks. This often renders optimization.removeAvailableModules unneeded, expect in scenarios where chunks are merged during optimization.
  • optimization.removeAvailableModules is now disabled in development mode by default
    • optimization.removeAvailableModules will be disabled for all modes in next major release, feel free to disable it in production too if you want extra performance.

v4.37.0

Compare Source

Features


Configuration

📅 Schedule: Branch creation - "* * * * 0,6" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 102211b to 094d751 Compare August 1, 2019 15:50
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.38.0 fix(deps): update dependency webpack to v4.39.0 Aug 1, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 094d751 to fd0f085 Compare August 2, 2019 12:52
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.39.0 fix(deps): update dependency webpack to v4.39.1 Aug 2, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from fd0f085 to b343e4f Compare August 13, 2019 17:57
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.39.1 fix(deps): update dependency webpack to v4.39.2 Aug 13, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from b343e4f to 67f4c05 Compare August 27, 2019 12:11
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.39.2 fix(deps): update dependency webpack to v4.39.3 Aug 27, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch 2 times, most recently from 771d6a8 to f6195a2 Compare September 12, 2019 19:04
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.39.3 fix(deps): update dependency webpack to v4.40.0 Sep 12, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from f6195a2 to 5f46a39 Compare September 13, 2019 07:10
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.40.0 fix(deps): update dependency webpack to v4.40.1 Sep 13, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 5f46a39 to 9a3be39 Compare September 13, 2019 14:48
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.40.1 fix(deps): update dependency webpack to v4.40.2 Sep 13, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 9a3be39 to 8b356b8 Compare September 24, 2019 15:53
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.40.2 fix(deps): update dependency webpack to v4.41.0 Sep 24, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 8b356b8 to 7678b66 Compare October 11, 2019 11:55
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.41.0 fix(deps): update dependency webpack to v4.41.1 Oct 11, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 7678b66 to aa4044d Compare October 15, 2019 13:06
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.41.1 fix(deps): update dependency webpack to v4.41.2 Oct 15, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from aa4044d to c3d7988 Compare October 29, 2019 14:09
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from c3d7988 to 057882f Compare December 16, 2019 09:45
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.41.2 fix(deps): update dependency webpack to v4.41.3 Dec 16, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 057882f to c9f5893 Compare December 19, 2019 07:42
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.41.3 fix(deps): update dependency webpack to v4.41.4 Dec 19, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from c9f5893 to 754c026 Compare December 27, 2019 21:29
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.41.4 fix(deps): update dependency webpack to v4.41.5 Dec 27, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 754c026 to e1da19c Compare February 8, 2020 12:55
@algobot
Copy link

algobot commented Feb 8, 2020

Deploy preview for algolia-community ready!

Built with commit 4b72928

https://deploy-preview-304--algolia-community.netlify.app

@renovate renovate bot force-pushed the renovate/webpack-4.x branch from e1da19c to f4f3780 Compare February 11, 2020 10:32
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.41.5 fix(deps): update dependency webpack to v4.41.6 Feb 11, 2020
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from f4f3780 to 60bc2a3 Compare March 2, 2020 08:55
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.41.6 fix(deps): update dependency webpack to v4.42.0 Mar 2, 2020
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 60bc2a3 to 4b4de4b Compare April 26, 2020 07:59
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.42.0 fix(deps): update dependency webpack to v4.43.0 Apr 26, 2020
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 4b4de4b to b4ed9f5 Compare July 28, 2020 21:11
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.43.0 fix(deps): update dependency webpack to v4.44.0 Jul 28, 2020
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from b4ed9f5 to cff1ec9 Compare August 25, 2020 01:53
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.44.0 fix(deps): update dependency webpack to v4.44.1 Aug 25, 2020
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from cff1ec9 to 1891534 Compare October 27, 2020 22:59
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.44.1 fix(deps): update dependency webpack to v4.44.2 Oct 27, 2020
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 1891534 to b626036 Compare November 28, 2020 09:00
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from b626036 to 9c1cdfe Compare January 9, 2021 15:51
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.44.2 fix(deps): update dependency webpack to v4.45.0 Jan 9, 2021
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 9c1cdfe to 4b72928 Compare January 23, 2021 12:51
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.45.0 fix(deps): update dependency webpack to v4.46.0 Jan 23, 2021
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 4b72928 to b3d276c Compare September 25, 2022 22:19
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from b3d276c to 2359a15 Compare November 20, 2022 18:56
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 2359a15 to cf2932e Compare March 16, 2023 11:16
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from cf2932e to 9051df1 Compare September 6, 2023 20:56
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.46.0 fix(deps): update dependency webpack to v4.47.0 Sep 6, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Sep 6, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
[20:56:44.036] INFO (9): Installing tool node v9.11.2...
npm ERR! weird error 1
[20:56:48.765] FATAL (9): Command failed with exit code 1: /opt/containerbase/tools/node/9.11.2/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/9.11.2 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-MT4rWU --silent
    err: {
      "type": "Error",
      "message": "Command failed with exit code 1: /opt/containerbase/tools/node/9.11.2/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/9.11.2 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-MT4rWU --silent",
      "stack":
          Error: Command failed with exit code 1: /opt/containerbase/tools/node/9.11.2/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/9.11.2 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-MT4rWU --silent
              at makeError (/snapshot/dist/containerbase-cli.js:42826:13)
              at handlePromise (/snapshot/dist/containerbase-cli.js:43282:29)
              at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
              at async InstallNodeService.updateNodeGyp (/snapshot/dist/containerbase-cli.js:45220:5)
              at async InstallNodeService.install (/snapshot/dist/containerbase-cli.js:45361:7)
              at async InstallToolService.execute (/snapshot/dist/containerbase-cli.js:45811:11)
              at async InstallToolShortCommand.execute (/snapshot/dist/containerbase-cli.js:46134:14)
              at async InstallToolShortCommand.validateAndExecute (/snapshot/dist/containerbase-cli.js:1344:26)
              at async _Cli.run (/snapshot/dist/containerbase-cli.js:2457:22)
              at async _Cli.runExit (/snapshot/dist/containerbase-cli.js:2465:28)
      "shortMessage": "Command failed with exit code 1: /opt/containerbase/tools/node/9.11.2/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/9.11.2 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-MT4rWU --silent",
      "command": "/opt/containerbase/tools/node/9.11.2/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/9.11.2 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-MT4rWU --silent",
      "escapedCommand": "\"/opt/containerbase/tools/node/9.11.2/bin/npm\" explore npm -g --prefix \"/opt/containerbase/tools/node/9.11.2\" -- npm install \"node-gyp@latest\" --no-audit --cache \"/tmp/containerbase-npm-MT4rWU\" --silent",
      "exitCode": 1,
      "cwd": "/opt/containerbase",
      "failed": true,
      "timedOut": false,
      "isCanceled": false,
      "killed": false
    }
[20:56:49.135] INFO (9): Installed tool node with errors in 5s.

@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.47.0 fix(deps): update dependency webpack to v4.47.0 - autoclosed Aug 28, 2024
@renovate renovate bot closed this Aug 28, 2024
@renovate renovate bot deleted the renovate/webpack-4.x branch August 28, 2024 01:40
@renovate renovate bot restored the renovate/webpack-4.x branch September 3, 2024 16:18
@renovate renovate bot changed the title fix(deps): update dependency webpack to v4.47.0 - autoclosed fix(deps): update dependency webpack to v4.47.0 Sep 3, 2024
@renovate renovate bot reopened this Sep 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant