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

   Bumps the fab-ui-package-updates group with 2 updates in the 
/providers/fab/src/airflow/providers/fab/www directory: 
[prettier](https://github.com/prettier/prettier) and 
[webpack](https://github.com/webpack/webpack).
   
   Updates `prettier` from 3.9.1 to 3.9.3
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/prettier/prettier/releases";>prettier's 
releases</a>.</em></p>
   <blockquote>
   <h2>3.9.3</h2>
   <ul>
   <li>Markdown: Fix unexpected removal of characters in liquid syntax (<a 
href="https://redirect.github.com/prettier/prettier/pull/19489";>prettier/prettier#19489</a>
 by <a href="https://github.com/seiyab";><code>@​seiyab</code></a>)</li>
   <li>TypeScript: Allow decorators to be used with declare on class fields (<a 
href="https://redirect.github.com/prettier/prettier/pull/19492";>prettier/prettier#19492</a>
 by <a 
href="https://github.com/evoactivity";><code>@​evoactivity</code></a>)</li>
   </ul>
   <p>🔗 <a 
href="https://github.com/prettier/prettier/blob/3.9.3/CHANGELOG.md#393";>Changelog</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md";>prettier's 
changelog</a>.</em></p>
   <blockquote>
   <h1>3.9.3</h1>
   <p><a 
href="https://github.com/prettier/prettier/compare/3.9.1...3.9.3";>diff</a></p>
   <h4>Markdown: Fix unexpected removal of characters in liquid syntax (<a 
href="https://redirect.github.com/prettier/prettier/pull/19489";>#19489</a> by 
<a href="https://github.com/seiyab";><code>@​seiyab</code></a>)</h4>
   <!-- raw HTML omitted -->
   <pre lang="md"><code>// Input
   &lt;!-- Input --&gt;
   {{ page.title
   }} text
   <p>&lt;!-- Prettier 3.9.1 --&gt;<br />
   {{ page.title<br />
   text</p>
   <p>&lt;!-- Prettier 3.9.3 --&gt;<br />
   {{ page.title<br />
   }} text<br />
   </code></pre></p>
   <h4>TypeScript: Allow decorators to be used with declare on class fields (<a 
href="https://redirect.github.com/prettier/prettier/pull/19492";>#19492</a> by 
<a href="https://github.com/evoactivity";><code>@​evoactivity</code></a>)</h4>
   <p>Extensively used within the Ember ecosystem, decorators with 
<code>declare</code> on class fields will ignore the babel parser error and 
allow Prettier to format the code without breaking it.</p>
   <!-- raw HTML omitted -->
   <pre lang="ts"><code>// Input
   export default class ProjectStatusComponent extends 
Component&lt;ProjectStatusSig&gt; {
     @service declare server: ServerService;
   }
   <p>// Prettier 3.9.1<br />
   // SyntaxError: Decorators can't be used with a declare field. (2:3)<br />
   //  1 | export default class ProjectStatusComponent extends 
Component&lt;ProjectStatusSig&gt; {<br />
   //&gt; 2 |   <a href="https://github.com/service";><code>@​service</code></a> 
declare server: ServerService;<br />
   //    |   ^<br />
   //  3 | }</p>
   <p>// Prettier 3.9.3<br />
   export default class ProjectStatusComponent extends 
Component&lt;ProjectStatusSig&gt; {<br />
   <a href="https://github.com/service";><code>@​service</code></a> declare 
server: ServerService;<br />
   }<br />
   </code></pre></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/prettier/prettier/commit/3732e1dee6a36bdb2e77a722d206a79ac7e67aa3";><code>3732e1d</code></a>
 Release 3.9.3</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/a74a7b05dee7fbef39a6aeff378c3741e1a8ee15";><code>a74a7b0</code></a>
 Allow decorators to be used with <code>declare</code> on class fields (<a 
href="https://redirect.github.com/prettier/prettier/issues/19492";>#19492</a>)</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/bd9e11ab41e17a4f61f363a981c1ec24d2a4167a";><code>bd9e11a</code></a>
 Correct text identification in liquid syntax (<a 
href="https://redirect.github.com/prettier/prettier/issues/19489";>#19489</a>)</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/269eee3faa1f82b1de07bb7e4d15e1cee70f80d4";><code>269eee3</code></a>
 Bump Prettier dependency to 3.9.1</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/ec7ccd1ea47c965bda3c958239899737e899603d";><code>ec7ccd1</code></a>
 Clean changelog_unreleased</li>
   <li>See full diff in <a 
href="https://github.com/prettier/prettier/compare/3.9.1...3.9.3";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `webpack` from 5.108.1 to 5.108.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/webpack/webpack/releases";>webpack's 
releases</a>.</em></p>
   <blockquote>
   <h2>v5.108.2</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>Fix lazy barrel deferral of ungrouped side-effect imports. (by <a 
href="https://github.com/hai-x";><code>@​hai-x</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/21291";>#21291</a>)</p>
   </li>
   <li>
   <p>Respect the <code>node:</code> prefix for node.js core modules used as 
externals. (by <a 
href="https://github.com/alexander-akait";><code>@​alexander-akait</code></a> in 
<a href="https://redirect.github.com/webpack/webpack/pull/21286";>#21286</a>)</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/webpack/webpack/blob/main/CHANGELOG.md";>webpack's 
changelog</a>.</em></p>
   <blockquote>
   <h2>5.108.2</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>Fix lazy barrel deferral of ungrouped side-effect imports. (by <a 
href="https://github.com/hai-x";><code>@​hai-x</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/21291";>#21291</a>)</p>
   </li>
   <li>
   <p>Respect the <code>node:</code> prefix for node.js core modules used as 
externals. (by <a 
href="https://github.com/alexander-akait";><code>@​alexander-akait</code></a> in 
<a href="https://redirect.github.com/webpack/webpack/pull/21286";>#21286</a>)</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/webpack/webpack/commit/4dfe770e543f8e0c59184b9767e19b604d01af88";><code>4dfe770</code></a>
 chore(release): new release (<a 
href="https://redirect.github.com/webpack/webpack/issues/21287";>#21287</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/7534a5e949d34291601462efb95c81bbbf3736c4";><code>7534a5e</code></a>
 test: add defer import case for <a 
href="https://redirect.github.com/webpack/webpack/issues/19219";>#19219</a> (<a 
href="https://redirect.github.com/webpack/webpack/issues/21292";>#21292</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/9857fc753650413b8288d42c5dfa2458f36b3b5c";><code>9857fc7</code></a>
 fix: lazy barrel for import with side effects (<a 
href="https://redirect.github.com/webpack/webpack/issues/21291";>#21291</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/54fa9023af546593e8a57c0373b85d09d3ca3cf1";><code>54fa902</code></a>
 Respect the node: prefix for node.js core modules used as externals (<a 
href="https://redirect.github.com/webpack/webpack/issues/21286";>#21286</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/5e7db5da24c4b1b4d3d863bf22cae2fd703472d0";><code>5e7db5d</code></a>
 refactor: extract createHooksRegistry to deduplicate getCompilationHooks 
patt...</li>
   <li>See full diff in <a 
href="https://github.com/webpack/webpack/compare/v5.108.1...v5.108.2";>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 <dependency name> major version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
major version (unless you unignore this specific dependency's major version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name> minor version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
minor version (unless you unignore this specific dependency's minor version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name>` will close this group update PR and 
stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
   - `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
   - `@dependabot unignore <dependency name> <ignore condition>` will remove 
the ignore condition of the specified dependency and ignore conditions
   
   
   </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