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

chore(deps): update dependency webpack to v4.41.2 #114

Merged
merged 1 commit into from
Dec 10, 2019

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jul 17, 2019

This PR contains the following updates:

Package Type Update Change
webpack devDependencies minor 4.35.3 -> 4.41.2

Release Notes

webpack/webpack

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

  • add logging API (see #​9436 for details)

v4.36.1

Compare Source

Bugfixes

  • fix regression in 4.36.0 when using happypack

v4.36.0

Compare Source

Features

  • SourceMapDevToolPlugin append option now supports the default placeholders in addition to [url]
  • Arrays in resolve and parser options (Rule and Loader API) support backreferences with "..." when overriding options.

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

🔕 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

Newsflash: Renovate has joined WhiteSource, and is now free for all use. Learn more or view updated terms and privacy policies.

@coveralls
Copy link

coveralls commented Jul 17, 2019

Coverage Status

Coverage increased (+0.2%) to 70.711% when pulling a10cc28 on renovate/webpack-4.x into 3a10fb3 on master.

@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.36.0 chore(deps): update dependency webpack to v4.36.1 Jul 17, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.36.1 chore(deps): update dependency webpack to v4.37.0 Jul 23, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.37.0 chore(deps): update dependency webpack to v4.38.0 Jul 26, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.38.0 chore(deps): update dependency webpack to v4.39.0 Aug 1, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.39.0 chore(deps): update dependency webpack to v4.39.1 Aug 2, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.39.1 chore(deps): update dependency webpack to v4.39.2 Aug 13, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.39.2 chore(deps): update dependency webpack to v4.39.3 Aug 27, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.39.3 chore(deps): update dependency webpack to v4.40.0 Sep 12, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.40.0 chore(deps): update dependency webpack to v4.40.1 Sep 13, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.40.1 chore(deps): update dependency webpack to v4.40.2 Sep 13, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.40.2 chore(deps): update dependency webpack to v4.41.0 Oct 5, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.41.0 chore(deps): update dependency webpack to v4.41.2 Nov 11, 2019
@srtucker22 srtucker22 merged commit e80b48f into master Dec 10, 2019
@srtucker22 srtucker22 deleted the renovate/webpack-4.x branch December 10, 2019 20:52
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.

None yet

3 participants