Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump html-webpack-plugin from 3.2.0 to 5.1.0 (jaegertracing#697)
Bumps [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) from 3.2.0 to 5.1.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md">html-webpack-plugin's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/jantimon/html-webpack-plugin/compare/v5.0.0...v5.1.0">5.1.0</a> (2021-02-12)</h2> <h3>Features</h3> <ul> <li>omit html tag attribute with null/undefined/false value (<a href="https://github.com/jantimon/html-webpack-plugin/commit/aa6e78d1430c17d9cf05550b2c9f73a9a0c0166c">aa6e78d</a>), closes <a href="https://github-redirect.dependabot.com/jantimon/html-webpack-plugin/issues/1598">#1598</a></li> </ul> <h2><a href="https://github.com/jantimon/html-webpack-plugin/compare/v4.5.1...v5.0.0">5.0.0</a> (2021-02-03)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>Drop support for <code>webpack</code> 4 and <code>node</code> <= 10 - For older webpack or node versions please use <code>html-webpack-plugin</code> 4.x</li> <li>Entry javascript resources are now beeing loaded deferred in the <code><head></code> tag to improve the page load performance by default - You can set the <code>scriptLoading</code> option to <code>'blocking'</code> to keep the previous behaviour</li> <li>Setting publicPath to <code>''</code> (an empty string) will no longer calculate a relative path from the html file to the assets anymore - You can set the <code>publicPath</code> option to <code>'auto'</code> to keep the previous behaviour</li> <li>Plugins for <code>html-webpack-plugin</code> which add additional assetTags should provide a <code>meta</code> attribute</li> <li>Drop support for <code>appcache-webpack-plugin</code></li> </ul> <h3>Features</h3> <ul> <li>drop <code>webpack</code> 4 and <code>node</code> <= 10 support to make use of the latest APIs (<a href="https://github.com/jantimon/html-webpack-plugin/commit/b7a9e8f2a3c146cfec8f5c42888abd6aa0cde0b9">b7a9e8f</a>)</li> <li>use the new webpack 5 APIs and create html files during the new <code>webpack.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS</code> compilation stage (<a href="https://github.com/jantimon/html-webpack-plugin/commit/8964bc4182e41807a564d3000217a40bc5f93ad2">8964bc4</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/b6895cb5b85b1e6e850f638470cf9b839d421516">b6895cb</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/a97234ead5ea2dbba07a6e6a70c5ddb6a5a3c288">a97234e</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/1b59e0944f561b264f11847ef245c9fc3f05b80f">1b59e09</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/4fca5965315c49f6706812d9fdf6c7284d23d75b">4fca596</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/ed64a6b35fe9cdbc610e9b766700f3b2fc2b8e4c">ed64a6b</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/86245db670a9b3bdd0e2aba9f2031745a98434c7">86245db</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/50b3bec51a43289d6d1b4e1e6439560eb791576f">50b3bec</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/c697725e9f4dd990bd4b7927bbfa7b826d2f36f2">c697725</a>)</li> <li>allow generating one file per chunk with the new <code>'[name]'</code> placeholder for the <code>filename</code> option (<a href="https://github.com/jantimon/html-webpack-plugin/commit/cd5bd2afc902bbe5a5ceec4756ef634a26aa1332">cd5bd2a</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/3d9ff48543d04d9f7c3440bfefb43751775a9e81">3d9ff48</a>)</li> <li>the <code>filename</code> option can now be a function (<a href="https://github.com/jantimon/html-webpack-plugin/commit/c5beb4bd16e4916b5355c300abebf9d7d3c587da">c5beb4b</a>)</li> <li>add support for <code>'auto'</code> public paths inside templates (<a href="https://github.com/jantimon/html-webpack-plugin/commit/a059fcf32d94aaaa738359cedce0b0e4af68f0de">a059fcf</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/b09b439f50ecb75994acde2eb2967ad690ff1cf0">b09b439</a>)</li> <li>use defer as default script loading mechanism (<a href="https://github.com/jantimon/html-webpack-plugin/commit/35b6b878db17f0f5704a187b336a14fdd58cedfc">35b6b87</a>)</li> <li>allow to set publicPath to an empty string <code>''</code> (<a href="https://github.com/jantimon/html-webpack-plugin/commit/5ea7de4ba271813835be700316c8a1763b205d2d">5ea7de4</a>)</li> <li>improve typings (<a href="https://github.com/jantimon/html-webpack-plugin/commit/197ddd88f39a2e6e70863b6fed2385d33043d137">197ddd8</a>)</li> <li>provide public path to the alterAssetTagGroups hook (<a href="https://github.com/jantimon/html-webpack-plugin/commit/1b54dfbd62c0d0df10dd3d2be9937626142d518f">1b54dfb</a>)</li> <li>provide public path to the alterAssetTags hook (<a href="https://github.com/jantimon/html-webpack-plugin/commit/b75462653d11803a428b1d29479e259c3010163f">b754626</a>)</li> <li>use <code>thisCompilation</code> in child compiler for faster builds (<a href="https://github.com/jantimon/html-webpack-plugin/commit/1d59e9a71ddba1429168c42569a7bd9bdd363f4f">1d59e9a</a>)</li> <li>export new major in static property (<a href="https://github.com/jantimon/html-webpack-plugin/commit/8b692bd7cc0b75ddf55f47da317eed9bd19dab91">8b692bd</a>)</li> <li>reduce dependencies (<a href="https://github.com/jantimon/html-webpack-plugin/commit/8c28aaa2bed5a7147b397fef3801cfe8fb5c34b9">8c28aaa</a>, <a href="https://github.com/jantimon/html-webpack-plugin/commit/56e633fcb90909c2bbedbd63590ecaa825d8b31f">56e633f</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>emit files on every build to work properly with plugins like the clean-webpack-plugin (<a href="https://github.com/jantimon/html-webpack-plugin/commit/6b3d087cf17f63b596c298d70a42a7462dd0f881">6b3d087</a>)</li> <li>generate html files even if no webpack entry exists (<a href="https://github.com/jantimon/html-webpack-plugin/commit/2693dfaf4c94625eab86afadfd0e4d8822092d6b">2693dfa</a>)</li> <li>keep binary format when adding assets (<a href="https://github.com/jantimon/html-webpack-plugin/commit/7e2b208634e26299c509e0c6b3189e01e4c3d3df">7e2b208</a>), closes <a href="https://github-redirect.dependabot.com/jantimon/html-webpack-plugin/issues/1537">#1537</a></li> </ul> <h3><a href="https://github.com/jantimon/html-webpack-plugin/compare/v4.5.0...v4.5.1">4.5.1</a> (2021-01-03)</h3> <h3>Bug Fixes</h3> <ul> <li>inject javascripts in the <!-- raw HTML omitted --> tag for inject:true and scriptLoading:'defer' (<a href="https://github.com/jantimon/html-webpack-plugin/commit/4f7064ee56fe710e8f416018956647a72c270fb1">4f7064e</a>)</li> </ul> <h1><a href="https://github.com/jantimon/html-webpack-plugin/compare/v4.4.1...v4.5.0">4.5.0</a> (2020-09-21)</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/2e30bb13d52f90264f0bd248f077cfec84930ec3"><code>2e30bb1</code></a> chore(release): 5.1.0</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/aa6e78d1430c17d9cf05550b2c9f73a9a0c0166c"><code>aa6e78d</code></a> feat: omit html tag attribute with null/undefined/false value</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/33d69f49e6e9787796402715d1b9cd59f80b628f"><code>33d69f4</code></a> Update scriptLoading's default on README.md</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/74fae99c1294c01b71c8ea082fe1557cb5375322"><code>74fae99</code></a> chore(release): 5.0.0</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/94a20df6597c1b3222d64c46823d07c6037c9cc9"><code>94a20df</code></a> chore: update to webpack 5.20.0</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/c5c821205b626a6f2d57550b1991ddafde4beb0f"><code>c5c8212</code></a> feat: add meta attribute for html tags</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/d0ab7740e51ed98ca1c26ee01e2e3733e8f5dd46"><code>d0ab774</code></a> feat: provide public path to the alterAssetTagGroups hook</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/5200ae6ded82809f37292899418f24f1c8817634"><code>5200ae6</code></a> feat: provide public path to the alterAssetTags hook</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/ccbe93aa4630f06903859809d866ff2068281cc1"><code>ccbe93a</code></a> chore: update examples to latest webpack version</li> <li><a href="https://github.com/jantimon/html-webpack-plugin/commit/33cbd5982dddc9e4f548ebf47ffbd6a017040cd1"><code>33cbd59</code></a> fix: generate html files even if no webpack entry exists</li> <li>Additional commits viewable in <a href="https://github.com/jantimon/html-webpack-plugin/compare/v3.2.0...v5.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=html-webpack-plugin&package-manager=npm_and_yarn&previous-version=3.2.0&new-version=5.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: vvvprabhakar <[email protected]>
- Loading branch information