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

   Bumps [esbuild](https://github.com/evanw/esbuild) to 0.28.1 and updates 
ancestor dependencies [esbuild](https://github.com/evanw/esbuild), 
[@angular/build](https://github.com/angular/angular-cli) and 
[ng-packagr](https://github.com/ng-packagr/ng-packagr). These dependencies need 
to be updated together.
   
   Updates `esbuild` from 0.27.7 to 0.28.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.28.1</h2>
   <ul>
   <li>
   <p>Disallow <code>\</code> in local development server HTTP requests (<a 
href="https://github.com/evanw/esbuild/security/advisories/GHSA-g7r4-m6w7-qqqr";>GHSA-g7r4-m6w7-qqqr</a>)</p>
   <p>This release fixes a security issue where HTTP requests to esbuild's 
local development server could traverse outside of the serve directory on 
Windows using a <code>\</code> backslash character. It happened due to the use 
of Go's <code>path.Clean()</code> function, which only handles Unix-style 
<code>/</code> characters. HTTP requests with paths containing <code>\</code> 
are no longer allowed.</p>
   <p>Thanks to <a 
href="https://github.com/dellalibera";><code>@​dellalibera</code></a> for 
reporting this issue.</p>
   </li>
   <li>
   <p>Add integrity checks to the Deno API (<a 
href="https://github.com/evanw/esbuild/security/advisories/GHSA-gv7w-rqvm-qjhr";>GHSA-gv7w-rqvm-qjhr</a>)</p>
   <p>The previous release of esbuild added integrity checks to esbuild's npm 
install script. This release also adds integrity checks to esbuild's Deno 
install script. Now esbuild's Deno API will also fail with an error if the 
downloaded esbuild binary contains something other than the expected 
content.</p>
   <p>Note that esbuild's Deno API installs from 
<code>registry.npmjs.org</code> by default, but allows the 
<code>NPM_CONFIG_REGISTRY</code> environment variable to override this with a 
custom package registry. This change means that the esbuild executable served 
by <code>NPM_CONFIG_REGISTRY</code> must now match the expected content.</p>
   <p>Thanks to <a href="https://github.com/sondt99";><code>@​sondt99</code></a> 
for reporting this issue.</p>
   </li>
   <li>
   <p>Avoid inlining <code>using</code> and <code>await using</code> 
declarations (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4482";>#4482</a>)</p>
   <p>Previously esbuild's minifier sometimes incorrectly inlined 
<code>using</code> and <code>await using</code> declarations into subsequent 
uses of that declaration, which then fails to dispose of the resource 
correctly. This bug happened because inlining was done for <code>let</code> and 
<code>const</code> declarations by avoiding doing it for <code>var</code> 
declarations, which no longer worked when more declaration types were added. 
Here's an example:</p>
   <pre lang="js"><code>// Original code
   {
     using x = new Resource()
     x.activate()
   }
   <p>// Old output (with --minify)<br />
   new Resource().activate();</p>
   <p>// New output (with --minify)<br />
   {using e=new Resource;e.activate()}<br />
   </code></pre></p>
   </li>
   <li>
   <p>Fix module evaluation when an error is thrown (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4461";>#4461</a>, <a 
href="https://redirect.github.com/evanw/esbuild/pull/4467";>#4467</a>)</p>
   <p>If an error is thrown during module evaluation, esbuild previously didn't 
preserve the state of the module for subsequent module references. This was 
observable if <code>import()</code> or <code>require()</code> is used to import 
a module multiple times. The thrown error is supposed to be thrown by every 
call to <code>import()</code> or <code>require()</code>, not just the first. 
With this release, esbuild will now throw the same error every time you call 
<code>import()</code> or <code>require()</code> on a module that throws during 
its evaluation.</p>
   </li>
   <li>
   <p>Fix some edge cases around the <code>new</code> operator (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4477";>#4477</a>)</p>
   <p>Previously esbuild incorrectly printed certain edge cases involving 
complex expressions inside the target of a <code>new</code> expression 
(specifically an optional chain and/or a tagged template literal). The 
generated code for the <code>new</code> target was not correctly wrapped with 
parentheses, and either contained a syntax error or had different semantics. 
These edge cases have been fixed so that they now correctly wrap the 
<code>new</code> target in parentheses. Here is an example of some affected 
code:</p>
   <pre lang="js"><code>// Original code
   new (foo()`bar`)()
   new (foo()?.bar)()
   <p>// Old output<br />
   new foo()<code>bar</code>();<br />
   new (foo())?.bar();</p>
   <p></code></pre></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.md";>esbuild's 
changelog</a>.</em></p>
   <blockquote>
   <h2>0.28.1</h2>
   <ul>
   <li>
   <p>Disallow <code>\</code> in local development server HTTP requests (<a 
href="https://github.com/evanw/esbuild/security/advisories/GHSA-g7r4-m6w7-qqqr";>GHSA-g7r4-m6w7-qqqr</a>)</p>
   <p>This release fixes a security issue where HTTP requests to esbuild's 
local development server could traverse outside of the serve directory on 
Windows using a <code>\</code> backslash character. It happened due to the use 
of Go's <code>path.Clean()</code> function, which only handles Unix-style 
<code>/</code> characters. HTTP requests with paths containing <code>\</code> 
are no longer allowed.</p>
   <p>Thanks to <a 
href="https://github.com/dellalibera";><code>@​dellalibera</code></a> for 
reporting this issue.</p>
   </li>
   <li>
   <p>Add integrity checks to the Deno API (<a 
href="https://github.com/evanw/esbuild/security/advisories/GHSA-gv7w-rqvm-qjhr";>GHSA-gv7w-rqvm-qjhr</a>)</p>
   <p>The previous release of esbuild added integrity checks to esbuild's npm 
install script. This release also adds integrity checks to esbuild's Deno 
install script. Now esbuild's Deno API will also fail with an error if the 
downloaded esbuild binary contains something other than the expected 
content.</p>
   <p>Note that esbuild's Deno API installs from 
<code>registry.npmjs.org</code> by default, but allows the 
<code>NPM_CONFIG_REGISTRY</code> environment variable to override this with a 
custom package registry. This change means that the esbuild executable served 
by <code>NPM_CONFIG_REGISTRY</code> must now match the expected content.</p>
   <p>Thanks to <a href="https://github.com/sondt99";><code>@​sondt99</code></a> 
for reporting this issue.</p>
   </li>
   <li>
   <p>Avoid inlining <code>using</code> and <code>await using</code> 
declarations (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4482";>#4482</a>)</p>
   <p>Previously esbuild's minifier sometimes incorrectly inlined 
<code>using</code> and <code>await using</code> declarations into subsequent 
uses of that declaration, which then fails to dispose of the resource 
correctly. This bug happened because inlining was done for <code>let</code> and 
<code>const</code> declarations by avoiding doing it for <code>var</code> 
declarations, which no longer worked when more declaration types were added. 
Here's an example:</p>
   <pre lang="js"><code>// Original code
   {
     using x = new Resource()
     x.activate()
   }
   <p>// Old output (with --minify)<br />
   new Resource().activate();</p>
   <p>// New output (with --minify)<br />
   {using e=new Resource;e.activate()}<br />
   </code></pre></p>
   </li>
   <li>
   <p>Fix module evaluation when an error is thrown (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4461";>#4461</a>, <a 
href="https://redirect.github.com/evanw/esbuild/pull/4467";>#4467</a>)</p>
   <p>If an error is thrown during module evaluation, esbuild previously didn't 
preserve the state of the module for subsequent module references. This was 
observable if <code>import()</code> or <code>require()</code> is used to import 
a module multiple times. The thrown error is supposed to be thrown by every 
call to <code>import()</code> or <code>require()</code>, not just the first. 
With this release, esbuild will now throw the same error every time you call 
<code>import()</code> or <code>require()</code> on a module that throws during 
its evaluation.</p>
   </li>
   <li>
   <p>Fix some edge cases around the <code>new</code> operator (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4477";>#4477</a>)</p>
   <p>Previously esbuild incorrectly printed certain edge cases involving 
complex expressions inside the target of a <code>new</code> expression 
(specifically an optional chain and/or a tagged template literal). The 
generated code for the <code>new</code> target was not correctly wrapped with 
parentheses, and either contained a syntax error or had different semantics. 
These edge cases have been fixed so that they now correctly wrap the 
<code>new</code> target in parentheses. Here is an example of some affected 
code:</p>
   <pre lang="js"><code>// Original code
   new (foo()`bar`)()
   new (foo()?.bar)()
   <p>// Old output<br />
   new foo()<code>bar</code>();<br />
   new (foo())?.bar();<br />
   </code></pre></p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/evanw/esbuild/commit/bb9db84c02433fbe37b3509f53f9f3e3cc48725e";><code>bb9db84</code></a>
 publish 0.28.1 to npm</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/9ff053e53b8eeb990f59355dbea365277ac45ee2";><code>9ff053e</code></a>
 security: add integrity checks to the Deno API</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/0a9bf2135b67c7e28989a5ba19f0f000805a5ab5";><code>0a9bf21</code></a>
 enforce non-negative size in gzip parser</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/e2a1a7132058ee067fe736eac15f695861b8654e";><code>e2a1a71</code></a>
 security: forbid <code>\\</code> in local dev server requests</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/83a2cbfc35809f4fd5152da59572d7bed7739d78";><code>83a2cbf</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4482";>#4482</a>: 
don't inline <code>using</code> declarations</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/308ad745d824c77bc607603451b257d0f2fd9a38";><code>308ad74</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4471";>#4471</a>: 
renaming of nested <code>var</code> declarations</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/f013f5f99a015bce92ec48d49181d4ad3177b29b";><code>f013f5f</code></a>
 fix some typos</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/aafd6e48b1088336a5f5a17e930be7e840d43d8c";><code>aafd6e4</code></a>
 chore: fix some minor issues in comments (<a 
href="https://redirect.github.com/evanw/esbuild/issues/4462";>#4462</a>)</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/15300c30b5e22f7cfcbed850c246d35095658386";><code>15300c3</code></a>
 follow up: cjs evaluation fixes</li>
   <li><a 
href="https://github.com/evanw/esbuild/commit/1bda0c31d7697c0af44b3ab39b81e599e559a395";><code>1bda0c3</code></a>
 fix <a href="https://redirect.github.com/evanw/esbuild/issues/4461";>#4461</a>, 
fix <a href="https://redirect.github.com/evanw/esbuild/issues/4467";>#4467</a>: 
esm evaluation fixes</li>
   <li>Additional commits viewable in <a 
href="https://github.com/evanw/esbuild/compare/v0.27.7...v0.28.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@angular/build` from 21.2.19 to 22.0.8
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/angular/angular-cli/releases";>@​angular/build's 
releases</a>.</em></p>
   <blockquote>
   <h2>22.0.8</h2>
   <h3><code>@​angular/cli</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/41c356256525469a41ea72896b1ddff91a4e6e55";><img
 src="https://img.shields.io/badge/41c356256-fix-green"; alt="fix - 41c356256" 
/></a></td>
   <td>batch Prettier invocations during migration formatting</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/bc87c85c3c660e969cf77a493dc4ee58fd831214";><img
 src="https://img.shields.io/badge/bc87c85c3-fix-green"; alt="fix - bc87c85c3" 
/></a></td>
   <td>update MCP devserver tool names to conform to spec regex</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/5724bf632eba59eccdd941beae8aafad35ce003e";><img
 src="https://img.shields.io/badge/5724bf632-fix-green"; alt="fix - 5724bf632" 
/></a></td>
   <td>canonicalize drive letter casing for workspace root on Windows</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/b8bdbaa1ea1c58f061580bd58c015078f57c1530";><img
 src="https://img.shields.io/badge/b8bdbaa1e-fix-green"; alt="fix - b8bdbaa1e" 
/></a></td>
   <td>ensure import map integrity keys are valid URL-like specifiers</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/212a7bb21eca131f32fd7b4e7b5a9ab87f2bfded";><img
 src="https://img.shields.io/badge/212a7bb21-fix-green"; alt="fix - 212a7bb21" 
/></a></td>
   <td>favor istanbul coverage provider when browser testing is enabled</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/bc760b005e0dae10a2dfd31a7f0f772482305398";><img
 src="https://img.shields.io/badge/bc760b005-fix-green"; alt="fix - bc760b005" 
/></a></td>
   <td>preserve custom config options in runnerConfig for vitest</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/19cda7415693f36e911a736a32576110905b6600";><img
 src="https://img.shields.io/badge/19cda7415-fix-green"; alt="fix - 19cda7415" 
/></a></td>
   <td>remap metafile paths when workspace root is a symlink or junction</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/fdcc98c7912f45431268fdf66c8b132bd119bc27";><img
 src="https://img.shields.io/badge/fdcc98c79-perf-orange"; alt="perf - 
fdcc98c79" /></a></td>
   <td>skip semantic affected-file walk when type checking is disabled</td>
   </tr>
   </tbody>
   </table>
   <h2>22.0.7</h2>
   <h3><code>@​angular/cli</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/e85c10ccb551eeaf9ac7e819ee6eb095317b5032";><img
 src="https://img.shields.io/badge/e85c10ccb-fix-green"; alt="fix - e85c10ccb" 
/></a></td>
   <td>copy packageManager field and yarn config for temp installs</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/b87cafec04b24c2f4337ecfa00388197ab5003f0";><img
 src="https://img.shields.io/badge/b87cafec0-fix-green"; alt="fix - b87cafec0" 
/></a></td>
   <td>support resolving subproject dependencies in pnpm workspaces</td>
   </tr>
   </tbody>
   </table>
   <h2>22.0.6</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/df49966c6b8ec0c10b58fee18981fc2992ac071a";><img
 src="https://img.shields.io/badge/df49966c6-fix-green"; alt="fix - df49966c6" 
/></a></td>
   <td>fallback to build target preserveSymlinks option in karma runner</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/9906add5b722cca7f61488b367dd73545c6e13bc";><img
 src="https://img.shields.io/badge/9906add5b-fix-green"; alt="fix - 9906add5b" 
/></a></td>
   <td>prevent externalizing builder-injected i18n locale data</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/070155f6ead185d4b478d9034662d65b8bb86a23";><img
 src="https://img.shields.io/badge/070155f6e-fix-green"; alt="fix - 070155f6e" 
/></a></td>
   <td>strip all vite id prefixes from minified code with external 
dependencies</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/c9aa354b1de0c946ddc994191613bb809a799f81";><img
 src="https://img.shields.io/badge/c9aa354b1-fix-green"; alt="fix - c9aa354b1" 
/></a></td>
   <td>replace all route parameters when resolving relative redirects</td>
   </tr>
   </tbody>
   </table>
   <h2>22.0.5</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/862a380697db60cee8cf83e8fe20641db2a6aae1";><img
 src="https://img.shields.io/badge/862a38069-fix-green"; alt="fix - 862a38069" 
/></a></td>
   <td>remove unused app tsconfig outDir</td>
   </tr>
   </tbody>
   </table>
   <h3><code>@​angular/cli</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/f099e641c96a5932d81535e712af7044269b4788";><img
 src="https://img.shields.io/badge/f099e641c-fix-green"; alt="fix - f099e641c" 
/></a></td>
   <td>gracefully handle package manager errors in command handler</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/cf033ec48e2371655fbf6bcdb588c05aff2e6662";><img
 src="https://img.shields.io/badge/cf033ec48-fix-green"; alt="fix - cf033ec48" 
/></a></td>
   <td>respect release age policy in update bootstrapping logic</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/f75085f4b58ed61979a2901a4ef0353e56f22136";><img
 src="https://img.shields.io/badge/f75085f4b-fix-green"; alt="fix - f75085f4b" 
/></a></td>
   <td>prevent OS command injection in ssr-dev-server builder</td>
   </tr>
   </tbody>
   </table>
   <h3><code>@​angular/build</code></h3>
   <!-- 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";>@​angular/build's
 changelog</a>.</em></p>
   <blockquote>
   <h1>22.0.8 (2026-07-23)</h1>
   <h3><code>@​angular/cli</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/41c356256525469a41ea72896b1ddff91a4e6e55";>41c356256</a></td>
   <td>fix</td>
   <td>batch Prettier invocations during migration formatting</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/bc87c85c3c660e969cf77a493dc4ee58fd831214";>bc87c85c3</a></td>
   <td>fix</td>
   <td>update MCP devserver tool names to conform to spec regex</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/5724bf632eba59eccdd941beae8aafad35ce003e";>5724bf632</a></td>
   <td>fix</td>
   <td>canonicalize drive letter casing for workspace root on Windows</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/b8bdbaa1ea1c58f061580bd58c015078f57c1530";>b8bdbaa1e</a></td>
   <td>fix</td>
   <td>ensure import map integrity keys are valid URL-like specifiers</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/212a7bb21eca131f32fd7b4e7b5a9ab87f2bfded";>212a7bb21</a></td>
   <td>fix</td>
   <td>favor istanbul coverage provider when browser testing is enabled</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/bc760b005e0dae10a2dfd31a7f0f772482305398";>bc760b005</a></td>
   <td>fix</td>
   <td>preserve custom config options in runnerConfig for vitest</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/19cda7415693f36e911a736a32576110905b6600";>19cda7415</a></td>
   <td>fix</td>
   <td>remap metafile paths when workspace root is a symlink or junction</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/fdcc98c7912f45431268fdf66c8b132bd119bc27";>fdcc98c79</a></td>
   <td>perf</td>
   <td>skip semantic affected-file walk when type checking is disabled</td>
   </tr>
   </tbody>
   </table>
   <!-- raw HTML omitted -->
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
   <h1>22.1.0-next.4 (2026-07-15)</h1>
   <h3><code>@​angular/cli</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/3789ceee18b4528c2acb7989b5d41c32d386a8a8";>3789ceee1</a></td>
   <td>fix</td>
   <td>copy packageManager field and yarn config for temp installs</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/b0b3a47ae95f4e98e1280ff5c9e3751ccecee5a8";>b0b3a47ae</a></td>
   <td>fix</td>
   <td>support resolving subproject dependencies in pnpm workspaces</td>
   </tr>
   </tbody>
   </table>
   <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/b345bb54d3ec7c73f9db70400f823d90aeab8fa8";>b345bb54d</a></td>
   <td>fix</td>
   <td>remove unused spec tsconfig outDir</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/0c18dc0f6d4f36d7bbb6f35b37bfa688e8fcf7d2";>0c18dc0f6</a></td>
   <td>feat</td>
   <td>emit debug ids for stable subresource integrity hashes</td>
   </tr>
   <tr>
   <td><a 
href="https://github.com/angular/angular-cli/commit/291caab6158fa804f6221dd024a5b96e6181eaad";>291caab61</a></td>
   <td>fix</td>
   <td>prevent stripping nested sourceMappingURL comments</td>
   </tr>
   </tbody>
   </table>
   <!-- raw HTML omitted -->
   <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/angular/angular-cli/commit/beac4932b7feeb8e0002eb4aee4539a874ffaa99";><code>beac493</code></a>
 release: cut the v22.0.8 release</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/1bb2cc5c205658b4c3e30df706ec2beb309515e5";><code>1bb2cc5</code></a>
 build: update devinfra digest to 8819f0b</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/83eede6b3bfb6ed5197bf38fa39432f27d05a519";><code>83eede6</code></a>
 build: update all github actions</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/15b861603f6022de750f30134c2d48b8978c4f07";><code>15b8616</code></a>
 build: update dependency aspect_rules_ts to v3.9.2</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/bc87c85c3c660e969cf77a493dc4ee58fd831214";><code>bc87c85</code></a>
 fix(<code>@​angular/cli</code>): update MCP devserver tool names to conform to 
spec regex</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/212a7bb21eca131f32fd7b4e7b5a9ab87f2bfded";><code>212a7bb</code></a>
 fix(<code>@​angular/build</code>): favor istanbul coverage provider when 
browser testing is...</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/0c69328b3940682fabe4c813783c4e21d6cbe1de";><code>0c69328</code></a>
 Revert &quot;perf(<code>@​angular/build</code>): skip semantic affected-file 
walk when type chec...</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/ecc7aba2be4bdb65bf9cfe9d19a33938d94b3eca";><code>ecc7aba</code></a>
 build: update cross-repo angular dependencies</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/ce5e5d09a7639ef4885f2799716c035da3a01863";><code>ce5e5d0</code></a>
 build: lock file maintenance</li>
   <li><a 
href="https://github.com/angular/angular-cli/commit/fdcc98c7912f45431268fdf66c8b132bd119bc27";><code>fdcc98c</code></a>
 perf(<code>@​angular/build</code>): skip semantic affected-file walk when type 
checking is ...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/angular/angular-cli/compare/v21.2.19...v22.0.8";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `ng-packagr` from 21.2.5 to 22.0.1
   <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>22.0.1</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li><strong>ng-packagr:</strong> generate specific .npmignore entries for 
secondary entry-point package.json files (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/44bc3a7a5cf07072b2c5556a6e2af6aa22d6e600";>44bc3a7</a>),
 closes <a 
href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3343";>#3343</a></li>
   <li><strong>ng-packagr:</strong> prevent concurrent compilation and stale 
cache results (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/c4fd75f93ef18fb31c88c0bcb21e971add052eb1";>c4fd75f</a>)</li>
   </ul>
   <h3>Performance</h3>
   <ul>
   <li><strong>ng-packagr:</strong> implement semaphore backpressure throttling 
in SassWorkerImplementation (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/1b6ac8e9f516dc71a1d822cff563180435335d9d";>1b6ac8e</a>)</li>
   </ul>
   <h2>22.0.0</h2>
   <h3>⚠ BREAKING CHANGES</h3>
   <ul>
   <li><strong>ng-packagr:</strong> TypeScript versions older than 6.0 are no 
longer supported.</li>
   <li>Node.js v20 is no longer supported. The minimum supported Node.js 
versions are now v22.22.0 and v24.13.1.</li>
   </ul>
   <h3>Features</h3>
   <ul>
   <li>update <code>@​angular/compiler-cli</code> peer dependency to support 
Angular v22 (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/1fd8eb15c4dbdbe52955666417caf056f116eca3";>1fd8eb1</a>)</li>
   <li>support Node.js 26 (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/4360fea0d8fff19d9e2cdf2b4f1fb487ec01dff5";>4360fea</a>)</li>
   <li><strong>ng-packagr:</strong> drop support for TypeScript 5.9 (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/b59e2806c6eaef78e71e412e5851b4b437cca45a";>b59e280</a>)</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><strong>ng-packagr:</strong> invalidate angularDiagnosticCache for html 
changes (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/e7d8e38a30c6197a6f2f450d41b1752cce9360e2";>e7d8e38</a>)</li>
   <li><strong>ng-packagr:</strong> handle package.json files with export 
subpaths (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/89e195da6d474dbe0401494f0d78ded9cd7f573a";>89e195d</a>)</li>
   <li>ensure dts sourcemaps point to original ts files (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/28424e2b7ce8d78e95614481dd797b75fe7db2be";>28424e2</a>)</li>
   <li>allow TypeScript 6 peer dependency (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/fdb49da99ab8fc7a9ef62da9229f971bc561b26d";>fdb49da</a>)</li>
   <li>update minimum supported Node.js versions (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/f7e5ef55ef4f14f77cd1e786e8ec35676d373e9c";>f7e5ef5</a>)</li>
   </ul>
   <h2>22.0.0-next.5</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li><strong>ng-packagr:</strong> handle package.json files with export 
subpaths (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/89e195da6d474dbe0401494f0d78ded9cd7f573a";>89e195d</a>)</li>
   </ul>
   <h2>22.0.0-next.4</h2>
   <h3>Features</h3>
   <ul>
   <li>support Node.js 26 (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/4360fea0d8fff19d9e2cdf2b4f1fb487ec01dff5";>4360fea</a>)</li>
   </ul>
   <h2>22.0.0-next.3</h2>
   <h3>⚠ BREAKING CHANGES</h3>
   <ul>
   <li><strong>ng-packagr:</strong> TypeScript versions older than 6.0 are no 
longer supported.</li>
   </ul>
   <h3>Features</h3>
   <!-- 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/main/CHANGELOG.md";>ng-packagr's
 changelog</a>.</em></p>
   <blockquote>
   <h3><a 
href="https://github.com/ng-packagr/ng-packagr/compare/22.0.0...22.0.1";>22.0.1</a>
 (2026-07-01)</h3>
   <h3>Bug Fixes</h3>
   <ul>
   <li><strong>ng-packagr:</strong> generate specific .npmignore entries for 
secondary entry-point package.json files (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/44bc3a7a5cf07072b2c5556a6e2af6aa22d6e600";>44bc3a7</a>),
 closes <a 
href="https://redirect.github.com/ng-packagr/ng-packagr/issues/3343";>#3343</a></li>
   <li><strong>ng-packagr:</strong> prevent concurrent compilation and stale 
cache results (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/c4fd75f93ef18fb31c88c0bcb21e971add052eb1";>c4fd75f</a>)</li>
   </ul>
   <h3>Performance</h3>
   <ul>
   <li><strong>ng-packagr:</strong> implement semaphore backpressure throttling 
in SassWorkerImplementation (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/1b6ac8e9f516dc71a1d822cff563180435335d9d";>1b6ac8e</a>)</li>
   </ul>
   <h2><a 
href="https://github.com/ng-packagr/ng-packagr/compare/22.1.0-next.1...22.1.0-next.2";>22.1.0-next.2</a>
 (2026-06-11)</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li><strong>ng-packagr:</strong> prevent concurrent compilation and stale 
cache results (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/e5d77a7837fab18f7a200126df7f8fd703f55462";>e5d77a7</a>)</li>
   </ul>
   <h2><a 
href="https://github.com/ng-packagr/ng-packagr/compare/22.1.0-next.0...22.1.0-next.1";>22.1.0-next.1</a>
 (2026-06-03)</h2>
   <h2><a 
href="https://github.com/ng-packagr/ng-packagr/compare/22.0.0...22.1.0-next.0";>22.1.0-next.0</a>
 (2026-06-03)</h2>
   <h2><a 
href="https://github.com/ng-packagr/ng-packagr/compare/22.0.0-rc.0...22.0.0";>22.0.0</a>
 (2026-06-03)</h2>
   <h3>⚠ BREAKING CHANGES</h3>
   <ul>
   <li><strong>ng-packagr:</strong> TypeScript versions older than 6.0 are no 
longer supported.</li>
   <li>Node.js v20 is no longer supported. The minimum supported Node.js 
versions are now v22.22.0 and v24.13.1.</li>
   </ul>
   <h3>Features</h3>
   <ul>
   <li>update <code>@​angular/compiler-cli</code> peer dependency to support 
Angular v22 (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/1fd8eb15c4dbdbe52955666417caf056f116eca3";>1fd8eb1</a>)</li>
   <li>support Node.js 26 (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/4360fea0d8fff19d9e2cdf2b4f1fb487ec01dff5";>4360fea</a>)</li>
   <li><strong>ng-packagr:</strong> drop support for TypeScript 5.9 (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/b59e2806c6eaef78e71e412e5851b4b437cca45a";>b59e280</a>)</li>
   </ul>
   <h3>Bug Fixes</h3>
   <ul>
   <li><strong>ng-packagr:</strong> invalidate angularDiagnosticCache for html 
changes (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/e7d8e38a30c6197a6f2f450d41b1752cce9360e2";>e7d8e38</a>)</li>
   <li><strong>ng-packagr:</strong> handle package.json files with export 
subpaths (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/89e195da6d474dbe0401494f0d78ded9cd7f573a";>89e195d</a>)</li>
   <li>ensure dts sourcemaps point to original ts files (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/28424e2b7ce8d78e95614481dd797b75fe7db2be";>28424e2</a>)</li>
   <li>allow TypeScript 6 peer dependency (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/fdb49da99ab8fc7a9ef62da9229f971bc561b26d";>fdb49da</a>)</li>
   <li>update minimum supported Node.js versions (<a 
href="https://github.com/ng-packagr/ng-packagr/commit/f7e5ef55ef4f14f77cd1e786e8ec35676d373e9c";>f7e5ef5</a>)</li>
   </ul>
   <h2><a 
href="https://github.com/ng-packagr/ng-packagr/compare/22.0.0-next.5...22.0.0-rc.0";>22.0.0-rc.0</a>
 (2026-05-18)</h2>
   <h2><a 
href="https://github.com/ng-packagr/ng-packagr/compare/22.0.0-next.4...22.0.0-next.5";>22.0.0-next.5</a>
 (2026-05-18)</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/bb2a3afefb0f1e49a28f4a90e7e8c7be7d61b748";><code>bb2a3af</code></a>
 release: cut 22.0.1</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/44bc3a7a5cf07072b2c5556a6e2af6aa22d6e600";><code>44bc3a7</code></a>
 fix(ng-packagr): generate specific .npmignore entries for secondary 
entry-poi...</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/1b6ac8e9f516dc71a1d822cff563180435335d9d";><code>1b6ac8e</code></a>
 perf(ng-packagr): implement semaphore backpressure throttling in 
SassWorkerIm...</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/c4fd75f93ef18fb31c88c0bcb21e971add052eb1";><code>c4fd75f</code></a>
 fix(ng-packagr): prevent concurrent compilation and stale cache results</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/c2e12fbfb80773a1fdc67016fd4ad1ba72d02eb1";><code>c2e12fb</code></a>
 Update CHANGELOG.md</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/dd927c6d3a66ad8507eff2ca447b181c18a16235";><code>dd927c6</code></a>
 docs: update changelog for version 22.0.0 release</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/e918dc3eecf63948ef4f6969823bd7b762caf475";><code>e918dc3</code></a>
 release: cut 22.0.0</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/7f8a814cb410b93ce02bd4d62cb4aeea874fee70";><code>7f8a814</code></a>
 build: update <code>@​angular/compiler-cli</code> peer dependency range to 
support version ...</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/e7d8e38a30c6197a6f2f450d41b1752cce9360e2";><code>e7d8e38</code></a>
 fix(ng-packagr): invalidate angularDiagnosticCache for html changes</li>
   <li><a 
href="https://github.com/ng-packagr/ng-packagr/commit/7204d855d8d0a76d2b70de27e77689ca1f239245";><code>7204d85</code></a>
 build: update pnpm workspace configuration and remove redundant pnpm 
settings</li>
   <li>Additional commits viewable in <a 
href="https://github.com/ng-packagr/ng-packagr/compare/21.2.5...22.0.1";>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 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/streampipes/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]


Reply via email to