This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
forked from HubSpot/draft-convert
-
Notifications
You must be signed in to change notification settings - Fork 0
Update dependency webpack to v4 (master) #29
Open
appcues-wss
wants to merge
1
commit into
master
Choose a base branch
from
whitesource-remediate/master-webpack-4.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Mar 4, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Mar 9, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Mar 16, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Mar 17, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Mar 27, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Mar 31, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Jun 14, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Jun 19, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Aug 18, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Aug 19, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Sep 11, 2023
appcues-wss
bot
deleted the
whitesource-remediate/master-webpack-4.x
branch
September 11, 2023 19:18
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Sep 12, 2023
appcues-wss
bot
restored the
whitesource-remediate/master-webpack-4.x
branch
September 12, 2023 06:19
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Sep 22, 2023
appcues-wss
bot
deleted the
whitesource-remediate/master-webpack-4.x
branch
September 22, 2023 01:18
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Sep 22, 2023
appcues-wss
bot
restored the
whitesource-remediate/master-webpack-4.x
branch
September 22, 2023 12:16
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Sep 27, 2023
appcues-wss
bot
deleted the
whitesource-remediate/master-webpack-4.x
branch
September 27, 2023 06:19
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Sep 27, 2023
appcues-wss
bot
restored the
whitesource-remediate/master-webpack-4.x
branch
September 27, 2023 18:24
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master)
Update dependency webpack to v4 (master) - autoclosed
Dec 5, 2023
appcues-wss
bot
changed the title
Update dependency webpack to v4 (master) - autoclosed
Update dependency webpack to v4 (master)
Dec 7, 2023
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.13.0
->^4.0.0
By merging this PR, the below vulnerabilities will be automatically resolved:
Release Notes
webpack/webpack (webpack)
v4.0.0
Compare Source
Big 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 generationv3.12.0
Compare Source
Bugfixes
hot.accept
creating duplicates when using the DefinePluginv3.11.0
Compare Source
Features
new Foo
expressionsjsonpScriptType
to specify script type for lazy loaded script tagsBugfixes
ident
in schemaident
is not lost when referencing by identprocess.exitCode
instead ofprocess.exit
v3.10.0
Compare Source
Features:
publicPath
andfileContext
to SourceMapDevToolPluginrequire.include
no longer uses all exports (Tree Shaking)v3.9.1
Compare Source
Bugfixes:
ignored
andstdin
to schema ofwatchOptions
v3.9.0
Compare Source
Features
Bugfixes
stats.all
option to schemaself
beforethis
as global objectwindow
instead of this in JSONPnull
in SourceMap correctlymultiStep: true
v3.8.1
Compare Source
Bugfixes:
stats
schema for validationv3.8.0
Compare Source
Features:
--env
data in stats (@jbottigliero)import()
orrequire.ensure
now (@sokra)Bugfixes:
stats
and be more strict (@jbottigliero)Performance
v3.7.1
Compare Source
Bugfixes
v3.7.0
Compare Source
Features
.concat
(@loganfsmyth)ContextExclusionPlugin
to exclude files in a context (@timse)deepChildren
flag toCommonChunkPlugin
(@ArcEglos, @ljcrapo)Bugfixes
--watch-poll
in CLI (@Aladdin-ADD)crossOrigin
on script tags for HMR (@STRML)Performance
v3.6.0
Compare Source
Bugfixes
v3.5.6
Compare Source
Bugfixes
--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)Performance
v3.5.5
Compare Source
Bugfixes:
call on undefined
errors (can happen when usingexternals
andCommonChunkPlugin
)__esModule
flag on incremental build withModuleConcatenationPlugin
__esModule
flag is now only set when needed with theModuleConcatenationPlugin
v3.5.4
Compare Source
Bugfixes
Features:
parallelism
)v3.5.3
Compare Source
Bugfixes
ModuleConcatenationPlugin
v3.5.2
Compare Source
Bugfixes:
ModuleConcatenationPlugin
)v3.5.1
Compare Source
Bugfixes:
v3.5.0
Compare Source
Features:
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 befalse
,"eager"
,"lazy-once"
,"weak"
and"async-weak"
. (@faceyspacey)require.resolveWeak
now support expressions (@faceyspacey)ModuleConcatenationPlugin
)Bugfixes:
ModuleConcatenationPlugin
ConcatenatedModule
--help
output is flushed before process exit (@esbenp)stats
options are now validated by schema (@esbenp)CommonsChunkPlugin
in async mode withoutname
argument--resolve-extensions
(@tomek-d)has no internal name
when using dependency variable in root of scope-hoisted modules (ModuleConcatenationPlugin
)Examples:
v3.4.1
Compare Source
Bugfixes:
v3.4.0
Compare Source
Features:
--config-name
option to choose a config by name for compiling a part of the configBugfixes:
--module-bind-pre
and--module-bind-post
Performance:
v3.3.0
Compare Source
Features:
Bugfixes:
this.compiler.compiler is not a function
v3.2.0
Compare Source
Bugfixes:
strictThisContextOnImports
in ConcatenatedModules.strictThisContextOnImports
..call()
renames of this.typeof
withrequire.resolve(Weak)
.v3.1.0
Compare Source
Features:
this
in a IIFEcacheWithContext: false
by default when it's safesortModules
toChunk
which is required in extract-text-plugin to support webpack 3Bugfixes:
!
with truthy webpack identifier will evaluate correctlyv3.0.0
Compare Source
Changes from 2.6.1 to 3.0.0
Features
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 additionsBugfixes
async
optionInternal changes
Changes from 3.0.0-rc.2 to 3.0.0
Bugfixes
Internal changes
v2.7.0
Compare Source
Features:
resolve.cacheWithContext
to schema[contenthash]
insourceMapFilename
as workaround for a caching bugv2.6.1
Compare Source
Bugfixes:
output.pathinfo
)v2.6.0
Compare Source
Features:
webpackMode
comment option forimport()
output.chunkLoadTimeout
Bugfixes:
webpackChunkName
forimport()
with expressionv2.5.1
Compare Source
Bugfixes:
v2.5.0
Compare Source
Bugfixes:
hashSalt
to schemasourceMappingURL
, which caused issues with some toolsFeatures:
v2.4.1
Compare Source
Bugfixes:
v2.4.0
Compare Source
Highlighted Features:
import()
now allows to configure a chunk namerequire.ensure
has a error callbackFeatures:
warningsFilter
to stats options to filter warnings__webpack_chunkname__
toExtendedAPIPlugin
NamedChunksPlugin
which allows to set chunk id, i. e. to chunk namerequire.ensure
import()
Bugfixes:
v2.3.3
Compare Source
Bugfixes:
v2.3.2
Compare Source
Bugfixes:
v2.3.1
Compare Source
Bugfixes:
emitWarning/Error
from loader with non-Error valuev2.3.0
Compare Source
Features:
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
Notes
The validation now fails when passing absolute paths with lowercase drive letter on windows.
(i. e.
c:\work\stuff
instead ofC:\work\stuff
)Lowercase drive letters will cause weird errors (node.js behavior is inconsistent about drive letter casing) in some cases.
So please fix the paths in your shell resp. your tooling and always call webpack with uppercase drive letter. Don't use lowercase drive letters.
v2.2.1
Compare Source
Bugfixes:
ident
is no longer required, but it will choose one automaticallyFeatures:
v2.2.0
Compare Source
The first webpack 2 release
No changes here. It's equal to the last RC, but with an updated version number.
Here is a migration guide if you want to migrate from webpack 1 to webpack 2.
Here is a blog post about the release.
Here is the documentation for webpack 2. It's new!
v1.15.0
Compare Source
Note: webpack 1 do no longer receive bugfixes/features. Please upgrade to webpack 2.
Bugfixes:
Features: