dependabot[bot] opened a new pull request, #4441:
URL: https://github.com/apache/myfaces-tobago/pull/4441

   Bumps [lit-html](https://github.com/lit/lit/tree/HEAD/packages/lit-html) 
from 2.7.4 to 3.0.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/lit/lit/releases";>lit-html's 
releases</a>.</em></p>
   <blockquote>
   <h2>[email protected]</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/4240";>#4240</a> <a 
href="https://github.com/lit/lit/commit/edf998c9fe34183888ffc781dd330dc8a962dd7a";><code>edf998c9</code></a>
 Thanks <a href="https://github.com/remziatay";><code>@​remziatay</code></a>! - 
Improved the type inferece of the <code>choose()</code> directive to properly 
restrict the case type inferred from provided value. <strong>Note</strong>: If 
this change creates a type error in your code, there must have been an 
unreachable case that can be removed, or the type of your <code>value</code> 
might be missing a valid case in the union.</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/4310";>#4310</a> <a 
href="https://github.com/lit/lit/commit/8f674ab319e4eadbf5b028f1c0bd15d276c02d0e";><code>8f674ab3</code></a>
 Thanks <a 
href="https://github.com/megheaiulian";><code>@​megheaiulian</code></a>! - The 
<code>when()</code> directive now calls the case functions with the provided 
condition value as an argument. This allows the narrowing of types for the 
condition value based on its truthiness when used as a parameter for the case 
function.</p>
   </li>
   </ul>
   <h2>[email protected]</h2>
   <h3>Major Changes</h3>
   <ul>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3756";>#3756</a> <a 
href="https://github.com/lit/lit/commit/f06f7972a027d2937fe2c68ab5af0274dec57cf4";><code>f06f7972</code></a>
 - Drop IE11 support</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3759";>#3759</a> <a 
href="https://github.com/lit/lit/commit/1db0137699b35d7e7bfac9b2ab274af4100fd7cf";><code>1db01376</code></a>
 - Use replaceWith() for SVG templates</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3765";>#3765</a> <a 
href="https://github.com/lit/lit/commit/92cedaa2c8cd8a306be3fe25d52e0e47bb044020";><code>92cedaa2</code></a>
 - Remove experimental hydrate modules. These are available from 
<code>@lit-labs/ssr-client</code>.</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3751";>#3751</a> <a 
href="https://github.com/lit/lit/commit/dfd747cf4f7239e0c3bb7134f8acb967d0157654";><code>dfd747cf</code></a>
 - Simplify lit-html attribute handling for standards-compliant browsers that 
iterate attributes in source order</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3750";>#3750</a> <a 
href="https://github.com/lit/lit/commit/c3e473b499ff029b5e1aff01ca8799daf1ca1bbe";><code>c3e473b4</code></a>
 - Use toggleAttribute() to simplify boolean attribute parts</p>
   </li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/4141";>#4141</a> <a 
href="https://github.com/lit/lit/commit/6b515e43c3a24cc8a593247d3aa72d81bcc724d5";><code>6b515e43</code></a>
 - Update TypeScript to ~5.2.0</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3762";>#3762</a> <a 
href="https://github.com/lit/lit/commit/23c404fdec0cd7be834221b6ddf9b659c24ca8a2";><code>23c404fd</code></a>
 - Remove Lit 1 -&gt; Lit 2 migration warnings</p>
   </li>
   </ul>
   <h2>[email protected]</h2>
   <h3>Minor Changes</h3>
   <ul>
   <li><a href="https://redirect.github.com/lit/lit/pull/4081";>#4081</a> <a 
href="https://github.com/lit/lit/commit/d27a77ec3d3999e872df9218a2b07f90f22eb417";><code>d27a77ec</code></a>
 - Sync from last stable release</li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li><a href="https://redirect.github.com/lit/lit/pull/4141";>#4141</a> <a 
href="https://github.com/lit/lit/commit/6b515e43c3a24cc8a593247d3aa72d81bcc724d5";><code>6b515e43</code></a>
 - Update TypeScript to ~5.2.0</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/lit/lit/blob/main/packages/lit-html/CHANGELOG.md";>lit-html's
 changelog</a>.</em></p>
   <blockquote>
   <h2>3.0.1</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/4240";>#4240</a> <a 
href="https://github.com/lit/lit/commit/edf998c9fe34183888ffc781dd330dc8a962dd7a";><code>edf998c9</code></a>
 Thanks <a href="https://github.com/remziatay";><code>@​remziatay</code></a>! - 
Improved the type inferece of the <code>choose()</code> directive to properly 
restrict the case type inferred from provided value. <strong>Note</strong>: If 
this change creates a type error in your code, there must have been an 
unreachable case that can be removed, or the type of your <code>value</code> 
might be missing a valid case in the union.</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/4310";>#4310</a> <a 
href="https://github.com/lit/lit/commit/8f674ab319e4eadbf5b028f1c0bd15d276c02d0e";><code>8f674ab3</code></a>
 Thanks <a 
href="https://github.com/megheaiulian";><code>@​megheaiulian</code></a>! - The 
<code>when()</code> directive now calls the case functions with the provided 
condition value as an argument. This allows the narrowing of types for the 
condition value based on its truthiness when used as a parameter for the case 
function.</p>
   </li>
   </ul>
   <h2>3.0.0</h2>
   <h3>Major Changes</h3>
   <ul>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3756";>#3756</a> <a 
href="https://github.com/lit/lit/commit/f06f7972a027d2937fe2c68ab5af0274dec57cf4";><code>f06f7972</code></a>
 - Drop IE11 support</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3759";>#3759</a> <a 
href="https://github.com/lit/lit/commit/1db0137699b35d7e7bfac9b2ab274af4100fd7cf";><code>1db01376</code></a>
 - Use replaceWith() for SVG templates</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3765";>#3765</a> <a 
href="https://github.com/lit/lit/commit/92cedaa2c8cd8a306be3fe25d52e0e47bb044020";><code>92cedaa2</code></a>
 - Remove experimental hydrate modules. These are available from 
<code>@lit-labs/ssr-client</code>.</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3751";>#3751</a> <a 
href="https://github.com/lit/lit/commit/dfd747cf4f7239e0c3bb7134f8acb967d0157654";><code>dfd747cf</code></a>
 - Simplify lit-html attribute handling for standards-compliant browsers that 
iterate attributes in source order</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3750";>#3750</a> <a 
href="https://github.com/lit/lit/commit/c3e473b499ff029b5e1aff01ca8799daf1ca1bbe";><code>c3e473b4</code></a>
 - Use toggleAttribute() to simplify boolean attribute parts</p>
   </li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/4141";>#4141</a> <a 
href="https://github.com/lit/lit/commit/6b515e43c3a24cc8a593247d3aa72d81bcc724d5";><code>6b515e43</code></a>
 - Update TypeScript to ~5.2.0</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3762";>#3762</a> <a 
href="https://github.com/lit/lit/commit/23c404fdec0cd7be834221b6ddf9b659c24ca8a2";><code>23c404fd</code></a>
 - Remove Lit 1 -&gt; Lit 2 migration warnings</p>
   </li>
   </ul>
   <h2>3.0.0-pre.1</h2>
   <h3>Minor Changes</h3>
   <ul>
   <li><a href="https://redirect.github.com/lit/lit/pull/4081";>#4081</a> <a 
href="https://github.com/lit/lit/commit/d27a77ec3d3999e872df9218a2b07f90f22eb417";><code>d27a77ec</code></a>
 - Sync from last stable release</li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li><a href="https://redirect.github.com/lit/lit/pull/4141";>#4141</a> <a 
href="https://github.com/lit/lit/commit/6b515e43c3a24cc8a593247d3aa72d81bcc724d5";><code>6b515e43</code></a>
 - Update TypeScript to ~5.2.0</li>
   </ul>
   <h2>3.0.0-pre.0</h2>
   <h3>Major Changes</h3>
   <ul>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3751";>#3751</a> <a 
href="https://github.com/lit/lit/commit/dfd747cf4f7239e0c3bb7134f8acb967d0157654";><code>dfd747cf</code></a>
 - Simplify lit-html attribute handling for standards-compliant browsers that 
iterate attributes in source order</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3759";>#3759</a> <a 
href="https://github.com/lit/lit/commit/1db0137699b35d7e7bfac9b2ab274af4100fd7cf";><code>1db01376</code></a>
 - Use replaceWith() for SVG templates</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3750";>#3750</a> <a 
href="https://github.com/lit/lit/commit/c3e473b499ff029b5e1aff01ca8799daf1ca1bbe";><code>c3e473b4</code></a>
 - Use toggleAttribute() to simplify boolean attribute parts</p>
   </li>
   <li>
   <p><a href="https://redirect.github.com/lit/lit/pull/3765";>#3765</a> <a 
href="https://github.com/lit/lit/commit/92cedaa2c8cd8a306be3fe25d52e0e47bb044020";><code>92cedaa2</code></a>
 - Remove experimental hydrate modules. These are available from 
<code>@lit-labs/ssr-client</code>.</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/lit/lit/commit/62d7818e6c0d11741886fe7e6c093667fccb1559";><code>62d7818</code></a>
 Version Packages (<a 
href="https://github.com/lit/lit/tree/HEAD/packages/lit-html/issues/4341";>#4341</a>)</li>
   <li><a 
href="https://github.com/lit/lit/commit/edf998c9fe34183888ffc781dd330dc8a962dd7a";><code>edf998c</code></a>
 [lit-html] Fix choose directive type inference (<a 
href="https://github.com/lit/lit/tree/HEAD/packages/lit-html/issues/4240";>#4240</a>)</li>
   <li><a 
href="https://github.com/lit/lit/commit/8f674ab319e4eadbf5b028f1c0bd15d276c02d0e";><code>8f674ab</code></a>
 [lit-html] make <code>when()</code> directive pass condition value to case 
functions (<a 
href="https://github.com/lit/lit/tree/HEAD/packages/lit-html/issues/4";>#4</a>...</li>
   <li><a 
href="https://github.com/lit/lit/commit/0372614e81f7b67805bdc60cff3b83970609d61e";><code>0372614</code></a>
 Update devDependencies to not reference pre versions of internal packages (<a 
href="https://github.com/lit/lit/tree/HEAD/packages/lit-html/issues/4";>#4</a>...</li>
   <li><a 
href="https://github.com/lit/lit/commit/c4818c507771d9da58b13eaddd800f57f1846ea6";><code>c4818c5</code></a>
 Version Packages (<a 
href="https://github.com/lit/lit/tree/HEAD/packages/lit-html/issues/4279";>#4279</a>)</li>
   <li><a 
href="https://github.com/lit/lit/commit/76d73c62c32c1277a16de2238686f6358be97213";><code>76d73c6</code></a>
 Version Packages (pre) (<a 
href="https://github.com/lit/lit/tree/HEAD/packages/lit-html/issues/4246";>#4246</a>)</li>
   <li><a 
href="https://github.com/lit/lit/commit/77e9b48e4aefc61d5fe31939019c281d7303137c";><code>77e9b48</code></a>
 Put types on Map, Set, etc constructor calls (<a 
href="https://github.com/lit/lit/tree/HEAD/packages/lit-html/issues/4202";>#4202</a>)</li>
   <li><a 
href="https://github.com/lit/lit/commit/f37ff4dbd6dc531161334599242ab7520acbcaf7";><code>f37ff4d</code></a>
 Merge branch 'main' into aug-21-merge-3.0</li>
   <li><a 
href="https://github.com/lit/lit/commit/5354ab18f2992aae98d4995636ac6b77389531c3";><code>5354ab1</code></a>
 [infra][lit-labs/compiler] lit-html tests are now also compiled and tested 
(#...</li>
   <li><a 
href="https://github.com/lit/lit/commit/fcaf8cb1d2517a2f89cbebb6d6c3d114842bfc50";><code>fcaf8cb</code></a>
 Merge branch main into 3.0</li>
   <li>Additional commits viewable in <a 
href="https://github.com/lit/lit/commits/[email protected]/packages/lit-html";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=lit-html&package-manager=npm_and_yarn&previous-version=2.7.4&new-version=3.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot 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)
   
   
   </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