dependabot[bot] opened a new pull request, #1023:
URL: https://github.com/apache/knox/pull/1023

   Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.1 and updates 
ancestor dependency 
[@angular-devkit/build-angular](https://github.com/angular/angular-cli). These 
dependencies need to be updated together.
   
   Updates `esbuild` from 0.14.22 to 0.25.1
   <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.1</h2>
   <ul>
   <li>
   <p>Fix incorrect paths in inline source maps (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4070";>#4070</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/4075";>#4075</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/4105";>#4105</a>)</p>
   <p>This fixes a regression from version 0.25.0 where esbuild didn't 
correctly resolve relative paths contained within source maps in inline 
<code>sourceMappingURL</code> data URLs. The paths were incorrectly being 
passed through as-is instead of being resolved relative to the source file 
containing the <code>sourceMappingURL</code> comment, which was due to the data 
URL not being a file URL. This regression has been fixed, and this case now has 
test coverage.</p>
   </li>
   <li>
   <p>Fix invalid generated source maps (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4080";>#4080</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/4082";>#4082</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/4104";>#4104</a>, <a 
href="https://redirect.github.com/evanw/esbuild/issues/4107";>#4107</a>)</p>
   <p>This release fixes a regression from version 0.24.1 that could cause 
esbuild to generate invalid source maps. Specifically under certain conditions, 
esbuild could generate a mapping with an out-of-bounds source index. It was 
introduced by code that attempted to improve esbuild's handling of 
&quot;null&quot; entries in source maps (i.e. mappings with a generated 
position but no original position). This regression has been fixed.</p>
   <p>This fix was contributed by <a 
href="https://github.com/jridgewell";><code>@​jridgewell</code></a>.</p>
   </li>
   <li>
   <p>Fix a regression with non-file source map paths (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4078";>#4078</a>)</p>
   <p>The format of paths in source maps that aren't in the <code>file</code> 
namespace was unintentionally changed in version 0.25.0. Path namespaces is an 
esbuild-specific concept that is optionally available for plugins to use to 
distinguish paths from <code>file</code> paths and from paths meant for other 
plugins. Previously the namespace was prepended to the path joined with a 
<code>:</code> character, but version 0.25.0 unintentionally failed to prepend 
the namespace. The previous behavior has been restored.</p>
   </li>
   <li>
   <p>Fix a crash with <code>switch</code> optimization (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4088";>#4088</a>)</p>
   <p>The new code in the previous release to optimize dead code in switch 
statements accidentally introduced a crash in the edge case where one or more 
switch case values include a function expression. This is because esbuild now 
visits the case values first to determine whether any cases are dead code, and 
then visits the case bodies once the dead code status is known. That triggered 
some internal asserts that guard against traversing the AST in an unexpected 
order. This crash has been fixed by changing esbuild to expect the new 
traversal ordering. Here's an example of affected code:</p>
   <pre lang="js"><code>switch (x) {
     case '':
       return y.map(z =&gt; z.value)
     case y.map(z =&gt; z.key).join(','):
       return []
   }
   </code></pre>
   </li>
   <li>
   <p>Update Go from 1.23.5 to 1.23.7 (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4076";>#4076</a>, <a 
href="https://redirect.github.com/evanw/esbuild/pull/4077";>#4077</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 reports from 
vulnerability scanners that detect which version of the Go compiler esbuild 
uses.</p>
   <p>This PR was contributed by <a 
href="https://github.com/MikeWillCook";><code>@​MikeWillCook</code></a>.</p>
   </li>
   </ul>
   <h2>v0.25.0</h2>
   <p><strong>This release deliberately contains backwards-incompatible 
changes.</strong> To avoid automatically picking up releases like this, you 
should either be pinning the exact version of <code>esbuild</code> in your 
<code>package.json</code> file (recommended) or be using a version range syntax 
that only accepts patch upgrades such as <code>^0.24.0</code> or 
<code>~0.24.0</code>. See npm's documentation about <a 
href="https://docs.npmjs.com/cli/v6/using-npm/semver/";>semver</a> for more 
information.</p>
   <ul>
   <li>
   <p>Restrict access to esbuild's development server (<a 
href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99";>GHSA-67mh-4wv8-2f99</a>)</p>
   <p>This change addresses esbuild's first security vulnerability report. 
Previously esbuild set the <code>Access-Control-Allow-Origin</code> header to 
<code>*</code> to allow esbuild's development server to be flexible in how it's 
used for development. However, this allows the websites you visit to make HTTP 
requests to esbuild's local development server, which gives read-only access to 
your source code if the website were to fetch your source code's specific URL. 
You can read more information in <a 
href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99";>the
 report</a>.</p>
   <p>Starting with this release, <a 
href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS";>CORS</a> will now 
be disabled, and requests will now be denied if the host does not match the one 
provided to <code>--serve=</code>. The default host is <code>0.0.0.0</code>, 
which refers to all of the IP addresses that represent the local machine (e.g. 
both <code>127.0.0.1</code> and <code>192.168.0.1</code>). If you want to 
customize anything about esbuild's development server, you can <a 
href="https://esbuild.github.io/api/#serve-proxy";>put a proxy in front of 
esbuild</a> and modify the incoming and/or outgoing requests.</p>
   <p>In addition, the <code>serve()</code> API call has been changed to return 
an array of <code>hosts</code> instead of a single <code>host</code> string. 
This makes it possible to determine all of the hosts that esbuild's development 
server will accept.</p>
   <p>Thanks to <a 
href="https://github.com/sapphi-red";><code>@​sapphi-red</code></a> for 
reporting this issue.</p>
   </li>
   <li>
   <p>Delete output files when a build fails in watch mode (<a 
href="https://redirect.github.com/evanw/esbuild/issues/3643";>#3643</a>)</p>
   <p>It has been requested for esbuild to delete files when a build fails in 
watch mode. Previously esbuild left the old files in place, which could cause 
people to not immediately realize that the most recent build failed. With this 
release, esbuild will now delete all output files if a rebuild fails. Fixing 
the build error and triggering another rebuild will restore all output files 
again.</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>&quot;&quot;</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{&quot;&quot;: api.LoaderCSS},
   })
   </code></pre>
   </li>
   </ul>
   <p>In addition, the <code>&quot;type&quot;</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>&quot;type&quot;: 
&quot;module&quot;</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/6bfc1c13b4d986b86e8bc2035f00c337b0c1d007";><code>6bfc1c1</code></a>
 publish 0.25.1 to npm</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/f9b39529a328f513cd73b36e8488a4a624df5c36";><code>f9b3952</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4078";>#4078</a>: 
prepend namespaces to source map paths</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/ccf3dd7889e7765a1d6f1596ada0f22b320d7174";><code>ccf3dd7</code></a>
 add &quot;contributed by&quot; in changelog</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/48cd7a9e26452f30345eb10a3d471f26de56d1ec";><code>48cd7a9</code></a>
 Update Go from 1.23.5 to 1.23.7 (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4077";>#4077</a>)</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/1f04fa4dc85ef4b1fa01e1938fa127a2cc170c35";><code>1f04fa4</code></a>
 fix absolute windows paths in source maps</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/9ca03f6ea8aa4c418cb66da876139eef4e2abb26";><code>9ca03f6</code></a>
 also add test case from <a 
href="https://redirect.github.com/evanw/esbuild/issues/4075";>#4075</a></li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/2f244c085a970b873e579ac2a0b1c054cf9c66ea";><code>2f244c0</code></a>
 add test case from <a 
href="https://redirect.github.com/evanw/esbuild/issues/4104";>#4104</a></li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/1dde994de8858d71fe0e9e128d22142b3c9d7de6";><code>1dde994</code></a>
 fix incorrect test names</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/9f008c59b628b65c00878d7673ed24317e911666";><code>9f008c5</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4070";>#4070</a>: 
<code>file</code> namespace for <code>sourceMappingURL</code></li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/cbd5eb8c82089619f235b96be7b7b18c06fc10c0";><code>cbd5eb8</code></a>
 release notes and tests for <a 
href="https://redirect.github.com/evanw/esbuild/issues/4082";>#4082</a></li>
   <li>Additional commits viewable in <a 
href="https://github.com/evanw/esbuild/compare/v0.14.22...v0.25.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@angular-devkit/build-angular` from 13.3.11 to 19.2.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>19.2.7</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/7f1e8c6777dbf60e2a3864774a8c4140bb76f640";><img
 src="https://img.shields.io/badge/7f1e8c677-fix-green"; alt="fix - 7f1e8c677" 
/></a></td>
   <td>include component test metadata in development builds</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/74cd4edd5bbf5ae03a910be036f6e7fa7db35642";><img
 src="https://img.shields.io/badge/74cd4edd5-fix-green"; alt="fix - 74cd4edd5" 
/></a></td>
   <td>skip normalization of relative externals</td>
   </tr>
   </tbody>
   </table>
   <h2>19.2.6</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/e5aec562feb0d293e88d560ea4ec0720e90dbc11";><img
 src="https://img.shields.io/badge/e5aec562f-fix-green"; alt="fix - e5aec562f" 
/></a></td>
   <td>properly resolve relative schematics when executed from a nested 
directory</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/76cfd364a8b398153c09ce29c5672272ac0bce23";><img
 src="https://img.shields.io/badge/76cfd364a-fix-green"; alt="fix - 76cfd364a" 
/></a></td>
   <td>correctly handle  <code>false</code> value in server option</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/d69188c6be2b851e3dfb84e2bd8d209062d7a283";><img
 src="https://img.shields.io/badge/d69188c6b-fix-green"; alt="fix - d69188c6b" 
/></a></td>
   <td>update vite to 6.2.4 due to a security issues</td>
   </tr>
   </tbody>
   </table>
   <h2>19.2.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/20455e2a64558fcbb11906cb414a99d3976645d6";><img
 src="https://img.shields.io/badge/20455e2a6-fix-green"; alt="fix - 20455e2a6" 
/></a></td>
   <td>correct handling of response/request errors</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/32b1dcd91b9f351bb6baa54f52c81c465185e01b";><img
 src="https://img.shields.io/badge/32b1dcd91-fix-green"; alt="fix - 32b1dcd91" 
/></a></td>
   <td>handle undefined <code>getOrCreateAngularServerApp</code> during error 
compilation</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/7552a9fec971f64ff27d78754ed13654e9a56b43";><img
 src="https://img.shields.io/badge/7552a9fec-fix-green"; alt="fix - 7552a9fec" 
/></a></td>
   <td>normalize karma asset paths before lookup</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/1eb5b43575ab9908122606b94c0aaa53718678aa";><img
 src="https://img.shields.io/badge/1eb5b4357-fix-green"; alt="fix - 1eb5b4357" 
/></a></td>
   <td>update vite to 6.2.3</td>
   </tr>
   </tbody>
   </table>
   <h2>v19.2.4</h2>
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
   <h1>19.2.4 (2025-03-19)</h1>
   <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/0a4e96bda054876332c5603a3bc972c3ec1eb0bf";><img
 src="https://img.shields.io/badge/0a4e96bda-fix-green"; alt="fix - 0a4e96bda" 
/></a></td>
   <td>replace <code>@angular/platform-browser-dynamic</code> with 
<code>@angular/platform-browser</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/b0b643e46f1009be66423fdff568d042717c5e2b";><img
 src="https://img.shields.io/badge/b0b643e46-fix-green"; alt="fix - b0b643e46" 
/></a></td>
   <td>ensure errors for missing component resources</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/2cd763e893788cfb38260d48eef40afa574a6a70";><img
 src="https://img.shields.io/badge/2cd763e89-fix-green"; alt="fix - 2cd763e89" 
/></a></td>
   <td>ensure relative karma stack traces for test failures</td>
   </tr>
   </tbody>
   </table>
   <h2>v19.2.3</h2>
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
   <h1>19.2.3 (2025-03-13)</h1>
   <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/5a739820be5cc7cb25e159a1f2283db92e741f78";><img
 src="https://img.shields.io/badge/5a739820b-fix-green"; alt="fix - 5a739820b" 
/></a></td>
   <td>update babel packages</td>
   </tr>
   </tbody>
   </table>
   <h2>v19.2.2</h2>
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></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>19.2.7 (2025-04-09)</h1>
   <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/7f1e8c6777dbf60e2a3864774a8c4140bb76f640";>7f1e8c677</a></td>
   <td>fix</td>
   <td>include component test metadata in development builds</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/74cd4edd5bbf5ae03a910be036f6e7fa7db35642";>74cd4edd5</a></td>
   <td>fix</td>
   <td>skip normalization of relative externals</td>
   </tr>
   </tbody>
   </table>
   <!-- raw HTML omitted -->
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
   <h1>18.2.18 (2025-04-09)</h1>
   <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/4245ca7b434e0aa859c805c459ce50238601b940";>4245ca7b4</a></td>
   <td>fix</td>
   <td>update vite to 5.4.17</td>
   </tr>
   </tbody>
   </table>
   <!-- raw HTML omitted -->
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
   <h1>17.3.16 (2025-04-09)</h1>
   <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/5aa53b40c34e1555548d201f840a5ffc01f14601";>5aa53b40c</a></td>
   <td>fix</td>
   <td>remove undici from dependencies</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/fce61564ded8c476ef1c257d2844b1a1560af732";>fce61564d</a></td>
   <td>fix</td>
   <td>update vite to 5.4.17</td>
   </tr>
   </tbody>
   </table>
   <!-- raw HTML omitted -->
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
   <h1>20.0.0-next.4 (2025-04-02)</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/1e137ca848839402bc214fbccdc04243862d01d0";>1e137ca84</a></td>
   <td>feat</td>
   <td>add migration to update <code>moduleResolution</code> to 
<code>bundler</code></td>
   </tr>
   </tbody>
   </table>
   <h3><code>@​angular-devkit/schematics</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/e0b1bed229c8ad4b8bed54e1023df466db555ad5";><code>e0b1bed</code></a>
 release: cut the v19.2.7 release</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/71537c87d2ccf542ad458e5d80bc8bea78ebf624";><code>71537c8</code></a>
 build: update vite to 6.2.5</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/f4021e669f15201ebe14d93677e6fd2745d34dfa";><code>f4021e6</code></a>
 build: update <code>beasties</code> to <code>0.3.2</code></li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/74cd4edd5bbf5ae03a910be036f6e7fa7db35642";><code>74cd4ed</code></a>
 fix(<code>@​angular/build</code>): skip normalization of relative 
externals</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/7f1e8c6777dbf60e2a3864774a8c4140bb76f640";><code>7f1e8c6</code></a>
 fix(<code>@​angular/build</code>): include component test metadata in 
development builds</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/f3d61595be6aebf03fb1750b67de3fa0516c2543";><code>f3d6159</code></a>
 release: cut the v19.2.6 release</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/d69188c6be2b851e3dfb84e2bd8d209062d7a283";><code>d69188c</code></a>
 fix(<code>@​angular/build</code>): update vite to 6.2.4 due to a security 
issues</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/61ee961099a9e432fd8cefc2d0b4200f80b9a81d";><code>61ee961</code></a>
 build: setup <code>rules_esbuild</code> in preparation for 
<code>devinfra</code> update</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/859af4d0f49d1a31106d9c352b05f102809b22c7";><code>859af4d</code></a>
 ci: update to latest dev-infra action versions</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/e5aec562feb0d293e88d560ea4ec0720e90dbc11";><code>e5aec56</code></a>
 fix(<code>@​angular-devkit/schematics</code>): properly resolve relative 
schematics when ex...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/angular/angular-cli/compare/13.3.11...19.2.7";>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/knox/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: dev-unsubscr...@knox.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to