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

Update dependency webpack to v4.41.2 #36

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 24, 2018

This PR contains the following updates:

Package Type Update Change
webpack devDependencies minor 4.5.0 -> 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.

v4.35.3

Compare Source

Bugfixes

  • update acorn to include import()

Performance

  • Improved runtime performance for large JSON modules

v4.35.2

Compare Source

Bugfixes

  • realResource must match absolute paths

v4.35.1

Compare Source

Bugfixes

  • add realResource condition in rule to schema
  • fixes order of loaders when using a matchResource

v4.35.0

Compare Source

Features

  • ProgressPlugin limit output to column width in terminal
  • add Watching.suspend and Watching.resume
  • add splitChunks.automaticNameMaxLength and splitChunks.cacheGroups[x].automaticNameMaxLength

Bugfixes

  • webworker target now respect publicPath when loading chunks
  • holey arrays of configs will fail the validation

v4.34.0

Compare Source

Features

  • Error message when parsing fails shows used loaders now

Bugfixes

  • importing the namespace object from non-ESM (CJS) modules no longer leads to an warning
  • Error message in HMR logging works for Firefox too now
  • Parser understands block scoping now

v4.33.0

Compare Source

Features

  • add target: "electron-preload" for electron 5
    • renderer should use target: "web" in electron 5

Bugfixes

  • fix HMR rejection of removed and readded self-accepted modules

v4.32.2

Compare Source

Bugfixes

  • fix some weird schema validation messages
  • fix problem in production mode (sideEffects + concatenation) which caused reexported values to become undefined (bug since 4.32.0)

v4.32.1

Compare Source

Bugfixes

  • reverts some changes from 4.32.0 which accidentally disabled some CommonJs features when using node: false.

v4.32.0

Compare Source

Features

  • Added this.mode to the loader API, to allow loaders to choose defaults by mode similar to webpacks options
  • Stack Trace for Errors in rejected Promises from import() now includes the stack from where the import() was called

Bugfixes

  • The Parser can now analyse identifiers in rest patterns too
    • const { a, ...rest } = obj, where rest conflicts with an imported binding etc.
  • node: false now correctly disables __dirname and __filename too
  • __dirname and __filename now no longer evaluates to something when node: false or node.__file/dirname: false is set
    • if(__dirname !== "") is no longer replaced with if(true) in such scenarios
  • prefetching chunks is no executed after the initial module evaluation
    • This allows to override i. e. __webpack_public_path__ for prefetching too
  • fixes a runtime crash when using side-effect-free modules with the DllPlugin

Contribute

  • CI tests node.js 12 now too
  • webpack-bot now merges dependabot PRs automatically when status checks succeed

v4.31.0

Compare Source

Features

  • add errors-warnings stats preset

Bugfixes

  • allow top-level return in non-ESM modules

v4.30.0

Compare Source

Features

  • add amd: false to disable AMD support
  • Compilation.hooks.finishModules now also allows async plugins
  • add output.libraryTarget: "system" to compile for SystemJs environment

Bugfixes

  • fix generating a null id when concatenating an entry module in a different chunk
  • fix unneeded chunk references when splitting modules from chunks
  • fix parsing of function name in function scope

Performance

  • Lazy require some internal files
  • Faster way to generate function headers

Contributing

  • Run prettier on examples markdown

v4.29.6

Compare Source

Bugfixes

  • typeof __webpack_require__ and require.onError is no longer evaluated to undefined and evaluation is done at runtime instead.
  • this value in module.hot.accept with imported dependency is correctly preserved.
  • webassemblyjs updated to latest version

Contributing

  • added a linting step to ensure all dependencies resolve to npm modules

v4.29.5

Compare Source

Bugfixes

  • update @webassemblyjs to remove git dependency

v4.29.4

Compare Source

Bugfixes

  • update @webassemblyjs for bugfixes

v4.29.3

Compare Source

Bugfixes

  • fixes a bug where import() context uses __webpack_require__.e, but it is not in the runtime
  • WebpackErrors now console.log correctly in node > 10

v4.29.2

Compare Source

Internal changes

  • update dependencies

v4.29.1

Compare Source

Bugfixes

  • add missing __esModule flag when modules are concatenated, but without usage information

v4.29.0

Compare Source

Important Note for npm users

This release updates some dependencies, which may trigger a npm bug. See here for the webpack issue. The npm bug has been fixed, but a new npm version has not been released yet.

For workarounds see this comment.

Eventually the fix will be to upgrade npm once the bugfix is released.

Features

  • update acorn to v6
  • limit the number of in parallel written output files to 15
  • add output.futureEmitAssets which gives the emitting logic of webpack 5
    • assets are replaced with SizeOnlySources
    • reading assets after emitting is no longer allowed
    • This allows memory to be garbage-collected

v4.28.4

Compare Source

Bugfixes

  • ProfilingPlugin creates output path if not existing
  • fixed support for arrow function functions for optimization.minimizer
  • failed hooks is now also called when run() fails

v4.28.3

Compare Source

Bugfixes

  • ProfilingPlugin creates the output folder if necessary

v4.28.2

Compare Source

Bugfixes

  • fixes a crash when multiple IgnorePlugins are used

v4.28.1

Compare Source

Bugfixes

  • fix error in IgnorePlugin when no contextRegExp is passed

v4.28.0

Compare Source

Features

  • IgnorePlugin: checkResource has an additional context argument

Bugfixes

  • Injection of node.js globals has been disabled for .mjs files as it's crashing

v4.27.1

Compare Source

Bugfixes

  • v4.27.0 accidentially introduced a breaking change. This reverts the change and restores the original behavior for splitChunks enforce.

v4.27.0

Compare Source

Features

  • When using functions as plugins they are now also called with the compiler as parameter
    • This make it possible to use arrow functions as plugins
  • splitChunks.maxSize now emits a warning when minSize > maxSize
  • Loaders have now access to a getResolve method to create their own resolver function with custom options

Bugfixes

  • splitChunks.cacheGroups.xxx.enforce now behaves as documented and enforce chunk creation
  • splitChunks.cacheGroups.xxx.enforce now no longer deletes minSize for maxSize
  • fixes a bug where splitChunks cause cacheGroups to be incorrectly merged when using the same name
    • now conditions are considered per cacheGroup
    • the correct cache group comment is displayed in stats
  • fixes a bug which causes providedExports not to be updated on rebuilds when using export * from

v4.26.1

Compare Source

Bugfixes

  • fix a bug where splitChunks.maxSize causes a hanging build
  • fix a bug where splitChunks.maxSize crashes when minSize > maxSize
  • fix a edgecase where splitChunks.maxSize can cause chunks bigger than minSize
  • remove unnecessary code from global builtin

v4.26.0

Compare Source

Features

  • Switch from uglify-es to terser as default minimizer

Note: While they are officially backward-compatible, it can still happen that a new bugs occurs with terser, which break your production builds. Make sure to validate your production builds after upgrading to this version. (Note that it's always a good idea to test your output assets before deploying.)

If you want to report bugs to terser (https://github.com/terser-js/terser), please provide a minimal repro case with minimized and non-minimized code. You can configure webpack to generate non-minimized code in production mode by setting optimization.minimize: false. When reporting a bug to terser, best report a repro case which doesn't require running webpack and is reproducible with only the terser command line.

See optimization.minimizers configuration option to switch back to uglify-es or provide additional minimize options for terser.

v4.25.1

Compare Source

Bugfixes

  • fix replacement of compile-time constant expression when expression is a wrapped expression (string prefix and/or suffix).

v4.25.0

Compare Source

Features

  • add format option to DllPlugin to allow generating formated manifest json
  • add flags to ProgressPlugin to add and remove information
    • entrypoint counter was added, but disabled by default to avoid breaking change

Bugfixes

  • fix code generation for context dependencies when replacing compile-time constant expressions
  • disable the effect of the ProvidePlugin for .mjs

v4.24.0

Compare Source

Features

  • allow to pass no dependencies to DefinePlugin runtime value
    • DefinePlugin.runtimeValue(() => {...}, true) is always evaluated
  • add module argument to DefinePlugin.runtimeValue

Bugfixes

  • update webassemblyjs dependency
  • fix bug when using entry names that look like numbers with HMR

v4.23.1

Compare Source

Bugfixes

  • add space when replacing expression with constant
    • i. e. for code like return'development'===process.env.NODE_ENV&&'foo'

v4.23.0

Compare Source

Features

  • add watchMode flag to Compiler to be able to detect watch mode in plugins
  • Prefer chunk names of entrypoints when merging chunks
  • add removedFiles property to Compiler to detect removed files

Bugfixes

  • publish declarations to npm
  • upgrade @webassemblyjs/* for bugfix
  • fix crash when using a side-effect-free wasm module in production mode

Internal changes

  • test on node.js 12
  • fix memory leak in test suite

v4.22.0

Compare Source

Features

  • Add support for evaluating && and || expressions

Bugfixes

  • fix problems where order of things where not deterministic

Performance

  • improve performance of chunk graph creation
    • this will improve rebuild performance in watch mode

v4.21.0

Compare Source

Features

  • add output.libraryTarget: "amd-require" which generates a AMD require([], ...) wrapper instead of a define([], ...) wrapper
  • support arrays of strings passed to output.library, which exposes the library to a subproperty

Bugfixes

  • fix cases where __webpack_require__.e is used at runtime but is not defined in the bundle
  • fix behavior of externals of global type

Performance

  • Some performance improvements to the chunk graph generation

v4.20.2

Compare Source

Bugfixes

  • keep comments in export default in concatenated modules

v4.20.1

Compare Source

Bugfixes

  • fix crash when using libraryTarget: "amd" without library name

v4.20.0

Compare Source

Bugfixes

  • update dependencies (webpack-sources, @​webassemblyjs/*)
  • Handle errors thrown in renderes without crashing

Internal changes

  • Extended typings
  • Update internal structure of options schema to generate typings
    • Note: this exposed an issue in webpack-cli, you need to upgrade to webpack-cli@3.1.1

v4.19.1

Compare Source

Bugfixes

  • Internal requested filename for import() with target: "electron-main" uses correct path separator on windows
    (This fixes a problem with filemappings in vscode)
  • devtool: "source-map" and variants generate SourceMaps when output file is .mjs
  • browser field as object is used when using target: "electron-renderer"
  • Comments near export default are preserved
  • Passing an array as externals value, now works correctly as documented

v4.19.0

Compare Source

Bugfixes

  • Create a hash of the whole runtime code for the chunk/contenthash of entry chunks
    • Before hash was (incorrectly) calculated from (some) inputs

v4.18.1

Compare Source

Bugfixes

  • Update tapable version, which fixes a memory leak

v4.18.0

Compare Source

Features

  • Upgrade webassemblyjs dependency

v4.17.3

Compare Source

Bugfixes

  • Fix exit code when multiple CLIs are installed
  • No longer recommend installing webpack-command, but still support it when installed

v4.17.2

Compare Source

Bugfixes

  • fix a spacing issue with the ProgressPlugin on some terminals
  • force-upgrade webpack-sources for performance improvement (was already in semver range)

v4.17.1

Compare Source

Bugfixes

  • fix missing reexports in export * in a concatenated module

v4.17.0

Compare Source

v4.16.5

Compare Source

v4.16.4

Compare Source

v4.16.3

Compare Source

v4.16.2

Compare Source

v4.16.1

Compare Source

v4.16.0

Compare Source

v4.15.1

Compare Source

v4.15.0

Compare Source

v4.14.0

Compare Source

v4.13.0

Compare Source

v4.12.2

Compare Source

v4.12.1

Compare Source

v4.12.0

Compare Source

v4.11.1

Compare Source

v4.11.0

Compare Source

v4.10.2

Compare Source

v4.10.1

Compare Source

v4.10.0

Compare Source

v4.9.2

Compare Source

v4.9.1

Compare Source

v4.9.0

Compare Source

v4.8.3

Compare Source

v4.8.2

Compare Source

v4.8.1

Compare Source

v4.8.0

Compare Source

v4.7.0

Compare Source

v4.6.0

Compare Source


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.

@renovate renovate bot changed the title Update dependency webpack to v4.6.0 Update dependency webpack to v4.7.0 May 4, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.7.0 Update dependency webpack to v4.8.0 May 7, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.8.0 Update dependency webpack to v4.8.1 May 7, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.8.1 Update dependency webpack to v4.8.2 May 11, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.8.2 Update dependency webpack to v4.8.3 May 12, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.8.3 Update dependency webpack to v4.9.0 May 25, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.9.0 Update dependency webpack to v4.9.1 May 25, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.9.1 Update dependency webpack to v4.9.2 May 28, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.9.2 Update dependency webpack to v4.10.0 May 28, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.10.0 Update dependency webpack to v4.10.1 May 29, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.10.1 Update dependency webpack to v4.10.2 May 30, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.10.2 Update dependency webpack to v4.11.0 Jun 5, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.11.0 Update dependency webpack to v4.11.1 Jun 6, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.11.1 Update dependency webpack to v4.12.0 Jun 8, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.12.0 Update dependency webpack to v4.12.1 Jun 24, 2018
@renovate renovate bot changed the title Update dependency webpack to v4.29.2 Update dependency webpack to v4.29.3 Feb 7, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.29.3 Update dependency webpack to v4.29.4 Feb 15, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.29.4 Update dependency webpack to v4.29.5 Feb 18, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.29.5 Update dependency webpack to v4.29.6 Feb 28, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.29.6 Update dependency webpack to v4.30.0 Apr 23, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.30.0 Update dependency webpack to v4.31.0 May 12, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.31.0 Update dependency webpack to v4.32.1 May 22, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.32.1 Update dependency webpack to v4.32.2 May 25, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.32.2 Update dependency webpack to v4.34.0 Jun 19, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.34.0 Update dependency webpack to v4.35.3 Jul 13, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.35.3 Update dependency webpack to v4.39.1 Aug 10, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.39.1 Update dependency webpack to v4.39.2 Aug 20, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.39.2 Update dependency webpack to v4.39.3 Sep 4, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.39.3 Update dependency webpack to v4.41.0 Oct 4, 2019
@renovate renovate bot changed the title Update dependency webpack to v4.41.0 Update dependency webpack to v4.41.2 Nov 12, 2019
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

1 participant