Open greenkeeper[bot] opened 7 years ago
Update to this version instead π
extensions
option to DllReferencePluginwarningsFilter
to UglifyJsPlugin to hide warnings selectivelyextractComments
to UglifyJsPlugin to move kept comments into separate file (i. e. LICENSE file)compiler
(name
in configuration) in rules
extract-text-webpack-plugin
or html-webpack-plugin
module.strictExportPresence
to make missing export an error instead of warningwatch-close
event when the watcher is closedSystem
now generate valid code i. e. System.global
EnvironmentPlugin
Update to this version instead π
The new version differs by 9 commits .
4b9b660
2.3.1
d1cf8b4
Merge pull request #4538 from webpack/feature/error-emit-warning
ec46a0d
Merge pull request #4539 from mp4096/master
18566a1
Fixed link to the Traceur repo in README
751fd9b
add stack to non-Error error emitted
b1acb2e
Merge pull request #4537 from webpack/bugfix/newline-validation
49ccf44
Merge pull request #4536 from webpack/bugfix/issue-4532
10c44e5
fix extra newline in validation
915c150
fix bug in MinChunkSizePlugin
See the full diff.
Update to this version instead π
The new version differs by 9 commits .
6b209b1
2.3.2
88f2833
Merge pull request #4567 from webpack/bugfix/cheap-source-map
3fca75e
Merge pull request #4565 from webpack/dx/error-description-output-path
c226077
update webpack-sources dependency to fix a bug
2fe82af
Suggest course of action
56d09ab
Merge pull request #4533 from michael-ciniawsky/schema
b5451ef
Merge pull request #4564 from webpack/bugfix/cheap-source-map
22c771f
update webpack-sources dependency to avoid performance issue
c390700
fix(schema/absolutePaths): make absolute paths case insensitive
See the full diff.
Update to this version instead π
Update to this version instead π
import()
now allows to configure a chunk nameimport(/* webpackChunkName: "my-chunk-name" */ "module")
require.ensure
has a error callbackrequire.ensure([], () => {
require("a");
}, err => {
console.error("We failed to load chunk: " + err);
}, "chunk-name");
warningsFilter
to stats options to filter warnings__webpack_chunkname__
to ExtendedAPIPlugin
NamedChunksPlugin
which allows to set chunk id, i. e. to chunk namerequire.ensure
import()
The new version differs by 252 commits .
0cbd8fd
2.4.0
ab22702
Merge pull request #4507 from ts-webpack/refactor/clean-code
e787452
Merge pull request #4700 from webpack/bug/future-var-declaration
98153f5
Merge pull request #4706 from webpack/test/parser-coverage
52f2daf
add test cases and fix a bug
e4b8833
improve code coverage
3afe67d
add parser prewalking to capture scope
0990915
spacing
d8a8bd3
deprecate string option instead of removing it
dbc40e8
Merge pull request #4698 from simon04/examples-source-map
0ef0581
Add example demonstrating all source-map variants
a822784
Merge pull request #4696 from webpack/bugfix/parser-refactoring
ba3688a
fixes misstake while es6 refactoring, add support for other variable declarations
07f6281
fix: typos and variables/function misuse
52055ba
refactor: dead code elimination
There are 250 commits in total. See the full diff.
Update to this version instead π
Update to this version instead π
hashSalt
to schemasourceMappingURL
, which caused issues with some toolsThe new version differs by 81 commits0.
bf3652b
2.5.0
cd1cd29
Merge pull request #4815 from webpack/bugfix/extract-async-initial
b45588b
CommonsChunkPlugin in async mode doesn't select initial chunks
8bab88c
Merge pull request #4814 from webpack/test/move-entry
a244879
add testcase for moving entry modules into the commons chunk
85dc98f
Merge pull request #4813 from JLHwung/perf/date-now
6afc397
perf: use Date.now() instead of new Date().getTime()
94d0641
perf: use Date.now() instead of +new Date()
c91ba49
Merge pull request #4791 from deificx/master
94ba75f
Merge pull request #4794 from ndresx/disable-manifest-json-pretty-print
84ea1ff
added error to stats.moduleTrace test name to trigger test cases corretly
8ad4386
test cases for stats.moduleTrace option
958156a
moduleTrace added to webpackOptionsSchema.json
de87f93
Disable manifest.json pretty print
4131013
rename stats.stackTrace to stats.moduleTrace
There are 81 commits in total.
See the full diff
Update to this version instead π
The new version differs by 5 commits0.
ad2f68f
2.5.1
4fd545b
Merge pull request #4828 from satazor/patch-1
b0c45da
Fix _done function not dealing with compilation being undefined
7bc08e1
Merge pull request #4816 from webpack/bugfix/hoist-immutable-export
a952bb9
change some magic numbers to hoist exports
false
See the full diff
Update to this version instead π
webpackMode
comment option for import()
output.chunkLoadTimeout
webpackChunkName
for import()
with expressionUpdate to this version instead π
output.pathinfo
)The new version differs by 7 commits.
7cfd2c4
2.6.1
5ec15f8
Merge pull request #4927 from webpack/bugfix/require-ensure-var-inject
da08b89
fix variable injection in require.ensure
0dd0830
Merge pull request #4923 from webpack/bugfix/promise-later
09d9533
Use Promise only when chunk load is triggered
ae389b0
Merge pull request #4918 from marzelin/master
08615a2
change description when no static exports found
See the full diff
Update to this version instead π
--display-modules
and --display-optimization-bailout
now work as expectedUpdate to this version instead π
node_modules
no longer mangle to ~
in stats [breaking change]webpack.optimize.ModuleConcatenationPlugin
)output.libraryExport
to select an export for the librarysourceMapFilename
now supports [contenthash]
[breaking change]module.noParse
supports functionsnode: false
option to disable all node specific additionsasync
optionThe new version differs by 44 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 44 commits in total.
See the full diff
Update to this version instead π
this
in a IIFEcacheWithContext: false
by default when it's safesortModules
to Chunk
which is required in extract-text-plugin to support webpack 3!
with truthy webpack identifier will evaluate correctlyThe 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
Update to this version instead π
strictThisContextOnImports
in ConcatenatedModules.strictThisContextOnImports
..call()
renames of this.typeof
with require.resolve(Weak)
.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
Update to this version instead π
this.compiler.compiler is not a function
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
Update to this version instead π
--config-name
option to choose a config by name for compiling a part of the config--module-bind-pre
and --module-bind-post
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
Update to this version instead π
Update to this version instead π
stats.excludeAssets
to allow to filter assets in list (@ldrick)import(/* webpackMode: "weak" */ "module")
to try to load a module without network request (@faceyspacey)require.context
which is the context mode. Can be false
, "eager"
, "lazy-once"
, "weak"
and "async-weak"
. (@faceyspacey)require.resolveWeak
now support expressions (@faceyspacey)ModuleConcatenationPlugin
)ModuleConcatenationPlugin
ConcatenatedModule
--help
output is flushed before process exit (@esbenp)stats
options are now validated by schema (@esbenp)CommonsChunkPlugin
in async mode without name
argument--resolve-extensions
(@tomek-d)has no internal name
when using dependency variable in root of scope-hoisted modules (ModuleConcatenationPlugin
)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
Update to this version instead π
Update to this version instead π
ModuleConcatenationPlugin
)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
Update to this version instead π
ModuleConcatenationPlugin
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
Update to this version instead π
parallelism
)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
Update to this version instead π
call on undefined
errors (can happen when using externals
and CommonChunkPlugin
)__esModule
flag on incremental build with ModuleConcatenationPlugin
__esModule
flag is now only set when needed with the ModuleConcatenationPlugin
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
Update to this version instead π
--watch-poll
also accepts a number now (@civalin)orginalError
-> originalError
in HMR API (@sokra)Cannot read property '0' of undefined
in harmony modules (@sokra)require
to root of concatenated module correctly and don't generate __webpack_require__(null)
(@sokra)async
as variable name (@sokra)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
Update to this version instead π
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
Update to this version instead π
.concat
(@loganfsmyth)ContextExclusionPlugin
to exclude files in a context (@timse)deepChildren
flag to CommonChunkPlugin
(@ArcEglos, @ljcrapo)--watch-poll
in CLI (@Aladdin-ADD)crossOrigin
on script tags for HMR (@STRML)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
Update to this version instead π
--env
data in stats (@jbottigliero)import()
or require.ensure
now (@sokra)stats
and be more strict (@jbottigliero)
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
Update to this version instead π
stats
schema for validationUpdate to this version instead π
stats.all
option to schemaself
before this
as global objectwindow
instead of this in JSONPnull
in SourceMap correctlymultiStep: true
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
Update to this version instead π
ignored
and stdin
to schema of watchOptions
Update to this version instead π
publicPath
and fileContext
to SourceMapDevToolPluginrequire.include
no longer uses all exports (Tree Shaking)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
Update to this version instead π
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
Update to this version instead π
mode
or --mode
) between two modes now: production or development
optimization.*
(build your custom mode)process.env.NODE_ENV
are set to production or development (only in built code, not in config)none
mode which disables everythingimport()
always returns a namespace object. CommonJS modules are wrapped into the default export
import()
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
type: "javascript/auto"
when transforming JSON via loader to JSjavascript/esm
handles ESM more strictly compared to javascript/auto
:
default
import, everything else (including namespace import) emit errors.mjs
modules are javascript/esm
by defaultimport()
sideEffects: false
is now supported in package.json
sideEffects
in package.json also supports glob expressions and arrays of glob expressionsoptimization.splitChunks
option was introducedimport()
occur in a dead branchwebpackInclude
and webpackExclude
are supported by the magic comment for import()
. They allow to filter files when using a dynamic expression.System.import()
now emits a warning
Rule.parser.system: true
System.import
with Rule.parser.system: false
module.rules[].resolve
. It's merged with the global configuration.optimization.minimize
has been added to switch minimizing on/off
optimization.minimizer
has been added to configurate minimizers and optionswebpack-cli
to use the CLI--progress
) now displays plugin names
module.rules[].type
options.dependencies
configurations now throw errorsideEffects
can be overriden via module.rulesoutput.hashFunction
can now be a Constructor to a custom hash function
output.globalObject
config option to allow to choose the global object reference in runtime exitCodetype
and request
.include
test
and exclude
to the eval source map devtool pluginfor of
instead of forEach
Map
and Set
instead of Objectsincludes
instead of indexOf
text/javascript
and async
as this are the default values (saves a few bytes)__webpack_require__
and argument is omitted.wasm
, .mjs
, .js
and .json
extensions in this orderoutput.pathinfo
is now on by default in develoment modeentry
defaults to ./src
output.path
defaults to ./dist
production
defaults when omiting the mode
option<{parents}>
>{children}<
and ={siblings}=
in StatsbuildAt
time to statsimport()
now emits a error instead of a warningdone
is now an async hook*/
output.chunkCallbackName
to the schema to allow configurating WebWorker templatemodule.id/loaded
now correctly bails out of Module Concatentation (Scope Hoisting)Watching.invalidate
-!
behavior with post loadersrun
and watchRun
hooks for MultiCompiler
this
is now undefined in ESMvar
, const
or let
javascript/dynamic
or javascript/module
is used.buildMeta
of nulloriginal-fs
module for electron targetsplugins
plugin
calls with tap
calls (new plugin system)buildMeta.exportsType: "default"
for json modulesneo-async
instead of async
module.loaders
loaderContext.options
Compilation.notCacheable
flagNoErrorsPlugin
Dependency.isEqualResource
NewWatchingPlugin
CommonsChunkPlugin
plugin
method is backward-compatibleCompiler.hooks.xxx.tap(<plugin name>, fn)
nowChunk.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.StackedSetMap
(LevelDB-like datastructure) instead of ArraysCompiler.options
is no longer set while applying pluginsDependency.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()
Module
sContextModule
and resolveDependencies
Compiler.resolvers
into Compiler.resolverFactory
accessible with pluginsDependency.isEqualResource
has been replaced with Dependency.getResourceIdentifier
Template
are now staticoutputOptions
and requestShortener
has been moved to this class
Module.meta
has been replaced with Module.buildMeta
Module.buildInfo
and Module.factoryMeta
have been addedModule
have been moved into the new objectsloaderContext.rootContext
which points to the context
options. Loaders may use it to make stuff relative to the application root.this.hot
flag to loader context when HMR is enabledbuildMeta.harmony
has been replaced with buildMeta.exportsType: "namespace
map/foreach
Chunks/Modules/Parents
methods are now deprecated/removedcreateGenerator
and generator
hooks for NormalModuleFactory to customize code generationThe 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
Update to this version instead π
version
property to webpack exportsimport()
with CJS now gives correct exportsThe 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
Update to this version instead π
filename
option to optimization.splitChunks
to modify the filename template for splitted chunksthis.xxx
in ProvidePlugin
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
Update to this version instead π
sourceMap
option of the default UglifyJsPlugin now defaults to true when the SourceMapDevToolPlugin is usedmodule.assets
is now working again in the StatsdevtoolNamespace
default works now also for arrays passed to output.library
chunks
option of optimization.splitChunks
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
Update to this version instead π
splitChunks.automaticNameDelimiter
to configure the name separator for automatic namesstats.excludeModules
now also accept booleansperformance
is disabled by default in non-web targetsevents.json
in ProfilingPluginThe 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
Update to this version instead π
[contenthash]
placeholderbrowser
field is used for target electron-renderer
devtoolNamespace
default correctly when passing an object to output.library
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
Update to this version instead π
splitChunks.chunks
supports a custom function nowmode
chunkFilename
, because it's not workingexport default (function xxx() {})
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
Update to this version instead π
yarn setup
script for bootstrapping local developmentThe 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
Update to this version instead π
webpackPrefetch
/webpackPreload
magic comments to import()
stats.entrypoints[].children
and stats.entrypoints[].childAssets
to stats jsontarget: "webworker"
this
to undefined
ESM replacement in function default valuesnew require(...)
is weird, but now behaves like in node.jsexport * from "commonjs"
with partial overrideoutput.globalObject
in target: "node-webkit"
loadModules
and dependencies in these modulesunknown size
when size is unknownoptimization
configurationThe 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
Update to this version instead π
import(/* webpackIgnore: true */ "...")
) to keep the import in the bundlechunkGroups
optionnamedChunkGroups
propertyChunk Group
text output[contenthash:n]
without on-demand-chunksThe 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
Update to this version instead π
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
Update to this version instead π
debug
dependencyoutput.library.root
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
Update to this version instead π
BannerPlugin
supports a function as banner
optionserve
property in configuration schemaentryOnly
option to DllPlugin
to only expose modules in the entry pointwebpack-cli
and webpack-command
usedIds
in records
for stablilitysplitChunks
when request limit has reached (caused suboptimal splitting)__webpack_require__.e
)runtimeChunk
is even generated when all modules are moved by splitChunks
(caused multiple runtime chunks instead of single one)many-pages
exampleThe 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
Update to this version instead π
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
Update to this version instead π
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
Update to this version instead π
export * from
are no longer including in the bundleThe 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
Update to this version instead π
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
Version 2.3.0 of webpack just got published.
The version 2.3.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
v2.3.0Features:
extensions
option to DllReferencePluginwarningsFilter
to UglifyJsPlugin to hide warnings selectivelyextractComments
to UglifyJsPlugin to move kept comments into separate file (i. e. LICENSE file)compiler
(name
in configuration) in rulesextract-text-webpack-plugin
orhtml-webpack-plugin
module.strictExportPresence
to make missing export an error instead of warningwatch-close
event when the watcher is closedBugfixes:
System
now generate valid code i. e.System.global
EnvironmentPlugin
Commits
The new version differs by 2046 commits (ahead by 2046, behind by 66).
46dc08e
2.3.0
01c06de
Merge pull request #4527 from webpack/bugfix/issue-4472
23e1f7c
install Promise early in chunk cache
0c137cb
Merge pull request #4521 from chicoxyzzy/patch-1
98ea823
Merge pull request #4503 from eirikurn/empty-env-variables
0058a2e
Use ts-loader instead of deprecated typescript-loader
3e787ea
Merge pull request #4502 from webpack/TheLarkInn-patch-1
335ce5f
Merge pull request #4471 from SteveMieskoski/increase-coverage-for-AutomaticPrefetchPlugin
fadafb2
Merge pull request #4504 from timse/do-not-merge-empty-chunks
a9972a3
Merge pull request #4505 from rouzbeh84/hotfix/hotlinking-examples-index
a5272e8
hotlink examples in readme
d67e125
fix up tests
d7ae9ad
do not incorporate chunks without modules
003cef9
EnvironmentPlugin: Support empty env variables
7db849d
Update README.md
There are 250 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: