dependabot[bot] opened a new pull request, #5113: URL: https://github.com/apache/zeppelin/pull/5113
Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.9 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@angular-devkit/build-angular](https://github.com/angular/angular-cli), [ng-packagr](https://github.com/ng-packagr/ng-packagr) and [ngx-build-plus](https://github.com/manfredsteyer/ngx-build-plus). These dependencies need to be updated together. Updates `esbuild` from 0.14.22 to 0.25.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.25.9</h2> <ul> <li> <p>Better support building projects that use Yarn on Windows (<a href="https://redirect.github.com/evanw/esbuild/issues/3131">#3131</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/3663">#3663</a>)</p> <p>With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the <code>C:</code> drive. The problem was as follows:</p> <ol> <li>Yarn in Plug'n'Play mode on Windows stores its global module cache on the <code>C:</code> drive</li> <li>Some developers put their projects on the <code>D:</code> drive</li> <li>Yarn generates relative paths that use <code>../..</code> to get from the project directory to the cache directory</li> <li>Windows-style paths don't support directory traversal between drives via <code>..</code> (so <code>D:\..</code> is just <code>D:</code>)</li> <li>I didn't have access to a Windows machine for testing this edge case</li> </ol> <p>Yarn works around this edge case by pretending Windows-style paths beginning with <code>C:\</code> are actually Unix-style paths beginning with <code>/C:/</code>, so the <code>../..</code> path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.</p> </li> <li> <p>Preserve parentheses around function expressions (<a href="https://redirect.github.com/evanw/esbuild/issues/4252">#4252</a>)</p> <p>The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read <a href="https://v8.dev/blog/preparser">V8's blog post about this</a> for more details.</p> <p>Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:</p> <pre lang="js"><code>// Original code const fn0 = () => 0 const fn1 = (() => 1) console.log(fn0, function() { return fn1() }()) <p>// Old output const fn0 = () => 0; const fn1 = () => 1; console.log(fn0, function() { return fn1(); }());</p> <p>// New output const fn0 = () => 0; const fn1 = (() => 1); console.log(fn0, (function() { return fn1(); })()); </code></pre></p> <p>Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.</p> </li> <li> <p>Update Go from 1.23.10 to 1.23.12 (<a href="https://redirect.github.com/evanw/esbuild/issues/4257">#4257</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4258">#4258</a>)</p> <p>This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.</p> </li> </ul> <h2>v0.25.8</h2> <ul> <li> <p>Fix another TypeScript parsing edge case (<a href="https://redirect.github.com/evanw/esbuild/issues/4248">#4248</a>)</p> <p>This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the <code>?:</code> operator. The regression specifically involves parsing an arrow function containing a <code>#private</code> identifier inside the middle of a <code>?:</code> ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG-2022.md">esbuild's changelog</a>.</em></p> <blockquote> <h1>Changelog: 2022</h1> <p>This changelog documents all esbuild versions published in the year 2022 (versions 0.14.11 through 0.16.12).</p> <h2>0.16.12</h2> <ul> <li> <p>Loader defaults to <code>js</code> for extensionless files (<a href="https://redirect.github.com/evanw/esbuild/issues/2776">#2776</a>)</p> <p>Certain packages contain files without an extension. For example, the <code>yargs</code> package contains the file <code>yargs/yargs</code> which has no extension. Node, Webpack, and Parcel can all understand code that imports <code>yargs/yargs</code> because they assume that the file is JavaScript. However, esbuild was previously unable to understand this code because it relies on the file extension to tell it how to interpret the file. With this release, esbuild will now assume files without an extension are JavaScript files. This can be customized by setting the loader for <code>""</code> (the empty string, representing files without an extension) to another loader. For example, if you want files without an extension to be treated as CSS instead, you can do that like this:</p> <ul> <li> <p>CLI:</p> <pre><code>esbuild --bundle --loader:=css </code></pre> </li> <li> <p>JS:</p> <pre lang="js"><code>esbuild.build({ bundle: true, loader: { '': 'css' }, }) </code></pre> </li> <li> <p>Go:</p> <pre lang="go"><code>api.Build(api.BuildOptions{ Bundle: true, Loader: map[string]api.Loader{"": api.LoaderCSS}, }) </code></pre> </li> </ul> <p>In addition, the <code>"type"</code> field in <code>package.json</code> files now only applies to files with an explicit <code>.js</code>, <code>.jsx</code>, <code>.ts</code>, or <code>.tsx</code> extension. Previously it was incorrectly applied by esbuild to all files that had an extension other than <code>.mjs</code>, <code>.mts</code>, <code>.cjs</code>, or <code>.cts</code> including extensionless files. So for example an extensionless file in a <code>"type": "module"</code> package is now treated as CommonJS instead of ESM.</p> </li> </ul> <h2>0.16.11</h2> <ul> <li> <p>Avoid a syntax error in the presence of direct <code>eval</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/2761">#2761</a>)</p> <p>The behavior of nested <code>function</code> declarations in JavaScript depends on whether the code is run in strict mode or not. It would be problematic if esbuild preserved nested <code>function</code> declarations in its output because then the behavior would depend on whether the output was run in strict mode or not instead of respecting the strict mode behavior of the original source code. To avoid this, esbuild transforms nested <code>function</code> declarations to preserve the intended behavior of the original source code regardless of whether the output is run in strict mode or not:</p> <pre lang="js"><code>// Original code if (true) { function foo() {} console.log(!!foo) foo = null console.log(!!foo) } </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/195e05c16f03a341390feef38b8ebf17d3075e14"><code>195e05c</code></a> publish 0.25.9 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/3dac33f2a2ba60387fb9aaca96b3e80b9e0512e0"><code>3dac33f</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3131">#3131</a>, fix <a href="https://redirect.github.com/evanw/esbuild/issues/3663">#3663</a>: yarnpnp + windows + D drive</li> <li><a href="https://github.com/evanw/esbuild/commit/0f2c5c8c11dc3fa2a4e9e82df202d0b607e59de4"><code>0f2c5c8</code></a> mock fs now supports multiple volumes on windows</li> <li><a href="https://github.com/evanw/esbuild/commit/100a51e791ce714a1a90557bc9e5133fa0d38692"><code>100a51e</code></a> split out yarnpnp snapshot tests</li> <li><a href="https://github.com/evanw/esbuild/commit/13aace38bd1243e440061d1611e90a46ef55029c"><code>13aace3</code></a> remove <code>C:</code> assumption from windows snapshot tests</li> <li><a href="https://github.com/evanw/esbuild/commit/f1f413f18bce15a53fa4251f11a4747be94075e0"><code>f1f413f</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4252">#4252</a>: preserve parentheses around functions</li> <li><a href="https://github.com/evanw/esbuild/commit/1bc809190bdb68ad27fc0a6e6d385b4f635c90e2"><code>1bc8091</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4257">#4257</a>, close <a href="https://redirect.github.com/evanw/esbuild/issues/4258">#4258</a>: go 1.23.10 => 1.23.12</li> <li><a href="https://github.com/evanw/esbuild/commit/bc52135d02f794f28777c8e00db91997e0d98cab"><code>bc52135</code></a> move the go compiler version to <code>go.version</code></li> <li><a href="https://github.com/evanw/esbuild/commit/a0af5d1037c6e2509531151d153e875093f426b6"><code>a0af5d1</code></a> makefile: use <code>ESBUILD_VERSION</code> consistently</li> <li><a href="https://github.com/evanw/esbuild/commit/8c71947edbe5a158fec3a6d1cbfea1e8d5cdee70"><code>8c71947</code></a> publish 0.25.8 to npm</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.14.22...v0.25.9">compare view</a></li> </ul> </details> <br /> Updates `@angular-devkit/build-angular` from 13.3.11 to 20.3.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/angular/angular-cli/releases"><code>@angular-devkit/build-angular</code>'s releases</a>.</em></p> <blockquote> <h2>20.3.7</h2> <h3><code>@angular-devkit/schematics</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/a31533cf492048f62a41b9c09e53779269ee172d"><img src="https://img.shields.io/badge/a31533cf4-fix-green" alt="fix - a31533cf4" /></a></td> <td>respect <code>--force</code> option when schematic contains <code>host.create</code></td> </tr> </tbody> </table> <h3><code>@angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/8cdda111cc0b343aa5eb6a7ccbad93302a543226"><img src="https://img.shields.io/badge/8cdda111c-fix-green" alt="fix - 8cdda111c" /></a></td> <td>resolve Angular locale data namespace in esbuild</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/5847ccc545e54eb77a78b2435db7970faf748156"><img src="https://img.shields.io/badge/5847ccc54-fix-green" alt="fix - 5847ccc54" /></a></td> <td>update <code>vite</code> to <code>7.11.1</code></td> </tr> </tbody> </table> <h3><code>@angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/3a28fb6a13061215b881c49232db979fc3c2f641"><img src="https://img.shields.io/badge/3a28fb6a1-fix-green" alt="fix - 3a28fb6a1" /></a></td> <td>correctly handle routes with matrix parameters</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/5db6d64870c7ce0b883722a07c828946b7d2217d"><img src="https://img.shields.io/badge/5db6d6487-fix-green" alt="fix - 5db6d6487" /></a></td> <td>ensure server-side navigation triggers a redirect</td> </tr> </tbody> </table> <h2>20.3.6</h2> <h3><code>@angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/5271547c80662de10cb3bcb648779a83f6efedfb"><img src="https://img.shields.io/badge/5271547c8-fix-green" alt="fix - 5271547c8" /></a></td> <td>prevent malicious URL from overriding host</td> </tr> </tbody> </table> <h2>20.3.5</h2> <h3><code>@angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/7f7140680b75ff6b41f7f04349fe10cd928f1a23"><img src="https://img.shields.io/badge/7f7140680-fix-green" alt="fix - 7f7140680" /></a></td> <td>cleanup karma temporary directory after process exit</td> </tr> </tbody> </table> <h2>20.3.4</h2> <h3><code>@schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/c94bf7ff0845fe325c39737057ff1ed4ea553011"><img src="https://img.shields.io/badge/c94bf7ff0-fix-green" alt="fix - c94bf7ff0" /></a></td> <td>Out of the box support for PM2</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/465436c9fa21173befe5e39b61afb7f29435c2aa"><img src="https://img.shields.io/badge/465436c9f-fix-green" alt="fix - 465436c9f" /></a></td> <td>use bracket notation for <code>process.env['pm_id']</code></td> </tr> </tbody> </table> <h3><code>@angular-devkit/build-angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/bc6b631146c719a337c937e95c7cc5ebca29254b"><img src="https://img.shields.io/badge/bc6b63114-fix-green" alt="fix - bc6b63114" /></a></td> <td>mark <code>InjectionToken</code> as pure for improved tree-shaking</td> </tr> </tbody> </table> <h3><code>@angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/e510ff828f033478d8e1720050a7b3d75d551e16"><img src="https://img.shields.io/badge/e510ff828-fix-green" alt="fix - e510ff828" /></a></td> <td>mark <code>InjectionToken</code> as pure for improved tree-shaking</td> </tr> </tbody> </table> <h2>20.3.3</h2> <h3><code>@schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/b7f92da7835c14b568d07dfb3313802704f28cfd"><img src="https://img.shields.io/badge/b7f92da78-fix-green" alt="fix - b7f92da78" /></a></td> <td>add <code>__screenshots__/</code> to <code>.gitignore</code></td> </tr> </tbody> </table> <h3><code>@angular/ssr</code></h3> <p>| Commit | Description |</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/angular/angular-cli/blob/main/CHANGELOG.md"><code>@angular-devkit/build-angular</code>'s changelog</a>.</em></p> <blockquote> <h1>20.3.7 (2025-10-22)</h1> <h3><code>@angular-devkit/schematics</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/a31533cf492048f62a41b9c09e53779269ee172d">a31533cf4</a></td> <td>fix</td> <td>respect <code>--force</code> option when schematic contains <code>host.create</code></td> </tr> </tbody> </table> <h3><code>@angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/8cdda111cc0b343aa5eb6a7ccbad93302a543226">8cdda111c</a></td> <td>fix</td> <td>resolve Angular locale data namespace in esbuild</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/5847ccc545e54eb77a78b2435db7970faf748156">5847ccc54</a></td> <td>fix</td> <td>update <code>vite</code> to <code>7.11.1</code></td> </tr> </tbody> </table> <h3><code>@angular/ssr</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/3a28fb6a13061215b881c49232db979fc3c2f641">3a28fb6a1</a></td> <td>fix</td> <td>correctly handle routes with matrix parameters</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/5db6d64870c7ce0b883722a07c828946b7d2217d">5db6d6487</a></td> <td>fix</td> <td>ensure server-side navigation triggers a redirect</td> </tr> </tbody> </table> <!-- raw HTML omitted --> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <h1>21.0.0-next.8 (2025-10-15)</h1> <h3><code>@schematics/angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/ede5e52bc701c42948bd98826cd4fa901350015c">ede5e52bc</a></td> <td>feat</td> <td>add <code>include</code> option to jasmine-to-vitest schematic</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/d0d2a17b8adb2c1ce6eee70494f5d2298622c40e">d0d2a17b8</a></td> <td>feat</td> <td>add Jasmine spy API transformations to jasmine-to-vitest schematic</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/e7d955bedd5ca6957903cb73f8ebe06823a808da">e7d955bed</a></td> <td>feat</td> <td>add matcher transformations to jasmine-to-vitest schematic</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/629f5cb181fee562645baf02b44ebb3b39f3fb06">629f5cb18</a></td> <td>feat</td> <td>add misc transformations to jasmine-to-vitest schematic</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/58474ec7dd85fc34639c138d9b8d545affb50e3e">58474ec7d</a></td> <td>feat</td> <td>introduce initial jasmine-to-vitest unit test refactor schematic</td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/8f0f6a5f113ffc9e81d99eeeba71f8054e2d3686">8f0f6a5f1</a></td> <td>fix</td> <td>add migration to update <code>moduleResolution</code> to <code>bundler</code></td> </tr> <tr> <td><a href="https://github.com/angular/angular-cli/commit/f35b9f3310995b05d501f2abaec58dcd283e3aa0">f35b9f331</a></td> <td>fix</td> <td>improve comment preservation in jasmine-to-vitest</td> </tr> </tbody> </table> <h3><code>@angular-devkit/build-angular</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/angular/angular-cli/commit/53899511afe5665541984085914a313390af6ce2">53899511a</a></td> <td>fix</td> <td>expand <code>jest</code> and <code>jest-environment-jsdom</code> to allow version 30</td> </tr> </tbody> </table> <h3><code>@angular/build</code></h3> <table> <thead> <tr> <th>Commit</th> <th>Type</th> <th>Description</th> </tr> </thead> </table> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/angular/angular-cli/commit/5ad69a5ea9fc225e4a2683cdd71635b355af68c7"><code>5ad69a5</code></a> release: cut the v20.3.7 release</li> <li><a href="https://github.com/angular/angular-cli/commit/fdeff176f95c92b53cd78e6a174ef81a533c3d0c"><code>fdeff17</code></a> refactor(<code>@schematics/angular</code>): add trailing commas and remove leading commas ...</li> <li><a href="https://github.com/angular/angular-cli/commit/3620d3219dcffc7cb04648dac368639caabd2f0e"><code>3620d32</code></a> docs: update missing developer doc link</li> <li><a href="https://github.com/angular/angular-cli/commit/6f399cc4f6671b7c1bc0b005d325f1bdc703df2d"><code>6f399cc</code></a> build: update dependency rules_nodejs to v6.6.0</li> <li><a href="https://github.com/angular/angular-cli/commit/a31533cf492048f62a41b9c09e53779269ee172d"><code>a31533c</code></a> fix(<code>@angular-devkit/schematics</code>): respect <code>--force</code> option when schematic cont...</li> <li><a href="https://github.com/angular/angular-cli/commit/72bc4da23caf611cbc6b26750564dc0801d3ed9a"><code>72bc4da</code></a> build: update cross-repo angular dependencies</li> <li><a href="https://github.com/angular/angular-cli/commit/5847ccc545e54eb77a78b2435db7970faf748156"><code>5847ccc</code></a> fix(<code>@angular/build</code>): update <code>vite</code> to <code>7.11.1</code></li> <li><a href="https://github.com/angular/angular-cli/commit/bd222df3519660bfd0f3aad2f9058bc031236acd"><code>bd222df</code></a> build: update dependency node to v22.21.0</li> <li><a href="https://github.com/angular/angular-cli/commit/3c8522b4e9f4120ff9fbf8c297df1afc1489ca1c"><code>3c8522b</code></a> build: update rules_browsers digest to 6a699bf</li> <li><a href="https://github.com/angular/angular-cli/commit/c47e9a8ddde0bd02e9bde4c1eb5200772b23b782"><code>c47e9a8</code></a> build: set <code>include_npm</code> to <code>true</code></li> <li>Additional commits viewable in <a href="https://github.com/angular/angular-cli/compare/13.3.11...20.3.7">compare view</a></li> </ul> </details> <br /> Updates `ng-packagr` from 13.3.1 to 20.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ng-packagr/ng-packagr/releases">ng-packagr's releases</a>.</em></p> <blockquote> <h2>20.3.0</h2> <ul> <li>No visible changes</li> </ul> <h2>20.2.0</h2> <h3>Features</h3> <ul> <li>Add support for TypeScript 5.9</li> </ul> <h2>20.2.0-rc.0</h2> <p>No release notes provided.</p> <h2>20.1.0</h2> <h3>Bug Fixes</h3> <ul> <li>prevent 'Unexpected non-whitespace character' error (<a href="https://github.com/ng-packagr/ng-packagr/commit/dfb51b2da3d9c02cdb9e9bfa0bfe2547707e41c0">dfb51b2</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3080">#3080</a></li> </ul> <h2>20.1.0-rc.0</h2> <h3>Bug Fixes</h3> <ul> <li>prevent 'Unexpected non-whitespace character' error (<a href="https://github.com/ng-packagr/ng-packagr/commit/dfb51b2da3d9c02cdb9e9bfa0bfe2547707e41c0">dfb51b2</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3080">#3080</a></li> </ul> <h2>20.0.1</h2> <h3>Bug Fixes</h3> <ul> <li>prevent 'Unexpected non-whitespace character' error (<a href="https://github.com/ng-packagr/ng-packagr/commit/d2701faa800eab29c3419835810f1865eb97e650">d2701fa</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3080">#3080</a></li> </ul> <h2>20.0.0</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>Node.js versions from 22.0 to 22.10 are no longer supported</li> <li>Node.js v18 is no longer supported</li> <li>TypeScript versions less than 5.8 are no longer supported.</li> </ul> <h3>Features</h3> <ul> <li>expand browser support to widely available Baseline (<a href="https://github.com/ng-packagr/ng-packagr/commit/94f7fbeb3300e9e930a51740226d91b8bd990394">94f7fbe</a>)</li> <li>add DTS bundles for entry-points (<a href="https://github.com/ng-packagr/ng-packagr/commit/ca9d568838704d70bc64c2832d1ecfbe8536b627">ca9d568</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/139">#139</a></li> <li>support Angular version 20 (<a href="https://github.com/ng-packagr/ng-packagr/commit/cebe0608bc17968bf7c946b972dec5e09b12b3fe">cebe060</a>)</li> <li>drop support for TypeScript older than 5.8 (<a href="https://github.com/ng-packagr/ng-packagr/commit/a8255ce73d69375e0f8eed14a9e5bc38a673494a">a8255ce</a>)</li> <li>support Sass package importers (<a href="https://github.com/ng-packagr/ng-packagr/commit/f767d3cff7bf521e188a662472edc4524555e834">f767d3c</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>correctly resolve SCSS resources from nested paths (<a href="https://github.com/ng-packagr/ng-packagr/commit/f34a73df3071499ce137505ffd0ea4a80fb35aa5">f34a73d</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3006">#3006</a></li> <li>correctly update reference to bin (<a href="https://github.com/ng-packagr/ng-packagr/commit/e73db8e0d27a8c57ba65a904cdb15e624a26a00b">e73db8e</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3062">#3062</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ng-packagr/ng-packagr/blob/20.3.0/CHANGELOG.md">ng-packagr's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/ng-packagr/ng-packagr/compare/20.2.0...20.3.0">20.3.0</a> (2025-09-10)</h2> <ul> <li>No visible changes</li> </ul> <h2><a href="https://github.com/ng-packagr/ng-packagr/compare/20.2.0-rc.0...20.2.0">20.2.0</a> (2025-08-20)</h2> <h3>Features</h3> <ul> <li>Add support for TypeScript 5.9</li> </ul> <h2><a href="https://github.com/ng-packagr/ng-packagr/compare/19.2.0...20.0.0">20.2.0-next.0</a> (2025-07-16)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>Node.js versions from 22.0 to 22.10 are no longer supported</li> <li>Node.js v18 is no longer supported</li> <li>TypeScript versions less than 5.8 are no longer supported.</li> </ul> <h3>Features</h3> <ul> <li>add DTS bundles for entry-points (<a href="https://github.com/ng-packagr/ng-packagr/commit/ca9d568838704d70bc64c2832d1ecfbe8536b627">ca9d568</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/139">#139</a></li> <li>drop support for TypeScript older than 5.8 (<a href="https://github.com/ng-packagr/ng-packagr/commit/a8255ce73d69375e0f8eed14a9e5bc38a673494a">a8255ce</a>)</li> <li>expand browser support to widely available Baseline (<a href="https://github.com/ng-packagr/ng-packagr/commit/94f7fbeb3300e9e930a51740226d91b8bd990394">94f7fbe</a>)</li> <li>support Angular version 20 (<a href="https://github.com/ng-packagr/ng-packagr/commit/cebe0608bc17968bf7c946b972dec5e09b12b3fe">cebe060</a>)</li> <li>support Sass package importers (<a href="https://github.com/ng-packagr/ng-packagr/commit/f767d3cff7bf521e188a662472edc4524555e834">f767d3c</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>correctly resolve SCSS resources from nested paths (<a href="https://github.com/ng-packagr/ng-packagr/commit/f34a73df3071499ce137505ffd0ea4a80fb35aa5">f34a73d</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3006">#3006</a></li> <li>correctly update reference to bin (<a href="https://github.com/ng-packagr/ng-packagr/commit/e73db8e0d27a8c57ba65a904cdb15e624a26a00b">e73db8e</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3062">#3062</a></li> <li>disable emitting empty chunk warning (<a href="https://github.com/ng-packagr/ng-packagr/commit/638c107b2a2265223f18aef6d9c8f10ea70a9377">638c107</a>)</li> <li>disable TypeScript <code>composite</code> option with Angular compiler (<a href="https://github.com/ng-packagr/ng-packagr/commit/5dfbdba5c67ea759cfc3546a09a80b212a7db465">5dfbdba</a>)</li> <li>ensure in package <code>.browserslistrc</code> is correctly resolved (<a href="https://github.com/ng-packagr/ng-packagr/commit/14ed50dc9b1db91dece66e294103bf3f1b1a1523">14ed50d</a>)</li> <li>prevent 'Unexpected non-whitespace character' error (<a href="https://github.com/ng-packagr/ng-packagr/commit/dfb51b2da3d9c02cdb9e9bfa0bfe2547707e41c0">dfb51b2</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3080">#3080</a></li> <li>prevent nested CSS in components (<a href="https://github.com/ng-packagr/ng-packagr/commit/e2d9ef006837392867889aa78587c907c24569f6">e2d9ef0</a>)</li> <li>remove Node.js v18 support (<a href="https://github.com/ng-packagr/ng-packagr/commit/69d9d9ee74c4e6b25eda3768b25501b1494002cc">69d9d9e</a>)</li> <li>update min Node.js support to 20.19, 22.12, and 24.0 (<a href="https://github.com/ng-packagr/ng-packagr/commit/5a7eac4a74306f415c857e16ec6501a4d542868d">5a7eac4</a>)</li> <li>update minimum supported Node.js 22 version to 22.11.0 (<a href="https://github.com/ng-packagr/ng-packagr/commit/a836a71ccd753f425227c684fdfb017bfc017f8f">a836a71</a>)</li> </ul> <h3>Performance</h3> <ul> <li>optimize node deletion using <code>Set</code> (<a href="https://github.com/ng-packagr/ng-packagr/commit/a99785cbc7f6fc3fbec30cc5d7c3b9352836bfe5">a99785c</a>)</li> <li>prevent redundant entry-point builds in watch mode (<a href="https://github.com/ng-packagr/ng-packagr/commit/2f2668b51ca56cecbb3dbf163180338cbc14d9b6">2f2668b</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/2936">#2936</a></li> </ul> <h2><a href="https://github.com/ng-packagr/ng-packagr/compare/20.1.0-rc.0...20.1.0">20.1.0</a> (2025-07-09)</h2> <h3>Bug Fixes</h3> <ul> <li>prevent 'Unexpected non-whitespace character' error (<a href="https://github.com/ng-packagr/ng-packagr/commit/dfb51b2da3d9c02cdb9e9bfa0bfe2547707e41c0">dfb51b2</a>), closes <a href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3080">#3080</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/b67fdde0c731132f7f907f1a802bd258555de6d2"><code>b67fdde</code></a> docs: update changelog</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/f690572494e2e095ea2be5c531afbab54f1b96f3"><code>f690572</code></a> release: cut 20.3.0</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/ccb56c77d4287bccf296c6a1d7c1c14848a02758"><code>ccb56c7</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/eac01059ad75757dfdbfeb6f76ac1b67ff5b4181"><code>eac0105</code></a> release: cut 20.2.0</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/e4081490802c84477abc85c2ead4cbaff0084148"><code>e408149</code></a> build: update pnpm to v10.15.0</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/6dbc355d1e744d1ca2bed5f0f2382f1dd5938349"><code>6dbc355</code></a> Update package.json</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/8484b0b6644c9ef290d75a0f4aafda0841b1c5f6"><code>8484b0b</code></a> build: lock file maintenance</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/0f5c7d9c037cc3994eec46a86818cb9e862409e3"><code>0f5c7d9</code></a> build: update cross-repo angular dependencies</li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/1cf4ff216b1ed145936980532f41f35c3af9d230"><code>1cf4ff2</code></a> build: replace <code>file://</code> with <code>link://</code></li> <li><a href="https://github.com/ng-packagr/ng-packagr/commit/182e32033be28945cbf21f65482f528c64945cad"><code>182e320</code></a> build: update all non-major dependencies to v8.39.1</li> <li>Additional commits viewable in <a href="https://github.com/ng-packagr/ng-packagr/compare/v13.3.1...20.3.0">compare view</a></li> </ul> </details> <br /> Updates `ngx-build-plus` from 13.0.1 to 20.0.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/manfredsteyer/ngx-build-plus/commits">compare view</a></li> </ul> </details> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/zeppelin/network/alerts). </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
