chore(deps): update dependency html-webpack-plugin to v5 - autoclosed
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
html-webpack-plugin | devDependencies | major | 3.2.0 -> 5.5.0 |
Release Notes
jantimon/html-webpack-plugin
v5.5.0
Features
5.4.0 (2021-10-15)
Features
- update terser (9c7fba0
5.3.2 (2021-06-22)
Bug Fixes
- update lodash and pretty error (9c7fba0
5.3.1 (2021-03-09)
Bug Fixes
- remove loader-utils from plugin core (82d0ee8)
v5.4.0
v5.3.2
v5.3.1
v5.3.0
Features
- allow to modify the interpolation options in webpack config (d654f5b)
- drop loader-utils dependency (41d7a50)
v5.2.0
Features
- improve ssr (73d2a66)
v5.1.0
Features
v5.0.0
⚠ BREAKING CHANGES
- Drop support for
webpack
4 andnode
<= 10 - For older webpack or node versions please usehtml-webpack-plugin
4.x - Entry javascript resources are now beeing loaded deferred in the
<head>
tag to improve the page load performance by default - You can set thescriptLoading
option to'blocking'
to keep the previous behaviour - Setting publicPath to
''
(an empty string) will no longer calculate a relative path from the html file to the assets anymore - You can set thepublicPath
option to'auto'
to keep the previous behaviour - Plugins for
html-webpack-plugin
which add additional assetTags should provide ameta
attribute - Drop support for
appcache-webpack-plugin
Features
- drop
webpack
4 andnode
<= 10 support to make use of the latest APIs (b7a9e8f) - use the new webpack 5 APIs and create html files during the new
webpack.Compilation.MROCESS_ASSETS_STAGE_ADDITIONS
compilation stage (8964bc4, b6895cb, a97234e, 1b59e09, 4fca596, ed64a6b, 86245db, 50b3bec, c697725) - allow generating one file per chunk with the new
'[name]'
placeholder for thefilename
option (cd5bd2a, 3d9ff48) - the
filename
option can now be a function (c5beb4b) - add support for
'auto'
public paths inside templates (a059fcf, b09b439) - use defer as default script loading mechanism (35b6b87)
- allow to set publicPath to an empty string
''
(5ea7de4) - improve typings (197ddd8)
- provide public path to the alterAssetTagGroups hook (1b54dfb)
- provide public path to the alterAssetTags hook (b754626)
- use
thisCompilation
in child compiler for faster builds (1d59e9a) - export new major in static property (8b692bd)
- reduce dependencies (8c28aaa, 56e633f)
Bug Fixes
- emit files on every build to work properly with plugins like the clean-webpack-plugin (6b3d087)
- generate html files even if no webpack entry exists (2693dfa)
- keep binary format when adding assets (7e2b208), closes #1537
4.5.1 (2021-01-03)
Bug Fixes
- inject javascripts in the tag for inject:true and scriptLoading:'defer' (4f7064e)
v4.5.2
v4.5.1
v4.5.0
Features
- Add publicPath option to overrule the default path generation (#1516) (19b5122)
- update webpack dependency range to allow installing webpack 5 beta (f3ccdd5), closes #1504
4.4.1 (2020-08-30)
Bug Fixes
v4.4.1
Bug Fixes
v4.4.0
Bug Fixes
Features
v4.3.0
Features
- Allow to use console.log inside templates (c3f2fdc)
4.2.2 (2020-04-30)
Bug Fixes
- Prevent "cannot read property info of undefined" when reading meta information from assets (253ce30)
- use modern icon tag rel attribute for favicons (c40dd85)
4.2.1 (2020-04-28)
Bug Fixes
- don't add dependencies twice to the webpack 5 watcher api (ceafe14)
- prevent scripts marked as hotModuleReplacement from being added to the html file (119252a)
v4.2.2
Bug Fixes
- Prevent "cannot read property info of undefined" when reading meta information from assets (253ce30)
- use modern icon tag rel attribute for favicons (c40dd85)
v4.2.1
Bug Fixes
- don't add dependencies twice to the webpack 5 watcher api (ceafe14)
- prevent scripts marked as hotModuleReplacement from being added to the html file (119252a)
v4.2.0
Features
v4.1.0
Features
4.0.4 (2020-04-01)
Bug Fixes
4.0.3 (2020-03-28)
Bug Fixes
- add webpack, tapable and html-minifier-terser as dependencies because of types.d.ts (238da81)
4.0.2 (2020-03-26)
Bug Fixes
- don't remove trailing slashes from self closing tags by default (2281e4b)
4.0.1 (2020-03-23)
Bug Fixes
- update typedefs to match with html-minifier-terser (2698c7e)
v4.0.4
Bug Fixes
v4.0.3
Bug Fixes
- add webpack, tapable and html-minifier-terser as dependencies because of types.d.ts (238da81)
v4.0.2
Bug Fixes
- don't remove trailing slashes from self closing tags by default (2281e4b)
v4.0.1
Bug Fixes
- update typedefs to match with html-minifier-terser (2698c7e)
v4.0.0
The summary can be found in the release blog post.
Bug Fixes
- Add dependencies from the child compilation to the main compilation (27c3e72)
- Add typing for assets(Close jantimon#1243) (9fef060)
- allow
contenthash
along withtemplatehash
(049d4d3), closes #1033 - Catch and ignore pretty-error errors (2056139), closes #921
- Drop @types/webpack dependency (d4eb1c7)
- Ignore foreign child compilers (1422664)
- Improve perfomance for appcache files (b94e043)
- load script files before style files files in defer script loading mode (97f9fb9)
- Prevent chunks from beeing added multiple times (d65b37d)
- Prevent lodash from being inlined to work around a babel-loader incompatibility (7f21910), closes #1223
- Remove compilation.getStats() call for performance reasons (7005a55)
- remove useless links for options (#1153) (267e0e0)
- Update references to html-minifier (24bf1b5), closes #1311
- typings.d.ts: added apply method type to HtmlWwbpackPlugin class definitoin (8b7255f), closes jantimon#1244
- rename
contenthash
totemplatehash
(4c11c5d) - Repair typings (#1166) (f4cb241)
- small type. minifcation instead of minification (#1154) (56037a6)
- Use src/index.ejs by default if present (#1167) (c27e5e4)
- chunksorter: Don't sort chunks by default (22fb03f)
- loader: switch to loaderUtils.getOptions (a0a0f0d)
- README: adds a link to template option documentation (f40aeae)
- tests: Upgrade webpack-recompilation-simulator (dfe1d10)
- Update lodash to 4.17.10 (cc3bf49)
Code Refactoring
- Change the structure of the internal assets object (37db086)
- Changed hook names and arguments - the hook order is 'beforeAssetTagGeneration', 'alterAssetTags', 'alterAssetTagGroups', 'afterTemplateExecution', 'beforeEmit', 'afterEmit' (14b4456)
- Use Webpack 4 APIs (47efdea)
Features
- add
.toString
implementation to htmlTags to allow easier rendering (34d8aa5) - Add default viewport meta tag for default template (302e39e), closes [#897](https://github.com/jant
Renovate configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.