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

   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.8.1 to 3.8.2
   <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.8.2</h2>
   <ul>
   <li>Support Angular v21.2</li>
   </ul>
   <p>🔗 <a 
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#382";>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.8.2</h1>
   <p><a 
href="https://github.com/prettier/prettier/compare/3.8.1...3.8.2";>diff</a></p>
   <h4>Angular: Support Angular v21.2 (<a 
href="https://redirect.github.com/prettier/prettier/pull/18722";>#18722</a>, <a 
href="https://redirect.github.com/prettier/prettier/pull/19034";>#19034</a> by 
<a href="https://github.com/fisker";><code>@​fisker</code></a>)</h4>
   <p>Exhaustive typechecking with <code>@default never;</code></p>
   <!-- raw HTML omitted -->
   <pre lang="html"><code>&lt;!-- Input --&gt;
   @switch (foo) {
     @case (1) {}
     @default never;
   }
   <p>&lt;!-- Prettier 3.8.1 --&gt;
   SyntaxError: Incomplete block &quot;default never&quot;. If you meant to 
write the @ character, you should use the &quot;&amp;<a 
href="https://redirect.github.com/prettier/prettier/issues/64";>#64</a>;&quot; 
HTML entity instead. (3:3)</p>
   <p>&lt;!-- Prettier 3.8.2 --&gt;
   <a href="https://github.com/switch";><code>@​switch</code></a> (foo) {
   <a href="https://github.com/case";><code>@​case</code></a> (1) {}
   <a href="https://github.com/default";><code>@​default</code></a> never;
   }
   </code></pre></p>
   <p><code>arrow function</code> and <code>instanceof</code> expressions.</p>
   <!-- raw HTML omitted -->
   <pre lang="html"><code>&lt;!-- Input --&gt;
   @let fn = (a) =&gt;        a?    1:2;
   <p>{{ fn ( a         instanceof b)}}</p>
   <p>&lt;!-- Prettier 3.8.1 --&gt;
   <a href="https://github.com/let";><code>@​let</code></a> fn = (a) =&gt;       
 a?    1:2;</p>
   <p>{{ fn ( a         instanceof b)}}</p>
   <p>&lt;!-- Prettier 3.8.2 --&gt;
   <a href="https://github.com/let";><code>@​let</code></a> fn = (a) =&gt; (a ? 
1 : 2);</p>
   <p>{{ fn(a instanceof b) }}
   </code></pre></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/prettier/prettier/commit/b31557cf331a02acf83e7e29d1001b070189a0d9";><code>b31557c</code></a>
 Release 3.8.2</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/96bbaeda0525bf758e464aed2f939d739a85c315";><code>96bbaed</code></a>
 Support Angular v21.2 (<a 
href="https://redirect.github.com/prettier/prettier/issues/18722";>#18722</a>)</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/881360b92b3cfa39ffa0c0ee03bb4319079849a6";><code>881360b</code></a>
 Support <code>default never</code> in Angular v21.2 (<a 
href="https://redirect.github.com/prettier/prettier/issues/19034";>#19034</a>)</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/07d67240f7a0f2d65014e00395b342bbec5db31b";><code>07d6724</code></a>
 Bump Prettier dependency to 3.8.1</li>
   <li><a 
href="https://github.com/prettier/prettier/commit/8b4a53ab3daddfe9c10c52fd5785a6a718770c34";><code>8b4a53a</code></a>
 Clean changelog_unreleased</li>
   <li>See full diff in <a 
href="https://github.com/prettier/prettier/compare/3.8.1...3.8.2";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `webpack` from 5.106.0 to 5.106.1
   <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.106.1</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>Fix two ES5-environment regressions in the anonymous default export 
<code>.name</code> fix-up: the generated code referenced an undeclared 
<code>__WEBPACK_DEFAULT_EXPORT__</code> binding causing 
<code>ReferenceError</code>, and used <code>Reflect.defineProperty</code> which 
is not available in pre-ES2015 runtimes. The fix-up now references the real 
assignment target and uses <code>Object.defineProperty</code> / 
<code>Object.getOwnPropertyDescriptor</code>. (by <a 
href="https://github.com/xiaoxiaojx";><code>@​xiaoxiaojx</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/20796";>#20796</a>)</p>
   </li>
   <li>
   <p>Prevent <code>!important</code> from being renamed as a local identifier 
in CSS modules. (by <a 
href="https://github.com/xiaoxiaojx";><code>@​xiaoxiaojx</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/20798";>#20798</a>)</p>
   </li>
   <li>
   <p>Use compiler context instead of module context for CSS modules local 
ident hashing to avoid hash collisions when files with the same name exist in 
different directories. (by <a 
href="https://github.com/xiaoxiaojx";><code>@​xiaoxiaojx</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/20799";>#20799</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.106.1</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>Fix two ES5-environment regressions in the anonymous default export 
<code>.name</code> fix-up: the generated code referenced an undeclared 
<code>__WEBPACK_DEFAULT_EXPORT__</code> binding causing 
<code>ReferenceError</code>, and used <code>Reflect.defineProperty</code> which 
is not available in pre-ES2015 runtimes. The fix-up now references the real 
assignment target and uses <code>Object.defineProperty</code> / 
<code>Object.getOwnPropertyDescriptor</code>. (by <a 
href="https://github.com/xiaoxiaojx";><code>@​xiaoxiaojx</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/20796";>#20796</a>)</p>
   </li>
   <li>
   <p>Prevent <code>!important</code> from being renamed as a local identifier 
in CSS modules. (by <a 
href="https://github.com/xiaoxiaojx";><code>@​xiaoxiaojx</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/20798";>#20798</a>)</p>
   </li>
   <li>
   <p>Use compiler context instead of module context for CSS modules local 
ident hashing to avoid hash collisions when files with the same name exist in 
different directories. (by <a 
href="https://github.com/xiaoxiaojx";><code>@​xiaoxiaojx</code></a> in <a 
href="https://redirect.github.com/webpack/webpack/pull/20799";>#20799</a>)</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/webpack/webpack/commit/a934b9bb0330aba61e759ef943b7303ba305959f";><code>a934b9b</code></a>
 chore(release): new release (<a 
href="https://redirect.github.com/webpack/webpack/issues/20808";>#20808</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/ecb436b21289bb52d0ce01783931bc9d1bdb1b42";><code>ecb436b</code></a>
 fix: use compiler context for CSS modules hash to avoid collisions (<a 
href="https://redirect.github.com/webpack/webpack/issues/20799";>#20799</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/c0e8cf4dbf299d0344bbdc7ef5c22ea357bdf1f3";><code>c0e8cf4</code></a>
 fix: prevent !important from being renamed in CSS modules (<a 
href="https://redirect.github.com/webpack/webpack/issues/20798";>#20798</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/f8d274b6b1d302cd9ae999bded76bc909c27ae23";><code>f8d274b</code></a>
 fix: anonymous default export name fix-up in ES5 environment (<a 
href="https://redirect.github.com/webpack/webpack/issues/20796";>#20796</a>)</li>
   <li><a 
href="https://github.com/webpack/webpack/commit/e370b76b44eec53c672090361365b16c6283ed13";><code>e370b76</code></a>
 chore(deps-dev): bump the dependencies group with 5 updates (<a 
href="https://redirect.github.com/webpack/webpack/issues/20790";>#20790</a>)</li>
   <li>See full diff in <a 
href="https://github.com/webpack/webpack/compare/v5.106.0...v5.106.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 <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