dependabot[bot] opened a new pull request, #61502: URL: https://github.com/apache/airflow/pull/61502
Bumps the edge-ui-package-updates group with 4 updates in the /providers/edge3/src/airflow/providers/edge3/plugins/www directory: [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) and [globals](https://github.com/sindresorhus/globals). Updates `@eslint/compat` from 2.0.1 to 2.0.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/rewrite/releases"><code>@eslint/compat</code>'s releases</a>.</em></p> <blockquote> <h2>compat: v2.0.2</h2> <h2><a href="https://github.com/eslint/rewrite/compare/compat-v2.0.1...compat-v2.0.2">2.0.2</a> (2026-01-29)</h2> <h3>Bug Fixes</h3> <ul> <li>add eslint 10 as peer dependency (<a href="https://redirect.github.com/eslint/rewrite/issues/361">#361</a>) (<a href="https://github.com/eslint/rewrite/commit/ecb37dcafc6513649c03f245f0f2505e7eb10dd1">ecb37dc</a>)</li> </ul> <h3>Dependencies</h3> <ul> <li>The following workspace dependencies were updated <ul> <li>dependencies <ul> <li><code>@eslint/core</code> bumped from ^1.0.1 to ^1.1.0</li> </ul> </li> </ul> </li> </ul> <h2>migrate-config: v2.0.2</h2> <h2><a href="https://github.com/eslint/rewrite/compare/migrate-config-v2.0.1...migrate-config-v2.0.2">2.0.2</a> (2026-01-29)</h2> <h3>Dependencies</h3> <ul> <li>The following workspace dependencies were updated <ul> <li>dependencies <ul> <li><code>@eslint/compat</code> bumped from ^2.0.1 to ^2.0.2</li> </ul> </li> <li>devDependencies <ul> <li><code>@eslint/core</code> bumped from ^1.0.1 to ^1.1.0</li> </ul> </li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md"><code>@eslint/compat</code>'s changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/eslint/rewrite/compare/compat-v2.0.1...compat-v2.0.2">2.0.2</a> (2026-01-29)</h2> <h3>Bug Fixes</h3> <ul> <li>add eslint 10 as peer dependency (<a href="https://redirect.github.com/eslint/rewrite/issues/361">#361</a>) (<a href="https://github.com/eslint/rewrite/commit/ecb37dcafc6513649c03f245f0f2505e7eb10dd1">ecb37dc</a>)</li> </ul> <h3>Dependencies</h3> <ul> <li>The following workspace dependencies were updated <ul> <li>dependencies <ul> <li><code>@eslint/core</code> bumped from ^1.0.1 to ^1.1.0</li> </ul> </li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/rewrite/commit/7960653fe678b563051e2fbb99caf9fd3c07528c"><code>7960653</code></a> chore: release main (<a href="https://github.com/eslint/rewrite/tree/HEAD/packages/compat/issues/356">#356</a>)</li> <li><a href="https://github.com/eslint/rewrite/commit/ecb37dcafc6513649c03f245f0f2505e7eb10dd1"><code>ecb37dc</code></a> fix: add eslint 10 as peer dependency (<a href="https://github.com/eslint/rewrite/tree/HEAD/packages/compat/issues/361">#361</a>)</li> <li><a href="https://github.com/eslint/rewrite/commit/074cac2268ef11f9433282b6f043a15cec8c609d"><code>074cac2</code></a> docs: Update README sponsors</li> <li><a href="https://github.com/eslint/rewrite/commit/a3b0fd51027ce7b3102591ebda42326af87b8e3e"><code>a3b0fd5</code></a> docs: Update README sponsors</li> <li>See full diff in <a href="https://github.com/eslint/rewrite/commits/compat-v2.0.2/packages/compat">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 25.1.0 to 25.2.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases">eslint-plugin-react-refresh's releases</a>.</em></p> <blockquote> <h2>v0.5.0</h2> <h3>Breaking changes</h3> <ul> <li>The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use <a href="https://eslint.org/docs/latest/use/configure/migration-guide">flat config</a></li> <li>A new <code>reactRefresh</code> export is available and prefered over the default export. It's an object with two properties: <ul> <li><code>plugin</code>: The plugin object with the rules</li> <li><code>configs</code>: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.</li> </ul> </li> <li><code>customHOCs</code> option was renamed to <code>extraHOCs</code></li> <li>Validation of HOCs calls is now more strict, you may need to add some HOCs to the <code>extraHOCs</code> option</li> </ul> <p>Config example:</p> <pre lang="js"><code>import { defineConfig } from "eslint/config"; import { reactRefresh } from "eslint-plugin-react-refresh"; <p>export default defineConfig( /* Main config */ reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }), ); </code></pre></p> <p>Config example without config:</p> <pre lang="js"><code>import { defineConfig } from "eslint/config"; import { reactRefresh } from "eslint-plugin-react-refresh"; <p>export default defineConfig({ files: ["<strong>/*.ts", "</strong>/*.tsx"], plugins: { // other plugins "react-refresh": reactRefresh.plugin, }, rules: { // other rules "react-refresh/only-export-components": [ "warn", { extraHOCs: ["someLibHOC"] }, ], }, }); </code></pre></p> <h3>Why</h3> <p>This version follows a revamp of the internal logic to better make the difference between random call expressions like <code>export const Enum = Object.keys(Record)</code> and actual React HOC calls like <code>export const MemoComponent = memo(Component)</code>. (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/93">#93</a>)</p> <p>The rule now handles ternaries and patterns like <code>export default customHOC(props)(Component)</code> which makes it able to correctly support files like <a href="https://github.com/eclipse-apoapsis/ort-server/blob/ddfc624ce71b9f2ca6bad9b8c82d4c3249dd9c8b/ui/src/routes/__root.tsx">this one</a> given this config:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md">eslint-plugin-react-refresh's changelog</a>.</em></p> <blockquote> <h2>0.5.0</h2> <h3>Breaking changes</h3> <ul> <li>The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use <a href="https://eslint.org/docs/latest/use/configure/migration-guide">flat config</a></li> <li>A new <code>reactRefresh</code> export is available and prefered over the default export. It's an object with two properties: <ul> <li><code>plugin</code>: The plugin object with the rules</li> <li><code>configs</code>: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.</li> </ul> </li> <li><code>customHOCs</code> option was renamed to <code>extraHOCs</code></li> <li>Validation of HOCs calls is now more strict, you may need to add some HOCs to the <code>extraHOCs</code> option</li> </ul> <p>Config example:</p> <pre lang="js"><code>import { defineConfig } from "eslint/config"; import { reactRefresh } from "eslint-plugin-react-refresh"; <p>export default defineConfig( /* Main config */ reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }), ); </code></pre></p> <p>Config example without config:</p> <pre lang="js"><code>import { defineConfig } from "eslint/config"; import { reactRefresh } from "eslint-plugin-react-refresh"; <p>export default defineConfig({ files: ["<strong>/*.ts", "</strong>/*.tsx"], plugins: { // other plugins "react-refresh": reactRefresh.plugin, }, rules: { // other rules "react-refresh/only-export-components": [ "warn", { extraHOCs: ["someLibHOC"] }, ], }, }); </code></pre></p> <h3>Why</h3> <p>This version follows a revamp of the internal logic to better make the difference between random call expressions like <code>export const Enum = Object.keys(Record)</code> and actual React HOC calls like <code>export const MemoComponent = memo(Component)</code>. (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/93">#93</a>)</p> <p>The rule now handles ternaries and patterns like <code>export default customHOC(props)(Component)</code> which makes it able to correctly support files like <a href="https://github.com/eclipse-apoapsis/ort-server/blob/ddfc624ce71b9f2ca6bad9b8c82d4c3249dd9c8b/ui/src/routes/__root.tsx">this one</a> given this config:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/daa2efb2a2899ad7e793fc42e01bddbbc132074f"><code>daa2efb</code></a> Revamp logic to catch more cases [publish] (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/97">#97</a>)</li> <li>See full diff in <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.4.26...v0.5.0">compare view</a></li> </ul> </details> <br /> Updates `globals` from 17.2.0 to 17.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/globals/releases">globals's releases</a>.</em></p> <blockquote> <h2>v17.3.0</h2> <ul> <li>Update globals (2026-02-01) (<a href="https://redirect.github.com/sindresorhus/globals/issues/336">#336</a>) 295fba9</li> </ul> <hr /> <p><a href="https://github.com/sindresorhus/globals/compare/v17.2.0...v17.3.0">https://github.com/sindresorhus/globals/compare/v17.2.0...v17.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/globals/commit/5edc6020698a76964b0fa17cb604f4484451143b"><code>5edc602</code></a> 17.3.0</li> <li><a href="https://github.com/sindresorhus/globals/commit/295fba929adf8b44f945688233778a57ff754368"><code>295fba9</code></a> Update globals (2026-02-01) (<a href="https://redirect.github.com/sindresorhus/globals/issues/336">#336</a>)</li> <li>See full diff in <a href="https://github.com/sindresorhus/globals/compare/v17.2.0...v17.3.0">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]
