z-kit / z-hello

The z-kit component template, starter point to create z-kit compatible components.
MIT License
1 stars 0 forks source link

Update webpack to the latest version πŸš€ #36

Closed greenkeeper[bot] closed 5 years ago

greenkeeper[bot] commented 7 years ago

Version 3.0.0 of webpack just got published.

Dependency webpack
Current Version 2.6.1
Type devDependency

The version 3.0.0 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of webpack. Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Release Notes v3.0.0

Changes from 2.6.1 to 3.0.0

Features

  • node_modules no longer mangle to ~ in stats [breaking change]
  • timeout for HMR requests is configurable
  • added experimental Scope Hoisting (webpack.optimize.ModuleConcatenationPlugin)
  • some performance improvements
  • added output.libraryExport to select an export for the library
  • sourceMapFilename now supports [contenthash] [breaking change]
  • module.noParse supports functions
  • add node: false option to disable all node specific additions

Bugfixes

  • add workaround for breakpoints in eval source maps (chrome)
  • avoid creating redundant connections in chunk graph
  • enable chunk modules in stats by default
  • add special behavior when using CommonsChunkPlugin with only async option
  • error is shown when hot-only HMR fails
  • fixed a few issues with weird stats output [breaking change]
  • fixed a bug in occurrence order plugin [breaking change]
  • optimization plugins now only affect the current compilation [breaking change]
  • context now also include index files [breaking change]
  • require.resolve evaluate truthy [breaking change]
  • import order no longer adds to hash
  • Hashing for RawModule fixed

Internal changes

  • child compilations get records and cache assigned (they need a unique name) [breaking change]
  • Set is used for Child.modules, Module.chunks, Reason.chunks [breaking change]
  • uglifyjs-plugin is moved into separate repository

Changes from 3.0.0-rc.2 to 3.0.0

Bugfixes

  • fix duplicate dependencies in ConcatenatedModule
  • Hashing for RawModule fixed

Internal changes

  • uglifyjs-plugin is moved into separate repository
Commits

The new version differs by 176 commits.

  • bf4ec9c 3.0.0
  • 9feda63 Merge pull request #5028 from webpack/feature/externalize_uglify_plugin
  • 49d6e38 Merge pull request #5086 from webpack/ci/node-8
  • 3dcb133 OSX test on node.js 8
  • f4b8785 Merge pull request #5012 from webpack/TheLarkInn-patch-1
  • d26c402 chore(deps): upgrade uglifyjs-webpack-plugin deps to get latest webpack-sources so tests pass
  • 3da4f3e Merge pull request #5085 from jbellenger/jbellenger/rawmodule-hash
  • 8c9dc14 fix RawModule hashing
  • c2c5d73 Update README.md
  • 316d4b9 Merge pull request #5084 from timse/remove-duplicate-code
  • ae18552 update test case with changed hash due to less clutter in dependencies
  • fc20348 unite iteration through modules into one loop
  • 083843e remove code that pushes arrays of dependencies into dependencies
  • ab636b0 Merge pull request #5075 from andreipfeiffer/master
  • 3b3449c Refactor: use const for non reassignable identifier

There are 176 commits in total.

See the full diff

Not sure how things should work exactly? There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html) and of course you may always [ask my humans](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 7 years ago

Version 3.1.0 just got published.

Update to this version instead πŸš€

Release Notes v3.1.0

Features:

  • Allow different library names for UMD
  • Support for passing a defined identifier as this in a IIFE
  • Use the new resolve performance option cacheWithContext: false by default when it's safe
  • Support array of functions as configuration
  • add sortModules to Chunk which is required in extract-text-plugin to support webpack 3

Bugfixes:

  • ! with truthy webpack identifier will evaluate correctly
  • assets and dependencies are preserved in concatenated modules
  • Fix some internal usage of deprecated APIs
Commits

The new version differs by 95 commits.

  • 4bb3018 3.1.0
  • 7e757cd Merge pull request #5194 from webpack/feature/hoist_regex_literals
  • 2879fb3 Merge pull request #5225 from hulkish/feature/added-chunk-sortModules-method
  • 5f08aa4 removed default params for node 4
  • cadf9f7 added sortModules method to Chunk class
  • 70b7d2f fix(sp): spelling mistake in const name
  • 0ab36c4 Merge pull request #5196 from AndersDJohnson/multi-compiler-functions
  • 2eccb19 Merge pull request #5081 from KTruong888/4099_es6_refactor_lib_hot_module_replacement_plugin
  • e365b2e Merge pull request #5210 from ematipico/master
  • 7913789 Merge pull request #5220 from liuyuanyangscript/master
  • 15becbd README.md bugfix
  • 2ccc1fd Changed statement 'var' to 'const'
  • a589a6c Merge pull request #5183 from kahwee/patch-1
  • c2fa5d4 feat(perf): remove unneded regexp escape
  • 987a9f3 feat(perf): hoist final regexp

There are 95 commits in total.

See the full diff

greenkeeper[bot] commented 7 years ago

Version 3.2.0 just got published.

Update to this version instead πŸš€

Release Notes v3.2.0

Bugfixes:

  • fix duplicate entries in SourceMaps.
  • call imported functions with correct context.
  • support strictThisContextOnImports in ConcatenatedModules.
  • fix a bug which prevents parsing arguments for imported function calls when using strictThisContextOnImports.
  • support nested .call() renames of this.
  • fix typeof with require.resolve(Weak).
  • fix hashing with ConcatenatedModules.
Commits

The new version differs by 27 commits.

  • d005990 3.2.0
  • 67c17a6 Merge pull request #5234 from webpack/bugfix/source-map-duplicate
  • 85ffe1e add test case
  • 5a64498 Merge pull request #5260 from ljqx/iife-nested-this-properties
  • a6c8362 Merge pull request #5261 from webpack/bugfix/import-context-strict-this
  • 6842d50 Call imports with the correct context.
  • 12a1352 [Parser] rename this in .call(this)
  • bcde519 Merge pull request #5082 from KTruong888/4099_es6_refactor_lib_compiler
  • edd6228 fix linting
  • 79926b3 - Edit PR to use normal functions again due to β€˜arguments’ not working with arrow functions
  • 4266ab8 - Fix compiler test as discussed in PR
  • 13bc80b - Put Watching as a property on Compiler rather than a static method
  • 6dffcca - Remove β€˜self’ references from lib/Compiler and use more arrow functions instead
  • 4378c92 - Add more tests
  • bfd5ed9 - Fix linter issues

There are 27 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.3.0 just got published.

Update to this version instead πŸš€

Release Notes v3.3.0

Features:

  • HMR logging now displays an expandable shorter module id.

Bugfixes:

  • Fix refactoring typo this.compiler.compiler is not a function
  • NormalModule source can be cache between compilations (performance for incremental builds)
  • webpack now also watches when missing directories are added (i. e. when a module was missing and is installed)
Commits

The new version differs by 23 commits.

  • 5b119e7 3.3.0
  • b128db1 Merge pull request #5290 from webpack/bugfix/caching-module
  • a064968 Merge pull request #5297 from webpack/bugfix/watch-missing-directories
  • 329a805 add test case for error recovery while watching
  • b4c74b2 allow watch cases to have errors per step
  • f3ddcdd upgrade watchpack
  • e72c3b2 missing dependencies could be files too
  • c1a0244 store hash in depndencyTemplates Map instead of comparing identify
  • 981fd23 Merge pull request #5253 from rrharvey/feature/hmr-module-names
  • b093f02 only group HMR module updates if name contains loaders
  • 6c5dc1b respect log level in HMR client log groups
  • d312022 Merge pull request #5269 from huangc28/fix-compilerjs-error-undefined-compiler
  • 6c0e452 Fix typo that causes "TypeError: this.compiler.compiler is not a function" since compiler is undefined.
  • 95c7fa4 Merge pull request #3103 from kutyel/master
  • 43f967c Adjust style to es6 :tada:

There are 23 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.4.0 just got published.

Update to this version instead πŸš€

Release Notes v3.4.0

Features:

  • Improved optimization bailout messages
  • NamedModulesPlugins and HashedModuleIdsPlugin work now properly with delegated modules (DllReferencePlugin) and externals.
  • add --config-name option to choose a config by name for compiling a part of the config
  • Improved error message when parsing in ModuleConcatenationPlugin fails
  • Upgrade a lot of dependencies
  • Child compilation names are not relative in stats

Bugfixes:

  • Fix setting boolean options in configuration (profile, bail)
  • Fix "uncatched" exception in HMR runtime code
  • Fix two cases where ModuleConcatenationPlugin crashes (missing internal name)
    • Concatating delegated modules (from Dlls)
    • reference to the default export of the root module
  • Fix --module-bind-pre and --module-bind-post

Performance:

  • Performance improvements in
    • SourceMapDevToolPlugin
    • AggressiveSplittingPlugin
    • NormalModule variable injection
    • Parser
    • RecordIdsPlugin
    • Stats
Commits

The new version differs by 88 commits.

  • c8732c8 3.4.0
  • d1619d4 Merge pull request #4856 from matthewmeyer/hashDependantModuleIds
  • b159ec2 Merge pull request #5180 from webpack/feature/improve-module-concat-bailout-messages
  • 32264b8 Merge branch 'master' into feature/improve-module-concat-bailout-messages
  • 4b12c56 Merge pull request #5369 from webpack/bugfix/scope-hoisting-dll
  • 440b5df use original request as libIdent for delegated modules
  • 35c8097 Make sure it's a real module when choosing for ModuleConcatenation
  • d4f3bc3 Merge pull request #5150 from webpack/test/benchmark
  • bb0f41a Merge pull request #5362 from webpack/deps/minor-updates
  • 544fee4 fix lint problem
  • 3598359 update stats test for larger file
  • 378ad46 update all dependencies to latest compatible version
  • 008ac78 Merge pull request #5353 from webpack/deps/extract-text-webpack-plugin
  • ee358bd Merge pull request #5351 from webpack/deps/supports-color
  • 91332b6 Merge pull request #5356 from webpack/deps/i18n-webpack-plugin

There are 88 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.4.1 just got published.

Update to this version instead πŸš€

Release Notes v3.4.1

Bugfixes:

  • fix incorrect warnings about exports when using the DllReferencePlugin
Commits

The new version differs by 3 commits.

  • 1f064bc 3.4.1
  • 8f4a9d2 Merge pull request #5375 from webpack/bugfix/delegated-exports
  • 9dbed73 integrate the delegated module better into the exports flagging process

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.0 just got published.

Update to this version instead πŸš€

Release Notes v3.5.0

Features:

  • add stats.excludeAssets to allow to filter assets in list (@ldrick)
  • add import(/* webpackMode: "weak" */ "module") to try to load a module without network request (@faceyspacey)
  • add 4. argument to require.context which is the context mode. Can be false, "eager", "lazy-once", "weak" and "async-weak". (@faceyspacey)
  • require.resolveWeak now support expressions (@faceyspacey)
  • generate only a single require for modules references in scope-hoisted modules (ModuleConcatenationPlugin)

Bugfixes:

  • keep correct import order when using the ModuleConcatenationPlugin
  • Generate shorter, more readable identifiers in ConcatenatedModule
  • --help output is flushed before process exit (@esbenp)
  • exit code is reliable reported for CLI validation error (@polomsky)
  • stats options are now validated by schema (@esbenp)
  • fixes problem when using the CommonsChunkPlugin in async mode without name argument
  • fixes description of --resolve-extensions (@tomek-d)
  • fixes has no internal name when using dependency variable in root of scope-hoisted modules (ModuleConcatenationPlugin)

Examples:

Commits

The new version differs by 68 commits.

  • 75a8ffe 3.5.0
  • afa28c0 Merge pull request #5453 from webpack/bugfix/import-order-scope-hoisting
  • a569764 Merge pull request #5457 from tomek-d/resolve-extensions-typo
  • 0b8023a fixes #5096
  • 29d1336 Fixed bug in --resolve-extensions parameter documentation
  • 39051df update example
  • 7619c43 generate more pretty names for nested concatenation
  • 6607cfa remove ordering in ModuleConcatenationPlugin
  • 2bbbf50 Merge pull request #5437 from esbenp/fix-help-output-test-5345
  • 9f5bffa beautify
  • 334c1c4 remove unused variable
  • 8835751 fix conflict handling
  • 7099fcc update stats test case
  • b77a52b add reserved words to avoid syntax errors
  • 16a5831 use old new Buffer api for node 4

There are 68 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.1 just got published.

Update to this version instead πŸš€

Release Notes v3.5.1

Bugfixes:

  • fix invalid syntax when using non-number ids with Scope Hoisting
Commits

The new version differs by 3 commits.

  • 5be9593 3.5.1
  • 43d877f Merge pull request #5460 from webpack/bugfix/stringify-concated
  • b05b49b fix invalid generated code with scope hoisting and non-number ids

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.2 just got published.

Update to this version instead πŸš€

Release Notes v3.5.2

Bugfixes:

  • fixes stack overflow with circular dependencies (ModuleConcatenationPlugin)
Commits

The new version differs by 12 commits.

  • 25302e5 3.5.2
  • f04f066 Merge pull request #5471 from webpack/bugfix/stack-overflow-concat
  • 54fbfe0 Merge pull request #5467 from moschan/refactor-entry-option-plugin
  • fb0ca64 Merge pull request #5466 from hzoo/patch-1
  • b06d69f rollback travis to precise dist
  • bc67522 fixes stack overflow with circular dependencies
  • 9a87824 Refactor "EntryOptionPlugin.js"
  • 4805027 add fix command for eslint
  • 0059bcf Merge pull request #5458 from samccone/sjs/remove-function-redeclare
  • a2601c3 update examples
  • 1869688 fix building of examples
  • 8b3772d Remove function redeclaration.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.3 just got published.

Update to this version instead πŸš€

Release Notes v3.5.3

Bugfixes

  • fixes a name conflict with the ModuleConcatenationPlugin
Commits

The new version differs by 7 commits.

  • 4b2b1ad 3.5.3
  • 4430af4 Merge pull request #5487 from webpack/bugfix/issue-5481
  • b7c3491 Merge pull request #5485 from webpack/bot/inactive
  • e1bfecf Merge pull request #5486 from webpack/bot/pr-pending
  • 0e73a24 also generate a new identifier for interop name
  • 0ad5d21 Wait for CI not pending until reporting CI status
  • 72420fa mark and close inactive issue after half a year

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.4 just got published.

Update to this version instead πŸš€

Release Notes v3.5.4

Bugfixes

  • Warnings and errors contribute to hash, which shows stats on warning-only change
  • HMR: avoid crash when calling accept handler on disposed module
  • HMR: disable Scope Hoisting for modules using HMR
  • restore backwards compatibility of ConcatenatedModule (@kisenka)

Features:

  • Add option to limit the number of parallel processed modules (parallelism)
Commits

The new version differs by 22 commits.

  • 990563f 3.5.4
  • 2475c6a Merge pull request #5506 from webpack/bugfix/concat-hmr
  • 0ea37a5 Disallow Scope Hoisting when using HMR
  • 287d587 Merge pull request #5480 from kisenka/concatenated-module-in-3.5-compat
  • 3d272ac fix: restore modules property of ConcatenatedModule (fixes #5477)
  • 7a36951 Merge branch 'master' of https://github.com/webpack/webpack into concatenated-module-in-3.5-compat
  • 839915c Merge pull request #5501 from webpack/bugfix/hash-watch-warnings-errors
  • 93af585 fix stats tests
  • 3820157 fix lint problem
  • 0925a9d Merge pull request #5502 from webpack/feature/limit-processed-modules
  • 09c34cf remove hash from stats test with error
  • 930c019 fix validation output test
  • f9bf8a9 Limit the number of parallel processed modules
  • 7905bf5 Warnings and Errors contribute to hash
  • f7bcba7 Merge pull request #5500 from webpack/bugfix/hmr-disposed-handler

There are 22 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.5 just got published.

Update to this version instead πŸš€

Release Notes v3.5.5

Bugfixes:

  • fixes a bug where modules where incorrectly removed from chunks resulting in call on undefined errors (can happen when using externals and CommonChunkPlugin)
  • Modules no longer loose __esModule flag on incremental build with ModuleConcatenationPlugin
  • __esModule flag is now only set when needed with the ModuleConcatenationPlugin
Commits

The new version differs by 5 commits.

  • ef6ab68 3.5.5
  • 6bdd9dc Merge pull request #5535 from webpack/bugfix/incremental-concat-compat
  • f75418f Merge pull request #5534 from webpack/bugfix/incorrect-graph
  • c5deb59 set compatiblity flag correctly even after incremental build
  • 99c2706 Ensure that graph structure stay consistent

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.5.6 just got published.

Update to this version instead πŸš€

Release Notes v3.5.6

Bugfixes

  • --watch-poll also accepts a number now (@civalin)
  • optimization bailout messages are now correctly cleared on incremental compilation (@STRML)
  • (back)slashes in querystring are not correctly handled when making the request relative to context (@donocode)
  • orginalError -> originalError in HMR API (@sokra)
  • fix Cannot read property '0' of undefined in harmony modules (@sokra)
  • Handle require to root of concatenated module correctly and don't generate __webpack_require__(null) (@sokra)
  • No longer use async as variable name (@sokra)
  • Object in options are now cloned when applying defaults (@sokra)

Performance

  • Performance improvements for SourceMap devtool (@filipesilva)
Commits

The new version differs by 31 commits.

  • 92d5c20 3.5.6
  • 978e9f9 Merge pull request #5635 from webpack/bugfix/clone-options
  • 5020104 allow boolean values for node and performance
  • a4cf91f Merge pull request #5633 from webpack/bugfix/indirect-import
  • f04cce8 clone options and don't modify them
  • 1fb9eb1 fixes #5624
  • fb8afe7 Merge pull request #5623 from webpack/bugfix/concat-require-root
  • 1b85726 Merge pull request #5621 from webpack/bugfix/hmr-api
  • af470a5 handle inner non-harmony dependencies correctly in ConcatenatedModule
  • ccc4317 fix typo in HMR API
  • 9d9ac3b Merge pull request #5608 from xekri/patch-1
  • 633eac4 typo fix
  • b75b20b Merge pull request #5595 from filipesilva/fix-deopts
  • c8fd542 Merge pull request #5599 from donocode/master
  • 174fd4e Prevent NormalModule contextify from contextifying query parameters

There are 31 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.6.0 just got published.

Update to this version instead πŸš€

Release Notes v3.6.0

Bugfixes

  • Using folder names on CLI now correctly uses folder as entry (@gyandeeps)
  • Assign correct cache object to child compiler (@sokra)
Commits

The new version differs by 17 commits.

  • 6226759 3.6.0
  • 2b1046e Merge pull request #5671 from webpack/bugfix/child-cache
  • 3d99168 remove unused code, add todo comment
  • 46432c4 add test for notCacheable in CachePlugin
  • 460e6b6 remove incorrect tests
  • 0975d13 assign correct cache to child compilation
  • cc03d8e fix sponsors list for opencollective API changes
  • f6285d2 Merge pull request #5652 from JLHwung/remove-duplicate-eslintrc-configuration-item
  • 5463c1e add next PR label
  • d87c88e Merge pull request #5517 from webpack/ci/travis
  • 2f428aa CI improvements
  • 9e14196 update to newer travis image
  • 44df871 chore(eslint): remove duplicate configuration item
  • 2206ee0 Merge pull request #5625 from gyandeeps/issue5576
  • 4f5e78b Use statsSync isDirectory to check dir

There are 17 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.7.0 just got published.

Update to this version instead πŸš€

Release Notes v3.7.0

Features

  • Static analysis can now concat string with .concat (@loganfsmyth)
  • add ContextExclusionPlugin to exclude files in a context (@timse)
  • add deepChildren flag to CommonChunkPlugin (@ArcEglos, @ljcrapo)
  • Allow using non-UMD externals combined with UMD externals (@NMinhNguyen)

Bugfixes

  • References to dll now contribute correctly to hash (@dtinth)
  • fix behavior of --watch-poll in CLI (@Aladdin-ADD)
  • set crossOrigin on script tags for HMR (@STRML)
  • fix usage of local AMD modules in AMD require (@chuckdumont)
  • show a warning when using g or y flag for context RegExp (@simon-paris)

Performance

  • fixes a performance problem with many ESM import/exports in a module (@sokra)
  • fixes a performance problem with heavily circular/interconnected chunks graphs (@sokra)
Commits

The new version differs by 58 commits.

  • 551ea76 3.7.0
  • 32f8b6b Merge pull request #5802 from webpack/bugfix/missing-harmony-crash
  • 1381f67 fix crashes when imported module fails compiling
  • dee0774 Merge pull request #5717 from webpack/allow-negative-early-bail-for-context
  • be72b2a Merge pull request #5753 from simon-paris/master
  • 7ebf931 Merge pull request #5786 from webpack/performance/chunks
  • 48096a1 Merge pull request #5797 from webpack/bugfix/uncatched-bail
  • 2919a9c prevent crashing when error out early in bail mode
  • 7870bfc improve chunk graph building performance
  • d9accb4 Merge pull request #5764 from ljcrapo/commons-chunk-deep-children
  • 4795ffd Merge pull request #5795 from webpack/bugfix/graph-correctness-modules
  • 91df794 bugfix and test for graph correctness
  • 2df0bf1 Merge pull request #5793 from webpack/bugfix/graph-correctness
  • 130ace8 fix graph correctness with multiple entries
  • 289c19b Merge pull request #5784 from NMinhNguyen/bugfix/only-use-umd-externals-for-umd-library-target

There are 58 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.7.1 just got published.

Update to this version instead πŸš€

Release Notes v3.7.1

Bugfixes

  • fix crash for undefined optional in ExternalModule (@STRML)
Commits

The new version differs by 3 commits.

  • ce24e98 3.7.1
  • 15fe297 Merge pull request #5807 from STRML/fix/externalModule
  • c9bad17 Fix #5806, TypeError on ExternalModule hash.update

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.8.0 just got published.

Update to this version instead πŸš€

Release Notes v3.8.0

Features:

  • It's now possible to include the --env data in stats (@jbottigliero)
  • There is a warning when trying to load a initial chunk with import() or require.ensure now (@sokra)

Bugfixes:

  • fix a race condition for ENOENT errors (@simon-paris)
  • chunk reasons comments are not set more consistent (@sokra)
  • fix schema for stats and be more strict (@jbottigliero)
    • This may lead to errors if you've provided wrong properties.
  • remove the absolute path from the parser error message (@sokra)
  • fix changed behavior when loading a initial chunk on demand (@sokra)

Performance

  • chunk graph is now build in breath-first traversal, which is faster (@sokra)
  • fix a performance problem in some edge cases (@sokra)
Commits

The new version differs by 26 commits.

  • 1dc5618 3.8.0
  • dfc34ce Merge pull request #5838 from webpack/bugfix/include-origin-in-parse-error
  • d96c01e remove absolute path from parse error
  • 64ac3f0 Merge pull request #5835 from jbottigliero/tests-statsCases
  • f61e748 Merge pull request #5837 from webpack/bugfix/async-dep-to-initial
  • b597322 fix behavior and add a warning when trying to load an
  • 5c687cd [tests] statsCases/module-deduplication
  • 5433b8c Merge pull request #5825 from jbottigliero/fix-webpackOptionsSchema
  • 5761875 [fix] webpackOptionsSchema.json
  • e0d4501 [fix] webpackOptionsSchema
  • 33818bc Merge pull request #5812 from simon-paris/ignore-enoent-in-contextmodulefactory-resolvedependencies
  • 1bd8b74 Merge pull request #5817 from webpack/bugfix/semetrical-chunk-reason
  • 2d60f13 Merge pull request #5823 from webpack/ci/exclude-old-version
  • 0b6e9d2 Exclude testing in older versions
  • 0b3dfcb Merge pull request #5822 from webpack/bugfix/commons-chunk-plugin

There are 26 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.8.1 just got published.

Update to this version instead πŸš€

Release Notes v3.8.1

Bugfixes:

  • add missing keys to stats schema for validation
Commits

The new version differs by 3 commits.

  • b8e6b4a 3.8.1
  • bb5a072 Merge pull request #5840 from webpack/bugfix/missing-stats-keys
  • c4bb0f4 add missing stats keys

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.9.0 just got published.

Update to this version instead πŸš€

Release Notes v3.9.0

Features

  • add more descriptions to the schema for better validation errors
  • Handle arrow functions in AMD define/require

Bugfixes

  • added stats.all option to schema
  • UMD uses self before this as global object
  • Use window instead of this in JSONP
  • handle null in SourceMap correctly
  • Use Error name instead of instanceof to check for validation Error
  • Respect node.js deprecation configuration for some deprecation messages in webpack
  • Generate shorter identifiers for ConcatenatedModules to save memory
  • fix increasing delay when using HMR with multiStep: true
Commits

The new version differs by 52 commits.

  • 73e34a7 3.9.0
  • 05c5479 Merge pull request #5849 from cdata/fix-5843
  • 801a253 Merge pull request #5862 from Slashgear/fix-hmr-es6-bundles
  • 9c1f9fe Merge pull request #6018 from webpack/ci/webpack-sources-upgrade
  • c23cf31 upgrade webpack-sources in lockfile
  • 2525466 Merge pull request #6001 from lencioni/concatenation-efficiency
  • 37d70bd Avoid calling hash.update multiple times in ConcatenatedModules
  • 8fdf411 Simplify identifier creation in ConcatenatedModules
  • 7bbf31e Merge pull request #6007 from webpack/bugfix/multi-step-hmr
  • 78d6ba8 Merge pull request #6005 from madeinfree/fix-parser-apply
  • 991ec20 fix increasing delay with multiStep HMR
  • f9d797f fix: Compiler parser.apply bug
  • 885e9ee Merge pull request #5985 from EugeneHlushko/respect-no-deprecation-flag
  • 20759bb Merge pull request #5997 from filipesilva/concatenated-module-identifier
  • aef6f19 Use shorter identifier for ConcatenatedModules

There are 52 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.9.1 just got published.

Update to this version instead πŸš€

Release Notes v3.9.1

Bugfixes:

  • add ignored and stdin to schema of watchOptions
Commits

The new version differs by 3 commits.

  • 5acbe2f 3.9.1
  • 7cca6bb Merge pull request #6044 from webpack/bugfix/schema-watch-options
  • a71284e Add missing watchOptions properties to schema

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.10.0 just got published.

Update to this version instead πŸš€

Release Notes v3.10.0

Features:

  • add publicPath and fileContext to SourceMapDevToolPlugin
  • require.include no longer uses all exports (Tree Shaking)
Commits

The new version differs by 8 commits.

  • c71fd05 3.10.0
  • 2c244d2 Merge pull request #6061 from webpack/bugfix/require-include-exports
  • 00cd8b4 allow tree-shaking for require.include
  • 905a8f1 Merge pull request #5986 from EugeneHlushko/feature-sourcemap-use-filename-in-url
  • 471e1a2 make url only relative when no publicPath has been provided
  • a539f24 SourceMapDevToolPlugin: update test config with example from change request
  • 612111a SourceMapDevToolPlugin: Second test case, make sure sourcemap file is written to expected directory considering the fileContext was provided
  • 840b43f SourceMapDevToolPlugin: add fileContext and publicPath options. Add a configCase test

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.11.0 just got published.

Update to this version instead πŸš€

Commits

The new version differs by 62 commits.

  • f010546 update examples
  • bc840ec 3.11.0
  • 9323ee6 Merge pull request #6398 from addaleax/no-binding
  • c7cbc35 Merge pull request #6430 from jbottigliero/update/ajv
  • 61b75b7 update ajv + ajv-keywords
  • 8da8b93 Work around Node environment variable bug
  • ddb1fad Merge pull request #6408 from ocombe/fix/#6407-empty-array
  • 2aebfbe fix(ConcatenatedModule): don't throw on arrays with empty values
  • 3972d9a Merge pull request #6391 from nerdkid93/patch-1
  • e4375f8 Avoid relying on Node’s internals
  • 0dd1727 change polymer loader link
  • 33f518b Merge pull request #6300 from nename0/fix-6243
  • 80ed1c4 Merge pull request #6335 from Connormiha/banner-plugin-optimize
  • 5d93c53 Minor optimize banner plugin
  • 1895b76 Add Tests checking chunkhash of runtime chunk only changes if needed

There are 62 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.0.0 just got published.

Update to this version instead πŸš€

Release Notes v4.0.0

Big changes

  • Environment
    • Node.js 4 is no longer supported. Source Code was upgraded to a higher ecmascript version.
  • Usage
    • You have to choose (mode or --mode) between two modes now: production or development
      • production enables all kind of optimizations to generate optimized bundles
      • development enables comments and hint for development and enables the eval devtool
      • production doesn't support watching, development is optimized for fast incremental rebuilds
      • production also enables module concatenating (Scope Hoisting)
      • You can configure this in detail with the flags in optimization.* (build your custom mode)
      • process.env.NODE_ENV are set to production or development (only in built code, not in config)
      • There is a hidden none mode which disables everything
  • Syntax
    • import() always returns a namespace object. CommonJS modules are wrapped into the default export
      • This probably breaks your code, if you used to import CommonJs with import()
  • Configuration
    • You no longer need to use these plugins:
      • NoEmitOnErrorsPlugin -> optimization.noEmitOnErrors (on by default in production mode)
      • ModuleConcatenationPlugin -> optimization.concatenateModules (on by default in production mode)
      • NamedModulesPlugin -> optimization.namedModules (on by default in develoment mode)
    • CommonsChunkPlugin was removed -> optimization.splitChunks, optimization.runtimeChunk
  • JSON
    • webpack now handles JSON natively
      • You may need to add type: "javascript/auto" when transforming JSON via loader to JS
      • Just using JSON without loader should still work
    • allows to import JSON via ESM syntax
      • unused exports elimination for JSON modules
  • Optimization
    • Upgrade uglifyjs-webpack-plugin to v1
      • ES15 support

Big features

  • Modules
    • webpack now supports these module types:
      • javascript/auto: (The default one in webpack 3) Javascript module with all module systems enabled: CommonJS, AMD, ESM
      • javascript/esm: EcmaScript modules, all other module system are not available
      • javascript/dynamic: Only CommonJS and, EcmaScript modules are not available
      • json: JSON data, it's available via require and import
      • webassembly/experimental: WebAssembly modules (currently experimental)
    • javascript/esm handles ESM more strictly compared to javascript/auto:
      • Imported names need to exist on imported module
      • Dynamic modules (non-esm, i. e. CommonJs) can only imported via default import, everything else (including namespace import) emit errors
    • In .mjs modules are javascript/esm by default
    • WebAssembly modules
      • can import other modules (JS and WASM)
      • Exports from WebAssembly modules are validated by ESM import
        • You'll get a warning/error when trying to import a non-existing export from WASM
      • can only be used in async chunks. They doesn't work in initial chunks (would be bad for web performance)
        • Import modules using WASM via import()
      • This is an experimental feature and subject of change
  • Optimization
    • sideEffects: false is now supported in package.json
      • sideEffects in package.json also supports glob expressions and arrays of glob expressions
    • Instead of a JSONP function a JSONP array is used -> async script tag support, order no longer matter
    • New optimization.splitChunks option was introduced
      Details: https://gist.github.com/sokra/1522d586b8e5c0f5072d7565c2bee693
    • Dead branches are now removed by webpack itself
      • Before: Uglify removed the dead code
      • Now: webpack removes the dead code (in some cases)
      • This prevents crashing when import() occur in a dead branch
  • Syntax
    • webpackInclude and webpackExclude are supported by the magic comment for import(). They allow to filter files when using a dynamic expression.
    • Using System.import() now emits a warning
      • You can disable the warning with Rule.parser.system: true
      • You can disable System.import with Rule.parser.system: false
  • Configuration
    • Resolving can now be configured with module.rules[].resolve. It's merged with the global configuration.
    • optimization.minimize has been added to switch minimizing on/off
      • By default: on in production mode, off in development mode
    • optimization.minimizer has been added to configurate minimizers and options
  • Usage
    • Some Plugin options are now validated
    • CLI has been move to webpack-cli, you need to install webpack-cli to use the CLI
    • The ProgressPlugin (--progress) now displays plugin names
      • At least for plugins migrated to the new plugin system
  • Performance
    • UglifyJs now caches and parallizes by default
    • Multiple performance improvements, especially for faster incremental rebuilds
    • performance improvement for RemoveParentModulesPlugin
  • Stats
    • Stats can display modules nested in concatenated modules

Features

  • Configuration
    • Module type is automatically choosen for mjs, json and wasm extensions. Other extensions need to be configured via module.rules[].type
    • Incorrect options.dependencies configurations now throw error
    • sideEffects can be overriden via module.rules
    • output.hashFunction can now be a Constructor to a custom hash function
      • You can provide a non-cryto hash function for performance reasons
    • add output.globalObject config option to allow to choose the global object reference in runtime exitCode
  • Runtime
    • Error for chunk loading now includes more information and two new properties type and request.
  • Devtool
    • remove comment footer from SourceMaps and eval
    • add support for include test and exclude to the eval source map devtool plugin
  • Performance
    • webpacks AST can be passed directly from loader to webpack to avoid extra parsing
    • Unused modules are no longer unnecessarly concatenated
    • Add a ProfilingPlugin which write a (Chrome) profile file which includes timings of plugins
    • Migrate to using for of instead of forEach
    • Migrate to using Map and Set instead of Objects
    • Migrate to using includes instead of indexOf
    • Replaced some RegExp with string methods
    • Queue don't enqueues the same job twice
    • Use faster md4 hash for hashing by default
  • Optimization
    • When using more than 25 exports mangled export names are shorter.
    • script tags are no longer text/javascript and async as this are the default values (saves a few bytes)
    • The concatenated module now generates a bit less code
    • constant replacements now don't need __webpack_require__ and argument is omitted
  • Defaults
    • webpack now looks for the .wasm, .mjs, .js and .json extensions in this order
    • output.pathinfo is now on by default in develoment mode
    • in-memory caching is now off by default in production
    • entry defaults to ./src
    • output.path defaults to ./dist
    • Use production defaults when omiting the mode option
  • Usage
    • Add detailed progress reporting to SourceMapDevToolPlugin
    • removed plugins now give a useful error message
  • Stats
    • Sizes are now shown in kiB instead of kB in Stats
    • entrypoints are now shows by default in Stats
    • chunks now display <{parents}> >{children}< and ={siblings}= in Stats
    • add buildAt time to stats
    • stats json now includes the output path
  • Syntax
    • A resource query is supported in context
    • Referencing entry point name in import() now emits a error instead of a warning
    • Upgraded to acorn 5 and support ES 2018
  • Plugins
    • done is now an async hook

Bugfixes

  • Generated comments no longer break on */
  • webpack no longer modifies the passed options object
  • Compiler "watch-run" hook now has the Compiler as first parameter
  • add output.chunkCallbackName to the schema to allow configurating WebWorker template
  • Using module.id/loaded now correctly bails out of Module Concatentation (Scope Hoisting)
  • OccurenceOrderPlugin now sorts modules in correct order (instead of reversed)
  • timestamps for files are read from watcher when calling Watching.invalidate
  • fix incorrect -! behavior with post loaders
  • add run and watchRun hooks for MultiCompiler
  • this is now undefined in ESM
  • VariableDeclaration are correctly identified as var, const or let
  • Parser now parse the source code with the correct source type (module/script) when the module type javascript/dynamic or javascript/module is used.
  • don't crash on missing modules with buildMeta of null
  • add original-fs module for electron targets
  • HMRPlugin can be added to the Compiler outside of plugins

Internal changes

  • Replaced plugin calls with tap calls (new plugin system)
  • Migrated many deprecated plugins to new plugin system API
  • added buildMeta.exportsType: "default" for json modules
  • Remove unused methods from Parser (parserStringArray, parserCalculatedStringArray)
  • Remove ability to clear BasicEvaluatedExpression and to have multiple types
  • Buffer.from instead of new Buffer
  • Avoid using forEach and use for of instead
  • Use neo-async instead of async
  • Update tapable and enhanced-resolve dependencies to new major versions
  • Use prettier

Removed features

  • removed module.loaders
  • removed loaderContext.options
  • removed Compilation.notCacheable flag
  • removed NoErrorsPlugin
  • removed Dependency.isEqualResource
  • removed NewWatchingPlugin
  • removed CommonsChunkPlugin

Breaking changes for plugins/loaders

  • new plugin system
    • plugin method is backward-compatible
    • Plugins should use Compiler.hooks.xxx.tap(<plugin name>, fn) now
  • New major version of enhanced-resolve
  • Templates for chunks may now generate multiple assets
  • Chunk.chunks/parents/blocks are no longer Arrays. A Set is used internally and there are methods to access it.
  • Parser.scope.renames and Parser.scope.definitions are no longer Objects/Arrays, but Map/Sets.
  • Parser uses StackedSetMap (LevelDB-like datastructure) instead of Arrays
  • Compiler.options is no longer set while applying plugins
  • Harmony Dependencies has changed because of refactoring
  • Dependency.getReference() may now return a weak property. Dependency.weak is now used by the Dependency base class and returned in the base impl of getReference()
  • Constructor arguments changed for all Modules
  • Merged options into options object for ContextModule and resolveDependencies
  • Changed and renamed dependencies for `import()
  • Moved Compiler.resolvers into Compiler.resolverFactory accessible with plugins
  • Dependency.isEqualResource has been replaced with Dependency.getResourceIdentifier
  • Methods on Template are now static
  • A new RuntimeTemplate class has been added and outputOptions and requestShortener has been moved to this class
    • Many methods has been updated to use the RuntimeTemplate instead
    • We plan to move code which accesses the runtime to this new class
  • Module.meta has been replaced with Module.buildMeta
  • Module.buildInfo and Module.factoryMeta have been added
  • Some properties of Module have been moved into the new objects
  • added loaderContext.rootContext which points to the context options. Loaders may use it to make stuff relative to the application root.
  • add this.hot flag to loader context when HMR is enabled
  • buildMeta.harmony has been replaced with buildMeta.exportsType: "namespace
  • The chunk graph has changed:
    • Before: Chunks were connected with parent-child-relationships.
    • Now: ChunkGroups are connected with parent-child-relationships. ChunkGroups contain Chunks in order.
    • Before: AsyncDependenciesBlocks reference a list of Chunks in order.
    • Now: AsyncDependenciesBlocks reference a single ChunkGroup.
  • file/contextTimestamps are Maps now
  • map/foreach Chunks/Modules/Parents methods are now deprecated/removed
  • NormalModule accept options object in Constructor
  • Added required generator argument for NormalModule
  • Added createGenerator and generator hooks for NormalModuleFactory to customize code generation
  • Allow to customize render manifest for Chunks via hooks
Commits

The new version differs by 838 commits.

  • 213226e 4.0.0
  • fde0183 Merge pull request #6081 from webpack/formating/prettier
  • b6396e7 update stats
  • f32bd41 fix linting
  • 5238159 run prettier on existing code
  • 518d1e0 replace js-beautify with prettier
  • 4c25bfb 4.0.0-beta.3
  • dd93716 Merge pull request #6296 from shellscape/fix/hmr-before-node-stuff
  • 7a07901 Merge pull request #6563 from webpack/performance/assign-depth
  • c7eb895 Merge pull request #6452 from webpack/update_acorn
  • 9179980 Merge pull request #6551 from nveenjain/fix/templatemd
  • e52f323 optimize performance of assignDepth
  • 6bf5df5 Fixed template.md
  • 90ab23a Merge branch 'master' into fix/hmr-before-node-stuff
  • b0949cb add integration test for spread operator

There are 250 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.0.1 just got published.

Update to this version instead πŸš€

Release Notes v4.0.1

Features

  • add version property to webpack exports

Bugfixes

  • import() with CJS now gives correct exports
  • Module concatenation bailout messages now point to correct module
Commits

The new version differs by 8 commits.

  • 5044762 4.0.1
  • 7fd5c6f Merge pull request #6585 from webpack/bugfix/bailout-messages
  • 8e592bf Merge pull request #6575 from nveenjain/addVersion
  • e7aba18 fix incorrect optimization bailout messages
  • 9f9c3d1 Merge pull request #6583 from webpack/bugfix/import-cjs
  • 8bf1574 CJS fake namespace object contains exports now
  • d50fa68 add newlines
  • 05174ae Added version to webpack's export property

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.1.0 just got published.

Update to this version instead πŸš€

Release Notes v4.1.0

Features

  • add filename option to optimization.splitChunks to modify the filename template for splitted chunks
  • allow modules which doesn't emit code into the bundle

Bugfixes

  • watchpack updated to 1.5.0
  • performance fix for Module Concatenation (v8 bug)
  • fix using this.xxx in ProvidePlugin
Commits

The new version differs by 73 commits.

  • f916fc0 4.1.0
  • 8eba694 Merge pull request #6650 from webpack/bump_watchpack
  • 00f70fc Merge pull request #6645 from zacanger/fix/6644
  • 2e3d319 Merge pull request #6648 from cheapsteak/patch-1
  • 01c18cc Merge pull request #6651 from webpack/feature/split-chunks-filename
  • 2e687d0 Merge pull request #6613 from brentwilton/improve-performance-of-module-concatenation-plugin
  • 3c5b104 Merge pull request #6663 from webpack/feature/support-non-js
  • 2c8ea60 expose stuff and all non-bundle modules
  • b0e14df Set optimization.splitChunks to false in test webpack config.
  • ecb65aa allow to configure filename for splitted chunks
  • 325038d Update watchpack to 1.5.0
  • a2fd80e Update downloads badge to point to graph of downloads
  • 3a41ca4 Fix #6644
  • 39095ef add todo for ModuleConcatenationPlugin for loop bugfix
  • f6e366b Merge pull request #6611 from kvrlk/patch-1

There are 73 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.1.1 just got published.

Update to this version instead πŸš€

Release Notes v4.1.1

Features

  • Stats now displays the number of assets of a module

Bugfixes

  • sourceMap option of the default UglifyJsPlugin now defaults to true when the SourceMapDevToolPlugin is used
  • module.assets is now working again in the Stats
  • chunk ids are not stringified on target node
  • devtoolNamespace default works now also for arrays passed to output.library
  • Format date with 2 digits in Stats for Build At
  • fix a bug renaming classes incorrectly
  • fix a bug where modules ignore the chunks option of optimization.splitChunks
Commits

The new version differs by 27 commits.

  • 41bb63a 4.1.1
  • 37f7681 Merge pull request #6697 from webpack/bugfix/split-chunks
  • 4d68350 fix bug where modules are put into the wrong chunk
  • 8a59ef7 Merge pull request #6689 from webpack/bugfix/issue-6688
  • edbb6f6 Merge pull request #6670 from SimenB/patch-1
  • 800e7f9 fix #6688
  • c54df36 Merge pull request #6609 from marcalexiei/configuration-version-error
  • 4f39932 Merge pull request #6641 from tmilloff/master
  • 6879ab7 Merge pull request #6685 from webpack/bugfix/node_chunks
  • 71eff5d Merge pull request #6686 from webpack/bugfix/ccp-readme
  • 9eb4daa Remove CCP link
  • f9e7a17 Escape module names
  • 1181c0e Remove accidental filename setting which wasn't needed and was breaking test
  • 57c6c43 Add requested changes from PR comments
  • ae2ae4e Merge pull request #6640 from clarkdo/module-assets

There are 27 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.2.0 just got published.

Update to this version instead πŸš€

Release Notes v4.2.0

Features

  • add splitChunks.automaticNameDelimiter to configure the name separator for automatic names
  • stats.excludeModules now also accept booleans
  • webpack throws an error when trying to run in twice at a time
  • performance is disabled by default in non-web targets
  • AMD parser plugins can now be extended by inheriting

Bugfixes

  • Fix a race condition when writing events.json in ProfilingPlugin
  • HMR runtime code is reverted to ES5 style
  • script timeout is not correctly in seconds
  • reexporting JSON exports works correctly now
  • fix a bug when combining ProfilingPlugin with SourceMapDevToolPlugin
  • add a missing semicolon to the runtime code
Commits

The new version differs by 74 commits.

  • d668a23 4.2.0
  • 04d8188 Merge pull request #6754 from byzyk/fix/6742
  • 0d3063e Merge pull request #6810 from howdy39/add-end-of-statement-semicolon
  • d628f90 Add end of statement semicolon
  • 3024078 Merge pull request #6788 from byzyk/fix/6779
  • c6b9b9e Merge pull request #6806 from webpack/bugfix/json-reexport
  • cda226a handle reexporting json default export correctly
  • d061aba fix ProfilingPlugin
  • f82beb3 Merge pull request #6789 from EugeneHlushko/issue/5964
  • c4678e3 fix(bug) #5964 convert MS into S for scripts timeout attr: update expected bytes values
  • a534dfd add test
  • 422236f fix(bug) #5964 convert MS into S for scripts timeout attr
  • f99f96d rename variable, use includes instead of indexOf
  • ae18a5a fix: default chunks to context when no context passed
  • 4428efe Merge pull request #6674 from chuckdumont/work

There are 74 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.3.0 just got published.

Update to this version instead πŸš€

Release Notes v4.3.0

Features

  • add support for [contenthash] placeholder

Bugfixes

  • browser field is used for target electron-renderer
  • set devtoolNamespace default correctly when passing an object to output.library
Commits

The new version differs by 24 commits.

  • 54ceb3c 4.3.0
  • d762a2b Merge pull request #6875 from mohsen1/patch-2
  • 3691224 Merge pull request #6872 from boneskull/patch-1
  • df2b3c2 Prettier
  • 165a2ed Remove extraneous argument from setOptions call sites in OptionsDefaulter
  • a31bf26 fix capitalization of project name in README.md
  • fc2feaf Merge pull request #6844 from swederik/issue-6843
  • eba38f1 Merge pull request #6861 from Legends/master
  • 41a0482 Merge pull request #6839 from webpack/feature/contenthash
  • b018bc7 more tests and fixes for webworker
  • 4861d2c Merge pull request #6832 from webpack/reflect
  • 68a11fd Extract setup infos from Contributing.md into separate setup.md for visiblity reasons
  • 06e9a57 get rid of webpackJsonp global leak
  • d7a0fc3 fix bug without async chunks, add more tests
  • c328c65 use destructing for more readable code

There are 24 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.4.0 just got published.

Update to this version instead πŸš€

Release Notes v4.4.0

Features

  • When webpack-cli is not installed it will ask to install it
  • splitChunks.chunks supports a custom function now
  • Better warning when omitting mode

Bugfixes

  • disallow functions for chunkFilename, because it's not working
  • generate correct code when using export default (function xxx() {})

Performance

  • Performance improvements for sorting by identifier
Commits

The new version differs by 72 commits.

  • e3bb8c9 4.4.0
  • 2bd495c Merge pull request #6864 from webpack/bump_prettier
  • 8d8da4c Merge branch 'master' into bump_prettier
  • 0f70fcb Merge pull request #6791 from storybooks/spilt-chunks-selector
  • 3f6b78f Merge pull request #6467 from PlayMa256/prompt_install_cli
  • b30de38 Merge pull request #6672 from EugeneHlushko/fix/6639
  • f600ccd Merge pull request #6827 from Connormiha/optimize-sort-by-identifier
  • 1b50e4e Merge pull request #6833 from webpack/ellipsis
  • 3a6edf0 Merge pull request #6882 from mohsen1/patch-4
  • d4f3c77 Merge pull request #6883 from mohsen1/remove-dead-code
  • 1e7cc39 Merge pull request #6889 from Janpot/issue-6867
  • 4b6ee73 Merge pull request #6894 from webpack/bugfix/css-stuff
  • e15df70 Merge pull request #6897 from mohsen1/init-time
  • cc77f7e Merge pull request #6898 from mohsen1/patch-6
  • ca79190 Merge pull request #6899 from mohsen1/patch-7

There are 72 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.5.0 just got published.

Update to this version instead πŸš€

Release Notes v4.5.0

Features

  • Performance improvements
  • Improve readablility of error messages with long loader string

Bugfixes

  • Sort child compilations for consistent compilation hash
  • Fix bug causing all symbols to be renamed when concatenating modules

Contributing

  • add yarn setup script for bootstrapping local development
Commits

The new version differs by 41 commits.

  • f5bd213 Update examples
  • e400445 4.5.0
  • e717fcc Merge pull request #6956 from webpack/refactor/share_shapes
  • 3f33d88 Merge pull request #6943 from webpack/bugfix/sort-children-for-hash
  • 45e7f7a Merge pull request #6878 from rchaser53/fix-options-loader-error
  • a8d70e7 Merge pull request #6955 from webpack/Legends-webpack-bootstrap-setup
  • 9f5c1b4 Merge pull request #6951 from webpack/fix/arity
  • a5ae054 Ensure the type of the binding don't change
  • 5c8a4bb Unify Dependency#getExports result
  • b6042fb Prevent identToLoaderRequest to return 2 objects with different shapes
  • f3c9bd0 Merge pull request #6953 from webpack/refactor/mode_deopt
  • 83b99b9 add setup script and update package scripts
  • 1958784 Merge pull request #6904 from webpack/performance/concat
  • f1993f4 Merge pull request #6922 from mohsen1/map-not-weakmap
  • ed5b541 Merge pull request #6930 from Legends/gitignorePatch

There are 41 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.6.0 just got published.

Update to this version instead πŸš€

Release Notes v4.6.0

Features

  • improve stats output alignment
  • improve stats text output when all exports are used
  • add webpackPrefetch/webpackPreload magic comments to import()
  • add stats.entrypoints[].children and stats.entrypoints[].childAssets to stats json
  • add prefetched/preloaded chunks and assets to stats text output
  • Performance improvements

Bugfixes

  • Escape chunk ids for target: "webworker"
  • fix this to undefined ESM replacement in function default values
  • new require(...) is weird, but now behaves like in node.js
  • fix behavior of export * from "commonjs" with partial override
  • fixed build time output in current locale in stats text output
  • fixed ChunkModuleIdRangePlugin and add tests
  • avoid race condition when using the loadModule loader API
  • fix default value of output.globalObject in target: "node-webkit"
  • fix a bug with loadModules and dependencies in these modules
  • fix hot.accept parser plugin to allow defined values as argument
  • print unknown size when size is unknown
  • fix a bug where some chunks were missing in the "single" runtime chunk
  • fix cloning of optimization configuration

Internal changes

  • Set up infrastructure for linting typings with TypeScript
Commits

The new version differs by 161 commits.

  • e7c8fa4 4.6.0
  • 941be29 Merge pull request #7063 from webpack/bugfix/clone-optimization
  • 3a5fda9 Merge pull request #7062 from webpack/bugfix/issue-6931
  • c47150c Clone optimization config in Defaulter
  • 3f99517 Merge pull request #6905 from xtuc/fix-handle-unknown-size
  • aee2491 Merge pull request #6962 from justinhelmer/bug/6919
  • ec4ec8e Merge pull request #7056 from webpack/feature/preload
  • 0ff2901 Merge pull request #7060 from webpack/test/any-comment-in-import
  • 58ba91d fix bug which prevented some chunks to show up in Chunk.getAllAsyncChunks
  • 946c4df add test case for comments in import()
  • 8e2e19b fix unstable sorting of ChunkGroups and add test
  • 205ca62 fix reversed order in Chunk.compareTo
  • babc8a4 Merge pull request #7059 from bastimeyer/bugfix/loaderplugin-recursive
  • be79d6d add mixed test case which also tests equal order sorting
  • 873d7d4 show preload and prefetch in stats

There are 161 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.7.0 just got published.

Update to this version instead πŸš€

Release Notes v4.7.0

Features

  • add webpackIgnore magic comment (import(/* webpackIgnore: true */ "...")) to keep the import in the bundle
  • add chunkGroups to Stats
    • chunkGroups option
    • namedChunkGroups property
    • Chunk Group text output

Bugfixes

  • prevent chunk merging for the runtimeChunk
  • fix a caching issue for concatenated modules
  • namedModules now handle name conflicts correctly
  • fix a crash when using [contenthash:n] without on-demand-chunks

Internal changes

  • testing uses Jest now
  • testing in node.js 10 too
  • Performance improvements
Commits

The new version differs by 203 commits.

  • 673c103 4.7.0
  • ac7c28c Merge pull request #7201 from webpack/bugfix/content-hash
  • 0a6ba95 avoid injection jsonpScriptSrc function when not needed
  • 88bf798 Merge pull request #7198 from webpack/ci/force-exit
  • f55a135 add forceExit to jest config
  • e75dc78 Rename Custom.md to Other.md
  • 7058b58 Merge pull request #7196 from webpack/github/issue-templates
  • 6131392 Merge pull request #7169 from webpack/ci/parallel-node-6
  • f64e8c6 Update Bug_report.md
  • 35f2b3c Update issue templates
  • e361ba5 Merge pull request #7031 from webpack/feature/chunk-type-support
  • f1618ae chore(Chunk): add type annotations for Chunk
  • fc3774a Merge pull request #7116 from webpack/feature/main-template-type-support
  • 7829a0b Merge pull request #7189 from webpack/feature/update-ts-nightly-version
  • 0495b40 chore(deps): upgrade TS nightly, fixes from microsoft/typescript#23715

There are 203 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.8.2 just got published.

Update to this version instead πŸš€

Release Notes v4.8.2

Bugfixes

  • WASM parser bugfixes
  • fix edge case when replacing top-level this in IIFE
  • avoid parser wasm many times
Commits

The new version differs by 136 commits.

  • c92eabd 4.8.2
  • 8d2f421 Merge pull request #7254 from xtuc/feat-remove-extra-wasm-decodings
  • e2c8f3d remove passing AST, redecode AST in Generator
  • 38456ea chore: bump webassemblyjs
  • 912a1a6 chore: update lock
  • 3be112b Merge remote-tracking branch 'upstream/master' into feat-remove-extra-wasm-decodings
  • 91b6480 chore: bump webassemblyjs
  • 0eeea0f Merge pull request #7266 from webpack/tests/remove_jade
  • 85ef634 remove _ast variable, add WeakMap
  • ea26eac Merge pull request #7257 from webpack/fix/7255
  • 9b37c6b Replace Jade by Pug
  • 78423b0 Update rc and deep-extend
  • 8bdc8ad refactor: remove type cast
  • d72f7c6 feat: store wasm ast on the module
  • d491fdc feat: uses new APIs

There are 136 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.8.3 just got published.

Update to this version instead πŸš€

Release Notes v4.8.3

Bugfixes

  • fix missing debug dependency
  • support arrays in output.library.root
Commits

The new version differs by 13 commits.

  • 9a72294 4.8.3
  • de27f03 Merge pull request #7282 from xtuc/chore-bump-webassemblyjs5
  • 51073cd chore: bump webassemblyjs
  • d5a648b Merge pull request #7184 from byzyk/fix/allow-array-in-lib-root
  • 9337295 Merge pull request #7280 from webpack/feature/update-ts-nightly-dep
  • e312d62 Merge pull request #7241 from lencioni/test-docs
  • ea7d08c Merge pull request #7277 from webpack/lint/cache
  • 81de2d4 chore(deps): upgrade typescript nightly
  • 17bcc3c enable eslint caching
  • a31721a Update test readme for Jest
  • 71b05f9 move test to separate folder
  • a3d3af8 add test
  • d50f00d fix: allow array of strings for library.root

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.9.0 just got published.

Update to this version instead πŸš€

Release Notes v4.9.0

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 chunk ids)
  • fix link to migration guide in error message

Internal changes

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

The new version differs by 87 commits.

  • bb0731d 4.9.0
  • be6bdff Merge pull request #7385 from moondef/moondef-patch-1
  • b77addd Merge pull request #7187 from byzyk/enhancement/prettierignore
  • 2f3e7d4 Merge pull request #7331 from dev-drprasad/add-jsdoc-annotations-cached-merge
  • 70c608c Merge pull request #7387 from webpack/bugfix/record-string-ids
  • 69567a1 update test case to reflect change
  • 8af0320 Merge pull request #7344 from asapach/master
  • 713292f update bot for jest tests
  • 79aa13d Merge pull request #7386 from webpack/bugfix/runtime-chunk
  • 67717ab Merge pull request #7383 from webpack/ci/improvements
  • 72a45ab speed up CI
  • f026310 only record number ids
  • 25c7b07 Fix link
  • 374376d fixes #7382
  • aa99385 added a note about production mode

There are 87 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.9.1 just got published.

Update to this version instead πŸš€

Release Notes v4.9.1

Bugfixes

  • fix parameter references in default parameters

Internal changes

  • change test cases to text format
Commits

The new version differs by 11 commits.

  • 94cd709 4.9.1
  • 5feb7e6 Merge pull request #7174 from JLHwung/revise-examples-build-readme
  • 4cd0cf5 Merge pull request #7379 from xtuc/refactor-use-wast-in-tests
  • c513cac Merge pull request #7403 from webpack/fix/7335
  • f22fffd Evaluate arguments in function's scope
  • 55ce143 Add test case
  • 00eafa6 Update mem-access.wat
  • acc45fd refactor: switch to wast
  • 7184bb4 fix: keep decoding in wasm
  • a9d9fee refactor: switch to tests to wast
  • 64db306 docs(examples): add yarn add webpack-cli step

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.9.2 just got published.

Update to this version instead πŸš€

Release Notes v4.9.2

Bugfixes

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

The new version differs by 13 commits.

  • 317fb35 4.9.2
  • 5c51f0c Merge pull request #7251 from webpack/types/library_templates
  • 91546a1 fix incorrect default
  • 9c7100b fix inline object types, add auxiliary comment types
  • 3f183b5 Merge pull request #7210 from gluecodes/master
  • ae6c7a4 Merge pull request #7279 from cokencode/progress-plugin-bug-fix
  • 4073814 Merge pull request #7219 from webpack/feature/type-all-the-errors
  • 9c0036b Add a test
  • 9791c0b fix spacing
  • 737eaa5 Fix a bug where ProgressPlugin is not working properly with MultiCompiler
  • bbb9f38 fix: ReferenceError: onScriptComplete is not defined when using HMR on Firefox 45
  • f613e9a chore(types): add basic type info for a few warning and errors
  • ed9d024 Add typings for various library template plugins

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.10.0 just got published.

Update to this version instead πŸš€

Release Notes v4.10.0

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

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
Commits

The new version differs by 34 commits.

  • ba70340 4.10.0
  • 023d4ca add more test cases
  • 7708471 Merge branch 'master' into bugfix/namespace-object
  • 1f2584e Merge pull request #7408 from webpack/bugfix/side-effects-caching
  • 29cbf98 Merge pull request #7275 from webpack/feature/wasm-mangling
  • 3ac1d02 Merge pull request #7416 from xtuc/fix-rewritten-global-type
  • fd4e84b fix(wasm): correct initializer type for rewritten globals
  • ae8d674 fix bug with incorrectly emitted modules
  • 7ebe12d throw error when unexpected state has been found
  • 115a72c SideEffectsPlugin don't modify cache entries
  • cc57b12 Merge pull request #7396 from xtuc/chore-bump-webassemblyjs7
  • d0ce47d chore: bump webassemblyjs 1.5.7
  • d46e35e Merge branch 'master' into feature/wasm-mangling
  • ec0369d Merge pull request #7364 from xtuc/chore-bump-webassemblyjs6
  • 586469a chore: correct version

There are 34 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.10.1 just got published.

Update to this version instead πŸš€

Release Notes v4.10.1

Bugfixes

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

The new version differs by commits.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.10.2 just got published.

Update to this version instead πŸš€

Release Notes v4.10.2

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
Commits

The new version differs by 12 commits.

  • b8266d0 4.10.2
  • 66cd9b7 Merge pull request #7445 from webpack/bugfix/no-id
  • 6390240 rewrite module reference correctly after replacing ConcatenatedModule
  • 4f4a2ba Merge pull request #7434 from webpack/bump_prettier
  • 8e6a012 Merge pull request #7432 from webpack/add_brackets
  • 75f12fb Merge pull request #7437 from webpack/bump_jest
  • be972ea Update jest to v23
  • d2aca56 Merge pull request #7431 from xtuc/fix-wasm-preserve-global-order
  • faf04e0 Update prettier to v1.13
  • 2a9452e Add brackets for multiline if/for statements
  • 1842936 chore: bump webassemblyjs 1.5.9
  • 23795ba fix(wasm): preserve global ordering

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.11.0 just got published.

Update to this version instead πŸš€

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

The new version differs by 87 commits.

  • e2fe200 4.11.0
  • b1a640e Merge pull request #7479 from webpack/fix/5153
  • b5b1e86 Merge pull request #7478 from webpack/fix/5889
  • aa6de57 Ensure static and dynamic imports use the same binding
  • 348057f Add a test case to invalidate #5889
  • 5653732 Merge pull request #7476 from sandersn/fix-template-tag-syntax
  • c971073 Fix template tag syntax
  • 19389b7 Merge pull request #7447 from xtuc/fix-wasm-check-for-invalid-signatures
  • 78b3193 add checkWasmTypes flag, enabled it only in production
  • bc6b5b0 Merge pull request #7444 from MLoughry/prefetch-from-entry
  • c65d164 fix test case
  • 591521b support node.js 10 and 8
  • c77ec39 revert afterStartup and trigger prefetch before startup
  • dc0e1ec Merge branch 'master' into prefetch-from-entry
  • db668b7 move fake document to ConfigTestCases

There are 87 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.11.1 just got published.

Update to this version instead πŸš€

Release Notes 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
Commits

The new version differs by 3 commits.

  • 956c0b1 4.11.1
  • 5fee19d Merge pull request #7487 from webpack/bugfix/no-wasm-import-mangle
  • 8e3be48 allow to disable wasm import mangle

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.12.0 just got published.

Update to this version instead πŸš€

Release Notes 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
Commits

The new version differs by 53 commits.

  • 02a955b 4.12.0
  • 60e1076 Merge pull request #7407 from prplx/master
  • ff224a7 Merge branch 'master' into master
  • 47101fd Merge pull request #7489 from mohsen1/update-tracer
  • f28bb4e add webpack 5 comment
  • ebe90f4 Merge pull request #7501 from xtuc/chore-bump-webassemblyjs9
  • 31b755a Merge pull request #7498 from webpack/bugfix/hmr-parent-import
  • 5dcb08f chore: bump webassemblyjs
  • 603cb60 Merge pull request #7496 from build-your-own/master
  • 5cbe74b Disable documentation checkbox by default
  • b9229fa add parents correctly when creating namespace objects
  • 9ac4045 Merge pull request #7473 from webpack/feat/optional-catch-binding
  • d6d7119 change variable defined identifier let to const
  • 551384a Merge pull request #7493 from webpack/bugfix/issue-7492
  • b424645 Merge pull request #6542 from mc-zone/feature/module-build-error-with-loader-name

There are 53 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.12.1 just got published.

Update to this version instead πŸš€

Release Notes 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
Commits

The new version differs by 55 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
  • afdbf71 removing typedef exports
  • 7969a5a Importing typedef from Dependency.js ??? Please review.
  • b03804e added Compiler, @returns void
  • 4de3ce0 Merge pull request #7554 from greysteil/add-semver-badge
  • 5aafb83 update to lastest version badge

There are 55 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.12.2 just got published.

Update to this version instead πŸš€

Release Notes v4.12.2

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
Commits

The new version differs by 19 commits.

There are 19 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.13.0 just got published.

Update to this version instead πŸš€

Release Notes v4.13.0

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
Commits

The new version differs by 52 commits.

  • e3678aa 4.13.0
  • 43563b3 hotfix merge issue in watchCases (not in CI)
  • 09beba0 Merge pull request #7621 from webpack/deps/enhanced-resolve
  • 7b7d323 upgrade enhanced-resolve
  • 34b0c7c Merge pull request #6906 from stepharr/patch-1
  • b181bc4 Merge pull request #6793 from ronkorving/define-functions
  • e08399a Merge pull request #7017 from rtsao/crossorigin-attr
  • b848ec5 Merge pull request #6346 from Connormiha/simplife-has-dependencies
  • 8420c73 Merge branch 'master' into define-functions
  • ef2ec25 update template.md too
  • 5c4ffd5 fix tests and code
  • 6478fb9 Merge branch 'master' into crossorigin-attr
  • dcf3e09 Merge pull request #7399 from webpack/feat-implement-option-for-hashed-module-ids-plugin
  • f41b829 Merge pull request #7604 from webpack/feature/update-snapshot-script
  • 17fa26c use jest directly

There are 52 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.14.0 just got published.

Update to this version instead πŸš€

Release Notes v4.14.0

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
Commits

The new version differs by 9 commits.

  • 190cf7b 4.14.0
  • 5a185c9 Merge pull request #7585 from webpack/feature/hook-into-get-reference
  • 86370e9 Merge pull request #7625 from webpack/bugfix/multiple-assets-same-file
  • 522b324 allow emitting to the same filename when hash matches
  • 7beac3c Merge branch 'master' into feature/hook-into-get-reference
  • be896f2 fix bug
  • 3502287 emit correct code for reexport unused exports
  • 50fe2e7 add Compilation.getDependencyReference and hooks to override it
  • e1f0a66 add note about webpack 5 refactoring

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.15.0 just got published.

Update to this version instead πŸš€

Release Notes v4.15.0

Features:

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

The new version differs by 70 commits.

  • bdd4442 4.15.0
  • 7aa1efb Merge pull request #7651 from webpack/feature/split-chunks-max-size
  • fb2c24b add splitChunks.maxSize option
  • eaa5bc8 Merge pull request #7648 from mohsen1/fix-template-syntax
  • b01f378 Fix @template syntax error in Compilation.js iterationOfArrayCallback
  • a4e5f63 Merge pull request #7638 from webpack/feature/wasm-initial-error
  • 0bb917b convert to a config test cases
  • a39d6b0 check for wasm support in test case
  • 5b30ede allow filtering of tests in statsCases
  • 1ad71e0 add helpful error when importing wasm in initial chunk
  • e8dc361 Merge pull request #7299 from webpack/feature/type-compiler-compilation-save
  • 0bd9df8 Merge branch 'master' into feature/type-compiler-compilation-save
  • ccf56e4 Merge pull request #7629 from xtuc/chore-bump-webassemblyjs10
  • c3eecbd spacing
  • e0ad09e chore: bump webassemblyjs

There are 70 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.15.1 just got published.

Update to this version instead πŸš€

Release Notes v4.15.1

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
Commits

The new version differs by 10 commits.

  • 81149be 4.15.1
  • 6f53dbe Merge pull request #7655 from skratchdot/issue-7654
  • 7fc88cd Merge pull request #7662 from webpack/bugfix/undefined-in-max-size
  • 67d932d Merge pull request #7661 from webpack/bugfix/split-chunks-leak
  • 5341d7d Merge pull request #7660 from webpack/bugfix/hot-leak
  • 8e8f185 fixes usage of automaticNameDelimiter in cache groups
  • 64b22c4 make the cache a WeakMap to not leak memory
  • 6172d3c fix memory leak with HMR
  • 3b6f475 Use push null to end the stream
  • 6705141 prevent UnhandledPromiseRejectionWarning in node 6

See the full diff

greenkeeper[bot] commented 6 years ago

Version 4.16.0 just got published.

Update to this version instead πŸš€

Release Notes v4.16.0

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
Commits

The new version differs by 44 commits.

  • 18d33c6 4.16.0
  • 6f72243 Merge pull request #7700 from webpack/bugfix/loc-in-single-entry-and-loader-plugin
  • 3366421 Merge pull request #7663 from webpack/feature/automatic-name-prefix
  • 8891bd5 Merge pull request #7696 from webpack/bugfix/max-size-reasons
  • 365beb1 Merge pull request #7699 from webpack/ci/upgrade-jest
  • b93225a add types and fix incorrect loc type
  • f0cd451 do not instrument node_modules
  • baa450d Merge pull request #7698 from webpack/bugfix/deprecated
  • b32a4f5 Merge branch 'master' into bugfix/max-size-reasons
  • f95d0f0 Merge pull request #7695 from webpack/bugfix/sort-ids-stats
  • 1869d8e Merge pull request #7694 from webpack/bugfix/loc-in-context
  • 78d8f4a Merge pull request #7691 from mathiasbynens/mjs
  • 8876514 replace deprecated method
  • a482565 upgrade jest
  • 692faf2 sort ids in Stats numerical

There are 44 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Version 4.16.1 just got published.

Update to this version instead πŸš€

Release Notes v4.16.1

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
Commits

The new version differs by 29 commits.

  • fa02f3d 4.16.1
  • 94b192c fix merge issue
  • db1475c Merge pull request #7656 from mohsen1/DefinePlugin-type
  • 2702273 Merge pull request #7726 from webpack/update/linters
  • 84d57e3 Merge branch 'master' into DefinePlugin-type
  • aae20a8 Merge pull request #7721 from webpack/bugfix/occurence-order
  • 0753cdc Merge branch 'master' into update/linters
  • 2c4ba6c Merge pull request #7727 from webpack/update/eslint-scope
  • 4c19fe1 Use v4 of eslint-scope
  • 7195bae Update ESLint and Prettier
  • 36f7ee7 Merge pull request #7719 from joshunger/patch-3
  • 92b4b8b Merge pull request #7718 from edmorley/fix-moduleIds-description
  • b2b4be0 Update README.md
  • 753dcce fix order of occurrence order plugin
  • dc0e7ec Add mini-css-extract-plugin instead of extract-text-webpack-plugin

There are 29 commits in total.

See the full diff