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

Update webpack to the latest version 🚀 #190

Closed
wants to merge 1 commit into from

Conversation

greenkeeper[bot]
Copy link
Contributor

@greenkeeper greenkeeper bot commented May 25, 2018

Version 4.9.0 of webpack was just published.

Dependency webpack
Current Version 3.12.0
Type dependency

The version 4.9.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.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 1757 commits ahead by 1757, behind by 8.

  • 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 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 May 25, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented May 25, 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

@jonthomp jonthomp added blocked This issue is blocked on something do not merge Do not merge this PR yet labels May 26, 2018
@jonthomp
Copy link
Contributor

Create react app doesn't support Webpack 4 yet. CRA 2.0 is on its way and is about to add Webpack 4 support.

@jonthomp jonthomp self-requested a review May 26, 2018 10:44
greenkeeper bot added a commit that referenced this pull request May 28, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented May 28, 2018

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

greenkeeper bot commented May 28, 2018

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

greenkeeper bot commented May 29, 2018

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 14 commits.

  • b80296f 4.10.1
  • c01cb97 Merge commit 'ba703401d580ad623af17fe96ed98b4d801e0313'
  • 1e09650 Merge pull request #7411 from aleen42/master
  • b756012 Merge pull request #7430 from webpack/bugfix/side-effects-reasons
  • 351c993 fixup reasons when redirecting dependencies for side-effects
  • bfdb769 Merge pull request #7427 from ronanamsterdam/feature/test-readme-update
  • 4fc3981 Merge pull request #7429 from webpack/test/issue-7401
  • 5705713 Issue #7424: test/README update with jest snapshot flow
  • 504148c add test cases for #7401
  • 24072ab chore: fix snap for #7263
  • 9e136cd fix: proper way for inner declaration of a function. #7263
  • 67fa81f Merge pull request #7419 from webpack/bugfix/wasm-multi-direct
  • e367b93 add test cases for unused exports
  • 909a2ac fix small bug in wasm runtime

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 1, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jun 1, 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 Jun 5, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jun 5, 2018

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

greenkeeper bot commented Jun 6, 2018

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

greenkeeper bot commented Jun 8, 2018

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

greenkeeper bot commented Jun 24, 2018

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

greenkeeper bot commented Jun 27, 2018

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

greenkeeper bot commented Jun 28, 2018

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

greenkeeper bot commented Jun 29, 2018

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

greenkeeper bot commented Jul 27, 2018

Version 4.16.3 just got published.

Update to this version instead 🚀

Release Notes v4.16.3

Bugfixes

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

The new version differs by 5 commits.

  • 482ff20 4.16.3
  • 6c60e9d Merge pull request #7798 from webpack/bugfix/empty-chunks-fail
  • aac4368 fix case where empty chunkgroups cause nested chunkgroups to vanish
  • a28f44f Merge pull request #7770 from webpack/bump_jest
  • 20dc30e Update Jest

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 2, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 2, 2018

Version 4.16.4 just got published.

Update to this version instead 🚀

Commits

The new version differs by 15 commits.

  • 1e9d98c 4.16.4
  • e163495 Merge pull request #7838 from webpack/test/jest-exported-tests
  • 01cfe5b improve way of adding exported tests to test tree
  • 5f1852a Merge pull request #7831 from EECOLOR/patch-1
  • afe3182 Merge pull request #7836 from rzhe97/master
  • c893bbc Update CONTRIBUTING.md
  • 2348c3c Formatting - move arguments to the same line
  • 7473ed4 Fix chunkAsset hook call
  • 32fdca2 Merge pull request #7823 from flyyang/refactor/define-before-use-class
  • e4ae646 Merge pull request #7825 from webpack/deps/update_linters
  • 64e301c Update Prettier
  • 20406a4 Update ESLint
  • 5234abe Refactor define before use class
  • 61ce434 Merge pull request #7819 from webpack/refactor/template_es6
  • 3992ba3 Convert Template to ES6

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 6, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 6, 2018

Version 4.16.5 just got published.

Update to this version instead 🚀

Commits

The new version differs by 12 commits.

  • 025338c 4.16.5
  • 4972fd8 Merge pull request #7842 from webpack/bugfix/override-entry
  • 17ebfb9 fix #7829
  • 5539f57 Merge pull request #7839 from skingston91/master
  • 1138d32 Merge pull request #7840 from webpack/test/watch-cases
  • 61633aa fix #7778
  • 795cc35 Improve error reporting while recompilation in HotCases
  • 3e30c70 Merge pull request #7830 from ryota-murakami/patch-1
  • 73dff6c Update index.js
  • f5be9a6 update watch test cases for new jest integration
  • ea5c68b Adds test cases for issue 7778
  • cdf042c Update Jest homepage URL

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 21, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 21, 2018

Version 4.17.0 just got published.

Update to this version instead 🚀

Release Notes v4.17.0

Features

  • allow to provide custom functions to IgnorePlugin

Bugfixes

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

The new version differs by 22 commits.

  • 6f1f18f 4.17.0
  • 45e798a Merge pull request #7827 from AoDev/feat/ignore-plugin-check-fn
  • ed96915 Merge pull request #7907 from Connormiha/simplify-context-replacmnet-plugin
  • 1f954b4 Get rid typeof undef in all lib
  • c2e0395 Merge pull request #7922 from webpack/bugfix/concat-globals
  • 9315ce2 fix exporting globals in scope-hoisted modules
  • 0e60343 Merge pull request #7921 from webpack/bugfix/contenhash-id
  • c253b4b chunk ids contribute to contenthash for javascript
  • efa69cd Get rid of typeof for checking undefined
  • 6235e99 feat(IgnorePlugin): allow user to provide his own check functions
  • a02bf99 Merge pull request #7886 from Sibiraj-S/patch-1
  • aba6dbf Merge pull request #7888 from webpack/bugfix/issue-7887
  • 1345ab2 fixes #7887
  • a9a4f1c docs: update README.md
  • 34ff480 Merge pull request #7881 from oygen87/patch-8

There are 22 commits in total.

See the full diff

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

greenkeeper bot commented Aug 22, 2018

Version 4.17.1 just got published.

Update to this version instead 🚀

Release Notes v4.17.1

Bugfixes

  • fix missing reexports in export * in a concatenated module
Commits

The new version differs by 3 commits.

  • ff3ef5e 4.17.1
  • 58773ad Merge pull request #7931 from webpack/bugfix/concatenated-star-export
  • a92c23e fixes #7930

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 3, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 3, 2018

Version 4.17.2 just got published.

Update to this version instead 🚀

Release Notes v4.17.2

Bugfixes

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

The new version differs by 9 commits.

  • dfe6379 4.17.2
  • 80bc330 Merge pull request #7961 from aimergenge/patch-1
  • 3dedc72 Merge pull request #7969 from webpack/deps/upgrade
  • cd9525a Upgrade some dependencies
  • 7996883 solving outputing unnecessary spaces
  • 76c3193 Merge pull request #7952 from webpack/tooling/prettier
  • 1b886ee improve prettier and lint config and performance
  • 6e01fd5 Merge pull request #7942 from webpack/test/performance
  • 2740d4a improve jest startup performance

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 10, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 10, 2018

Version 4.17.3 just got published.

Update to this version instead 🚀

Release Notes v4.17.3

Bugfixes

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

The new version differs by 7 commits.

  • ee27d36 4.17.3
  • 4430524 Merge pull request #7966 from webpack/refactor-remove-webpack-command-from-clis
  • b717aad Show only webpack-cli in the list
  • c5eab67 Merge pull request #8001 from webpack/bugfix/exit-code
  • 943aa6b Fix exit code when multiple CLIs are installed
  • 691cc94 Spelling
  • 898462d refactor: remove webpack-command from CLIs

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 10, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 10, 2018

Version 4.18.0 just got published.

Update to this version instead 🚀

Release Notes v4.18.0

Features

  • Upgrade webassemblyjs dependency
Commits

The new version differs by 12 commits.

  • ee7d948 4.18.0
  • de85978 Merge pull request #7732 from xtuc/chore-bump-webassemblyjs11
  • 4e02cac chore: bump webassemblyjs
  • 52e1630 bump webassemblyjs
  • e0e0061 Merge branch 'master' into chore-bump-webassemblyjs11
  • c9d6ec1 feat: remove wasm-opt
  • 075208d fix: merging
  • 38c3403 Merge remote-tracking branch 'upstream/master' into chore-bump-webassemblyjs11
  • 8214d56 chore: bump webassemblyjs
  • 59114c1 chore: bump webassemblyjs
  • b310b9b feat: remove LEB128 opt
  • f744c4a chore: bump webassemblyjs 1.6.0

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 13, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 13, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.18.1.

Update to this version instead 🚀

Commits

The new version differs by 7 commits.

  • c51a1ba 4.18.1
  • c79c1de Merge pull request #8018 from webpack/ci/azure-windows
  • 37046a7 Add windows to azure
  • 814b85b Merge pull request #8012 from webpack/ci/azure
  • 474a9ac Add simple azure pipeline
  • 7b3a297 Merge pull request #8015 from webpack/deps/upgrade-tapable
  • 35015dd Upgrade tapable version

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 14, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 14, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.19.0.

Update to this version instead 🚀

Release Notes for v4.19.0

Bugfixes

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

The new version differs by 5 commits.

  • 6bf8323 4.19.0
  • aecdeb3 Merge pull request #8029 from webpack/bugfix/hash-bootstrap
  • 13b2cdd hash content of bootstrap code
  • c2cfa7e Merge pull request #8022 from antleblanc/readme-styling-typo
  • 96ffd27 docs(readme.styling): write correctly sass

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 18, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 18, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.19.1.

Update to this version instead 🚀

Release Notes for v4.19.1

Bugfixes

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

The new version differs by 15 commits.

  • b7121c1 4.19.1
  • ab28497 Merge pull request #8043 from RubenVerborgh/externals-object-array
  • 9bda629 remove bad unit test
  • f0271d9 fix ExternalModule and test case
  • 3aef0e5 Allow array as value in externals object.
  • 7b91fa6 Merge pull request #8042 from webpack/bugfix/comments-export-default
  • e08f71c keep/restore comments in export default
  • 2f78aae Merge pull request #8038 from sharang-d/patch-5
  • bb4c2d1 Correctly set the 'browser' value for electron-renderer
  • 5ade574 Merge pull request #7947 from philipwalton/mjs-sourcemap-support
  • 5258471 Merge pull request #8035 from kwonoj/fix-path
  • 2df7b0c fix(nodemaintemplate): resolve async chunk path platform agnostic
  • 17fafd3 Fix lint errors
  • a2cc031 Add tests for default source map extensions
  • 12762ff Add sourcemap support for .mjs output files

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 25, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 25, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.20.0.

Update to this version instead 🚀

Commits

The new version differs by 40 commits.

  • c4d8a3c 4.20.0
  • 1495b33 Merge pull request #8070 from chuckdumont/work
  • 434ced3 Merge pull request #8071 from timneutkens/fix/typo
  • 2671d88 Fix typo
  • f8877e0 Uncaught exception from renderers
  • 31d735c Merge pull request #8068 from webpack/feature/json-to-typescript
  • 762b1c9 move json-schema-to-typescript to devDependencies
  • 9c8f304 Merge pull request #8065 from webpack/ci/appveyor
  • 3b6d149 Merge pull request #7232 from webpack/feature/json-to-typescript
  • 61718d4 Merge pull request #8064 from xtuc/chore-bump-webassemblyjs13
  • f8bc251 Reduce the appveyor CI tasks
  • 62b6142 fix Validation test
  • c768182 fix issues with absolutePath, allOf and anyOf
  • 8c31f2a fixes for RegExp in schema
  • 44955b7 emit exit code only in lint mode

There are 40 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 25, 2018
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Sep 25, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.20.1.

Update to this version instead 🚀

Release Notes for v4.20.1

Bugfixes

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

The new version differs by 3 commits.

See the full diff

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

greenkeeper bot commented Sep 26, 2018

  • The devDependency webpack was updated from 3.12.0 to 4.20.2.

Update to this version instead 🚀

Release Notes for v4.20.2

Bugfixes

  • keep comments in export default in concatenated modules
Commits

The new version differs by 8 commits.

See the full diff

@AaronCoplan AaronCoplan closed this Oct 1, 2018
@jonthomp jonthomp deleted the greenkeeper/webpack-4.9.0 branch June 2, 2019 14:56
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
blocked This issue is blocked on something do not merge Do not merge this PR yet greenkeeper
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants