Closed greenkeeper[bot] closed 6 years ago
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
āļø Greenkeeperās updated Terms of Service will come into effect on April 6th, 2018.
Version 4.0.0 of webpack was just published.
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.0Big changes
mode
or--mode
) between two modes now: production or developmentoptimization.*
(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 exportimport()
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 JSBig features
javascript/esm
handles ESM more strictly compared tojavascript/auto
:default
import, everything else (including namespace import) emit errors.mjs
modules arejavascript/esm
by defaultimport()
sideEffects: false
is now supported in package.jsonsideEffects
in package.json also supports glob expressions and arrays of glob expressionsoptimization.splitChunks
option was introducedDetails: https://gist.github.com/sokra/1522d586b8e5c0f5072d7565c2bee693
import()
occur in a dead branchwebpackInclude
andwebpackExclude
are supported by the magic comment forimport()
. They allow to filter files when using a dynamic expression.System.import()
now emits a warningRule.parser.system: true
System.import
withRule.parser.system: false
module.rules[].resolve
. It's merged with the global configuration.optimization.minimize
has been added to switch minimizing on/offoptimization.minimizer
has been added to configurate minimizers and optionswebpack-cli
to use the CLI--progress
) now displays plugin namesFeatures
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 functionoutput.globalObject
config option to allow to choose the global object reference in runtime exitCodetype
andrequest
.include
test
andexclude
to the eval source map devtool pluginfor of
instead offorEach
Map
andSet
instead of Objectsincludes
instead ofindexOf
text/javascript
andasync
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 themode
option<{parents}>
>{children}<
and={siblings}=
in StatsbuildAt
time to statsimport()
now emits a error instead of a warningdone
is now an async hookBugfixes
*/
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
andwatchRun
hooks forMultiCompiler
this
is now undefined in ESMvar
,const
orlet
javascript/dynamic
orjavascript/module
is used.buildMeta
of nulloriginal-fs
module for electron targetsplugins
Internal changes
plugin
calls withtap
calls (new plugin system)buildMeta.exportsType: "default"
for json modulesneo-async
instead ofasync
Removed features
module.loaders
loaderContext.options
Compilation.notCacheable
flagNoErrorsPlugin
Dependency.isEqualResource
NewWatchingPlugin
CommonsChunkPlugin
Breaking changes for plugins/loaders
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
andParser.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 aweak
property.Dependency.weak
is now used by theDependency
base class and returned in the base impl ofgetReference()
Module
sContextModule
andresolveDependencies
Compiler.resolvers
intoCompiler.resolverFactory
accessible with pluginsDependency.isEqualResource
has been replaced withDependency.getResourceIdentifier
Template
are now staticoutputOptions
andrequestShortener
has been moved to this classModule.meta
has been replaced withModule.buildMeta
Module.buildInfo
andModule.factoryMeta
have been addedModule
have been moved into the new objectsloaderContext.rootContext
which points to thecontext
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 withbuildMeta.exportsType: "namespace
map/foreach
Chunks/Modules/Parents
methods are now deprecated/removedcreateGenerator
andgenerator
hooks for NormalModuleFactory to customize code generationCommits
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](https://greenkeeper.io/faq.html). If those donāt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper bot :palm_tree: