Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Update webpack to the latest version 🚀 #33

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

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Feb 25, 2018

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 4.0.0 of webpack was just published.

Dependency webpack
Current Version 3.11.0
Type devDependency

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

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of webpack.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


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

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 🌴

greenkeeper bot added a commit that referenced this pull request Feb 26, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 26, 2018

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 added a commit that referenced this pull request Mar 4, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 4, 2018

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 added a commit that referenced this pull request Mar 7, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 7, 2018

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 added a commit that referenced this pull request Mar 21, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 21, 2018

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 added a commit that referenced this pull request Mar 27, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 27, 2018

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 added a commit that referenced this pull request Mar 29, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 29, 2018

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 added a commit that referenced this pull request Apr 5, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 5, 2018

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 added a commit that referenced this pull request Apr 18, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 18, 2018

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 added a commit that referenced this pull request May 4, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 4, 2018

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 added a commit that referenced this pull request May 11, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 11, 2018

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 added a commit that referenced this pull request May 12, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 12, 2018

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 added a commit that referenced this pull request May 25, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 25, 2018

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 added a commit that referenced this pull request May 26, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented May 26, 2018

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 added a commit that referenced this pull request Jun 2, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 2, 2018

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 added a commit that referenced this pull request Nov 25, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 25, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.26.1.

Update to this version instead 🚀

Release Notes for v4.26.1

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
Commits

The new version differs by 9 commits.

  • 8e841fe 4.26.1
  • 11afdbd Merge pull request #8417 from webpack/bugfix/split-chunks-min-size
  • cbeaf70 prevent groups with size < minSize
  • a1d4802 Merge pull request #8416 from webpack/bugfix/split-chunks-zero-min
  • 32961f2 while grouping nodes include at least one node on each side
  • fa56ec8 Merge pull request #8410 from webpack/bugfix/max-size-lt-min-size
  • fd2133b handle case when minSize > maxSize
  • 614a6fc Merge pull request #8385 from hax/patch-1
  • 48f0604 Drop unuseful eval call

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 4, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 4, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.27.0.

Update to this version instead 🚀

Release Notes for v4.27.0

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
Commits

The new version differs by 12 commits.

  • f47bf8b 4.27.0
  • a67ffcd Merge pull request #8452 from webpack/feature/resolveWithOptions
  • 96f625c Merge pull request #8457 from webpack/bugfix/rebuild-provided-exports
  • 56feccc convert test case to normal function for node.js 6 support
  • 2f4296e fix a bug which causes incorrect providedExports for cached modules
  • f944002 Merge pull request #8451 from webpack/bugfix/split-chunks
  • 162da1c add getResolve method to loader context
  • 3b46b48 enforce doesn't affect minSize for maxSize
  • 72a8a1f Merge pull request #8440 from Connormiha/oprimize-chunk-can-be-integrated
  • 537d3e4 Cache hasRunstime in chunk
  • e3e8a68 Merge pull request #8405 from xiaoxiaojx/fix-function-plugin-apply
  • 70b9a1b fix parameter missing when plugin type is a funtion

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 5, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 5, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.27.1.

Update to this version instead 🚀

Release Notes for v4.27.1

Bugfixes

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

The new version differs by 3 commits.

  • 4056506 4.27.1
  • f29ca64 Merge pull request #8466 from webpack/bugfix/splitChunks-enforce
  • b56727e enforce should not prevent using minChunks etc. on cacheGroup

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 19, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 19, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.28.0.

Update to this version instead 🚀

Release Notes for v4.28.0

Features

  • IgnorePlugin: checkResource has an additional context argument

Bugfixes

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

The new version differs by 11 commits.

  • e871eeb 4.28.0
  • f6d67b6 update examples
  • 573d2da Merge pull request #8511 from isiahmeadows/fix-erroneous-injection
  • 6b54a46 Fix failing test.
  • 14ef010 Fix nits, block require to prevent false positive
  • f2f62c7 Merge pull request #8516 from iliakan/master
  • a9d465f IgnorePlugin: add context argument to checkResource, deprecate checkContext
  • 31de553 Add test
  • 18d7396 Remove a broken hook
  • d5e26f7 Merge pull request #8467 from Connormiha/simplify-append-head
  • 6f5c5ef Use document.head instead of getElementsByTagName

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 20, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 20, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.28.1.

Update to this version instead 🚀

Release Notes for v4.28.1

Bugfixes

  • fix error in IgnorePlugin when no contextRegExp is passed
Commits

The new version differs by 3 commits.

  • 7a6a71f 4.28.1
  • 068fe24 Merge pull request #8530 from webpack/bugfix/ignore-plugin
  • 6c22ca2 fix issue when contextRegExp is undefined

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 22, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 22, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.28.2.

Update to this version instead 🚀

Release Notes for v4.28.2

Bugfixes

  • fixes a crash when multiple IgnorePlugins are used
Commits

The new version differs by 3 commits.

  • fe514dd 4.28.2
  • 899eeff Merge pull request #8542 from webpack/bugfix/ignore-externals
  • bc368c7 fixes #8538

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 29, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 29, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.28.3.

Update to this version instead 🚀

Release Notes for v4.28.3

Bugfixes

  • ProfilingPlugin creates the output folder if necessary
Commits

The new version differs by 7 commits ahead by 7, behind by 664.

  • 983c261 4.28.3
  • 510abf7 Merge pull request #8565 from NaviMarella/ProfilingPlugin_8503
  • 0128118 Modified Tests as suggested.
  • 5b5f1d4 Made changes as requested
  • eb960cc Fixed Profiling Output path for creating a folder, if it doesn't exists.
  • 3b344f2 Merge pull request #8559 from darrelfrancis/darrelfrancis-patch-1-readme
  • e2abdae Fix minor typos, improve clarity of README

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 10, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 10, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.28.4.

Update to this version instead 🚀

Release Notes for v4.28.4

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
Commits

The new version differs by 14 commits.

  • fdb6b13 4.28.4
  • 3e147e6 Merge pull request #8588 from hulkish/faster-statement-type-check
  • 2a04dee added ExportAllDeclaration, fixed fn signature
  • baf0aa1 Merge pull request #8581 from DanielRuf/tests/increase-jest-timeout
  • 41b6887 use faster statement type check
  • af01643 Increase Jest timeout for profiling plugin test
  • ccc7db7 Merge pull request #8401 from shahkashani/fix-for-issue-8398
  • 2e3e2a0 Merge pull request #8544 from chuckdumont/work
  • 69dea22 Merge pull request #8573 from hulkish/fix-minimizer-fn
  • 6240cf6 added config test case for optimization.minimizer
  • d8ab512 Merge pull request #8565 from NaviMarella/ProfilingPlugin_8503
  • 1fd25dd Revert AMDRequireDependency.js changes
  • d49082a Make some AMD dep classes easier to subclass
  • 217b2ad Fix for #8398 - call failed-hook on compilation errors

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 20, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 20, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.29.0.

Update to this version instead 🚀

Release Notes for v4.29.0

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
Commits

The new version differs by 10 commits.

  • 25bccd4 4.29.0
  • 6389e41 Merge pull request #8642 from webpack/memory/future-emit-assets
  • 6e383cf make test for Source.buffer more strict
  • aaf85db add output.futureEmitAssets
  • 03ffa48 Merge pull request #8639 from webpack/memory/limit-parallelism
  • 2b2c17f Merge pull request #8598 from kiliancs/acorn6
  • 80514cc Add ts declarations
  • 78abf04 Use eachLimit instead even though forEachLimit apears to be an alias...
  • 9cb4225 forEach to forEachLimit
  • ef67132 Upgrade acorn to v6

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 4, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 4, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.29.1.

Update to this version instead 🚀

Release Notes for v4.29.1

Bugfixes

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

The new version differs by 14 commits.

  • 6934b98 4.29.1
  • 960f396 Merge pull request #8686 from MarkPollmann/patch-1
  • 8627743 Merge pull request #8678 from bhavya9107/patch-1
  • 915c32d docs(README): remove to from link
  • 9737a3b Update README.md
  • f654a49 docs(README):Update index
  • c957338 docs(README): newline after index
  • 09cf713 docs(README): add index
  • 07d4d85 Merge pull request #8676 from hulkish/fix-side-effects-example
  • 2209b8a rebuild examples
  • 780c17e fix side-effects example
  • 2fe0ba5 Normalize backslash on windows
  • a0eab48 Merge pull request #8667 from webpack/bugfix/esModule-flag
  • 42007e8 fixes #8666

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 6, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 6, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.29.2.

Update to this version instead 🚀

Release Notes for v4.29.2

Internal changes

  • update dependencies
Commits

The new version differs by 75 commits.

  • 74b8aac 4.29.2
  • e79d014 Merge pull request #8741 from webpack/deps/dev
  • d12ca7c update dev deps
  • c28f6cb Merge pull request #8742 from webpack/deps/schema-utils
  • 5e3a053 upgrade schema-utils to new major
  • 885ab81 Merge pull request #8740 from webpack/deps/update-jest
  • 08473de add workaround for jest bug
  • a994ec7 upgrade jest
  • 8167e42 Merge pull request #8736 from webpack/deps/eslint-types
  • da59443 Merge pull request #8737 from webpack/deps/update-test-deps
  • dbc0b8d Merge pull request #8725 from webpack/dependabot/npm_and_yarn/typescript-3.3.1
  • 155cda7 update test cases dependencies
  • 11bfb05 update linting dependencies
  • d7d9b9b ignore typescript bug
  • 5a6d654 Bump typescript from 3.0.0-rc to 3.3.1

There are 75 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 7, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 7, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.29.3.

Update to this version instead 🚀

Release Notes for v4.29.3

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
Commits

The new version differs by 14 commits.

  • b934e26 4.29.3
  • 0d5c0cf Merge pull request #8654 from mc-zone/fix/8626
  • 2eefbae Merge pull request #8751 from webpack/dependabot/npm_and_yarn/webpack-dev-middleware-3.5.2
  • 217139a Merge pull request #8750 from webpack/dependabot/npm_and_yarn/react-dom-16.8.1
  • b894f26 Merge pull request #8749 from webpack/dependabot/npm_and_yarn/react-16.8.1
  • 2b1b3ce Bump webpack-dev-middleware from 3.5.1 to 3.5.2
  • 5b4c277 Bump react-dom from 16.8.0 to 16.8.1
  • cc2ba62 Bump react from 16.8.0 to 16.8.1
  • 7a5137d fixes in ContextModule
  • 7edcc48 fix: add missed webpack_require.e runtime while importing exist module with context
  • 87a3046 Merge pull request #8747 from webpack/deps/node-12
  • 458c61f update node 12 nightly version
  • 109db05 Merge pull request #8738 from hiroppy/feature/modify-WebpackError.unittest
  • 2fdcff3 fix(lib/WebpackError): make use of nodejs.util.inspect.custom

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 15, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 15, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.29.4.

Update to this version instead 🚀

Release Notes for v4.29.4

Bugfixes

  • update @webassemblyjs for bugfixes
Commits

The new version differs by 29 commits.

  • 7ecf992 4.29.4
  • a259c09 Merge pull request #8791 from webpack/dependabot/npm_and_yarn/react-16.8.2
  • 686dd8f Merge pull request #8790 from webpack/dependabot/npm_and_yarn/jest-junit-6.3.0
  • 31a33aa Merge pull request #8789 from webpack/dependabot/npm_and_yarn/react-dom-16.8.2
  • d1d0be9 Merge pull request #8785 from webpack/dependabot/npm_and_yarn/wast-loader-1.8.2
  • fff330e Merge pull request #8784 from webpack/dependabot/npm_and_yarn/lint-staged-8.1.4
  • 196cb81 Merge pull request #8786 from xtuc/chore-bump-webassemblyjs19
  • 842ed68 Bump react from 16.8.1 to 16.8.2
  • 6da1da5 Bump jest-junit from 6.2.1 to 6.3.0
  • 93b0485 Bump react-dom from 16.8.1 to 16.8.2
  • e4ce645 chore: bump webassemblyjs
  • 16b92ad Bump wast-loader from 1.8.1 to 1.8.2
  • 40245c5 Bump lint-staged from 8.1.3 to 8.1.4
  • a3f2662 Merge pull request #8783 from webpack/dependabot/npm_and_yarn/handlebars-4.1.0
  • ae41c08 [Security] Bump handlebars from 4.0.11 to 4.1.0

There are 29 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 18, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 18, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.29.5.

Update to this version instead 🚀

Release Notes for v4.29.5

Bugfixes

  • update @webassemblyjs to remove git dependency
Commits

The new version differs by 9 commits.

  • 073813f 4.29.5
  • 39a8742 Merge pull request #8800 from webpack/bugfix/prettierignore
  • 5878c93 Merge pull request #8802 from xtuc/chore-bump-webassemblyjs20
  • 3d23f67 chore: bump webassemblyjs
  • 75a9a51 fix prettierignore file and run prettier
  • 75c2784 Merge pull request #8788 from webpack/dependabot/npm_and_yarn/eslint-plugin-jest-22.3.0
  • 5591e17 Merge pull request #8799 from webpack/dependabot/npm_and_yarn/eslint-5.14.0
  • 266eb89 Bump eslint from 5.13.0 to 5.14.0
  • 3d4eab8 Bump eslint-plugin-jest from 22.2.2 to 22.3.0

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 28, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 28, 2019

  • The devDependency webpack was updated from 3.12.0 to 4.29.6.

Update to this version instead 🚀

Release Notes for v4.29.6

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
Commits

The new version differs by 44 commits.

  • 685a062 4.29.6
  • 42dff08 Merge pull request #8820 from webpack/dependabot/npm_and_yarn/typescript-3.3.3333
  • 1ef0c2c Merge pull request #8818 from webpack/dependabot/npm_and_yarn/react-dom-16.8.3
  • a4196f9 Merge pull request #8839 from webpack/dependabot/npm_and_yarn/acorn-6.1.1
  • 5e9b9fe Merge pull request #8844 from webpack/bugfix/8829
  • ab517aa fixes #8829
  • 99d6270 Bump acorn from 6.1.0 to 6.1.1
  • 3496426 Merge pull request #8835 from webpack/dependabot/npm_and_yarn/eslint-config-prettier-4.1.0
  • 0dcdd3c Merge pull request #8831 from webpack/dependabot/npm_and_yarn/terser-webpack-plugin-1.2.3
  • 4c6e2bd Merge pull request #8827 from webpack/dependabot/npm_and_yarn/wast-loader-1.8.5
  • 188d162 Merge pull request #8823 from webpack/dependabot/npm_and_yarn/@types/node-10.12.27
  • b7361ff Merge pull request #8821 from webpack/dependabot/npm_and_yarn/coveralls-3.0.3
  • 02bd9be Merge pull request #8822 from webpack/dependabot/npm_and_yarn/ajv-6.9.2
  • 1bb3938 Merge pull request #8834 from xtuc/chore-bump-webassemblyjs24
  • 563dd52 Bump eslint-config-prettier from 4.0.0 to 4.1.0

There are 44 commits in total.

See the full diff

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants