Skip to content
This repository has been archived by the owner on Mar 18, 2019. It is now read-only.

chore(deps): update dependency webpack to v4.29.6 #26

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 25, 2018

This PR contains the following updates:

Package Type Update Change References
webpack devDependencies minor 4.8.3 -> 4.29.6 source

Release Notes

webpack/webpack

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

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

Features

  • allow to provide custom functions to IgnorePlugin

Bugfixes

  • remove incorrectly emitted dead code in concatenated modules
  • chunk ids contribute to [contenthash] for js assets
  • fix crash when trying to export globals in concatenated modules

v4.16.5

Compare Source

Bugfixes

  • (resource) query now works in import()
  • adding entries multiple times now overrides properly
    • This caused an issue when using webpack-hot-client and runtime chunks

v4.16.4

Compare Source

Bugfixes

  • fix chunkAsset hook in HotModuleReplacementPlugin

v4.16.3

Compare Source

Bugfixes

  • fix missing modules with chunks nested in unneeded require.ensures.

v4.16.2

Compare Source

Bugfixes

  • handle module.require like require
  • emit warnings for module.main.require and module.parent.require
  • sort reasons in stats
  • handle errors when parsing manifest in DllReferencePlugin

v4.16.1

Compare Source

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

Compare Source

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

Compare Source

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

Compare Source

Features:

  • add maxSize option for splitChunks (experimental)
  • add a helpful error when using wasm in a initial chunk

v4.14.0

Compare Source

Features

  • add new hook Compilation.dependencyReference to modify the dependency references

Bugfixes

  • Allow chunks to emit multiple assets to the same filename when hash matches

v4.13.0

Compare Source

Features

  • the DefinePlugin now supports runtimeValues to pass computed values with dependencies that can change over time
  • added optimization.hashedModuleIds
  • crossOrigin for chunks is only set when really needed
  • added per chunk group indicies
  • updated enhanced-resolve
    • You can now use absolute paths as keys to resolve.alias

Bugfixes

  • when delegating CLI the bin fields are used
  • when assigning indicies sync dependencies are now walked before async dependencies

v4.12.2

Compare Source

Bugfixes

  • fix crash when using invalid JSON with HMR
  • fix missing modules when a side-effect-free package is root of module concatenation
  • update chunkhash when entry-chunks list or prefetched chunks change

v4.12.1

Compare Source

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

Compare Source

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

Compare Source

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

Compare Source

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
  • Reexporting globals is now handled correctly
  • Error origins and locations are now displayed correctly

v4.10.2

Compare Source

Bugfixes

  • order of wasm globals is correctly preversed while rewriting
  • skipping side-effect-free modules up to a concatenated modules will not longer cause null module ids

v4.10.1

Compare Source

Bugfixes

  • update reasons correctly when skipping side-effect-free modules

v4.10.0

Compare Source

Features

  • Export and import name strings in them wasm are mangled
  • Unused exports in wasm are removed (Tree Shaking)
    • Don't expect size improvements yet since there is not minimizer for WASM yet which does the Dead Code Elimination, which is the second part for this optimization
  • Direct WASM dependencies are enforced for:
    • functions imports with i64 parameters or return values
    • memory and table imports
  • generate shorter wasm runtime code
  • ESM namespace object now have Symbol.toStringTag "Module"

Bugfixes

  • generate correct initializer for imported globals in wasm
  • side-effect-free modules referenced by export * from are no longer including in the bundle
  • the side-effects optimization is now possible in incremental compilation

v4.9.2

Compare Source

Bugfixes

  • functions is defined because used (fixes undeclared function error in firefox)
  • progress plugin works now in MultiCompiler scenarios again

v4.9.1

Compare Source

Bugfixes

  • fix parameter references in default parameters

Internal changes

  • change test cases to text format

v4.9.0

Compare Source

Features

  • BannerPlugin supports a function as banner option
  • allow serve property in configuration schema
  • add entryOnly option to DllPlugin to only expose modules in the entry point
  • Allow to choose between webpack-cli and webpack-command
  • improve error message when JSON parsing fails
  • allow BOM in JSON
  • sort usedIds in records for stablility

Bugfixes

  • align module not found error message with node.js
  • fix behavior of splitChunks when request limit has reached (caused suboptimal splitting)
  • fix handling of RegExp in records (caused absolute path in records)
  • fix handling of circular chunks (caused missing __webpack_require__.e)
  • runtimeChunk is even generated when all modules are moved by splitChunks (caused multiple runtime chunks instead of single one)
  • string ids are no longer recorded (caused duplicate/wrong chunk ids)
  • fix link to migration guide in error message

Internal changes

  • add more typings
  • Use travis stages
  • add many-pages example

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

This PR has been generated by Renovate Bot. View repository job log here.

@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 7590798 to de76ea4 Compare May 25, 2018 22:06
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.9.0 chore(deps): update dependency webpack to v4.9.1 May 25, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from de76ea4 to 8948adb Compare May 28, 2018 20:43
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.9.1 chore(deps): update dependency webpack to v4.9.2 May 28, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 8948adb to 25f57c7 Compare May 29, 2018 00:56
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.9.2 chore(deps): update dependency webpack to v4.10.0 May 29, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 25f57c7 to 6c19761 Compare May 29, 2018 18:39
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.10.0 chore(deps): update dependency webpack to v4.10.1 May 29, 2018
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.10.1 chore(deps): update dependency webpack to v4.10.2 May 30, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch 2 times, most recently from 51300f4 to ad20cd4 Compare June 5, 2018 12:15
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.10.2 chore(deps): update dependency webpack to v4.11.0 Jun 5, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from ad20cd4 to d85af82 Compare June 6, 2018 07:35
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.11.0 chore(deps): update dependency webpack to v4.11.1 Jun 6, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from d85af82 to 88193a7 Compare June 8, 2018 08:15
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.11.1 chore(deps): update dependency webpack to v4.12.0 Jun 8, 2018
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.12.0 chore(deps): update dependency webpack to v4.12.1 Jun 24, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 88193a7 to 127ffb2 Compare June 24, 2018 09:41
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.12.1 chore(deps): update dependency webpack to v4.12.2 Jun 27, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch 2 times, most recently from 0435925 to a1174fb Compare June 28, 2018 16:57
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.12.2 chore(deps): update dependency webpack to v4.13.0 Jun 28, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from a1174fb to 05a8b83 Compare June 29, 2018 12:52
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.13.0 chore(deps): update dependency webpack to v4.14.0 Jun 29, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 05a8b83 to d0033b8 Compare July 4, 2018 20:48
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.14.0 chore(deps): update dependency webpack to v4.15.0 Jul 4, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from d0033b8 to 50fbe3a Compare July 5, 2018 14:24
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.15.0 chore(deps): update dependency webpack to v4.15.1 Jul 5, 2018
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.15.1 chore(deps): update dependency webpack to v4.16.0 Jul 11, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 50fbe3a to 30e3950 Compare July 11, 2018 09:19
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.26.1 chore(deps): update dependency webpack to v4.27.0 Dec 4, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from d57c45c to bb1ccfe Compare December 5, 2018 19:31
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.27.0 chore(deps): update dependency webpack to v4.27.1 Dec 5, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from bb1ccfe to c28be42 Compare December 19, 2018 12:42
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.27.1 chore(deps): update dependency webpack to v4.28.0 Dec 19, 2018
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.28.0 chore(deps): update dependency webpack to v4.28.1 Dec 20, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch 2 times, most recently from d66ae47 to 7d8b0a1 Compare December 22, 2018 12:59
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.28.1 chore(deps): update dependency webpack to v4.28.2 Dec 22, 2018
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 7d8b0a1 to c6b8f09 Compare December 29, 2018 12:03
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.28.2 chore(deps): update dependency webpack to v4.28.3 Dec 29, 2018
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.28.3 chore(deps): update dependency webpack to v4.28.1 Jan 8, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from c6b8f09 to a6721b5 Compare January 8, 2019 10:32
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.28.1 chore(deps): update dependency webpack to v4.28.4 Jan 10, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from a6721b5 to 18391ad Compare January 10, 2019 16:22
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.28.4 chore(deps): update dependency webpack to v4.29.0 Jan 20, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 18391ad to 34961c3 Compare January 20, 2019 17:55
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.29.0 chore(deps): update dependency webpack to v4.29.1 Feb 4, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch 2 times, most recently from 30dc7d1 to 8eb016b Compare February 6, 2019 14:36
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.29.1 chore(deps): update dependency webpack to v4.29.2 Feb 6, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.29.2 chore(deps): update dependency webpack to v4.29.3 Feb 7, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 8eb016b to b005d9f Compare February 7, 2019 08:47
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from b005d9f to 295a9c5 Compare February 15, 2019 15:28
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.29.3 chore(deps): update dependency webpack to v4.29.4 Feb 15, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from 295a9c5 to d68396f Compare February 18, 2019 10:26
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.29.4 chore(deps): update dependency webpack to v4.29.5 Feb 18, 2019
@renovate renovate bot changed the title chore(deps): update dependency webpack to v4.29.5 chore(deps): update dependency webpack to v4.29.6 Feb 28, 2019
@renovate renovate bot force-pushed the renovate/webpack-4.x branch from d68396f to 4eb159b Compare February 28, 2019 10:22
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant