Bump the 3-2-core-ui-package-updates group across 1 directory with 29 updates#64825
Open
dependabot[bot] wants to merge 66 commits intov3-2-testfrom
Conversation
…sing (#64501) (#64515) The `conf` object in `airflow.sdk.configuration` is lazily initialized via `__getattr__`. Importing it at module level in `cache.py` causes `ImportError` when the module is deserialized in a multiprocessing child process on Python 3.14. Moving the import into `SecretCache.init()` where it's actually used avoids this issue. (cherry picked from commit 7438cbf)
…ests (#64558) - Replace `list(_evaluate_direct_relatives())` with lazy iteration to avoid eagerly materializing the generator. The original `list()` call forced all side effects (including `ti.set_state()` DB writes) to execute upfront. In the scheduler hot path, this means N unnecessary DB writes per teardown when the first upstream already blocks it. At enterprise scale (5000 DAGs, 100 tasks/DAG), benchmarks show ~4.95M wasted DB writes and ~17x slower evaluation per scheduling loop. - Add early return in `_evaluate_teardown_scope()` when `in_scope_ids` is empty, avoiding unnecessary iteration over all finished TIs. - Add test for parallel branch DAG shape matching the actual bug topology from #29332 (setup >> [t_fail, t_slow] >> downstream >> td). - Add test verifying teardowns run when in-scope tasks are FAILED or UPSTREAM_FAILED (not just SUCCESS), since teardowns must clean up resources regardless of upstream failure state. - Remove fragile string assertion on error message format. (cherry picked from commit d15a756)
…#64447) (#64495) Change cancel-in-progress from true to false so that concurrent runs queue instead of cancelling each other. This check is very lightweight (single API call) so queueing has no downside, and avoids spurious "Cancelled" status on PRs that receive multiple events in quick succession (e.g. push + label change). (cherry picked from commit 7e29628) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
…) (#64452) Adds a CI workflow that validates all `uses:` references in workflow files against the ASF Infrastructure approved allowlist. This catches action refs that would cause silent "Startup failure" errors in CI. (cherry picked from commit c496a20) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
) * Add AGENTS.md guidelines for dev/ scripts New scripts in dev/ should be standalone Python (not bash) with inline script metadata so they can be run via `uv run`. * Add AGENTS.md guidelines for dev/ and scripts/ci/prek/ Add coding guidelines for AI agents working in these directories: - dev/AGENTS.md: new scripts must be standalone Python with inline script metadata (after the license header), run via `uv run`. - scripts/ci/prek/AGENTS.md: use common_prek_utils.py helpers, breeze-dependent hooks go at the end of .pre-commit-config.yaml. (cherry picked from commit beade8e) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
…64494) The condition \`options.length < 4\` caused exactly 4 options to render nothing — shouldRenderOptionButton was false but no fallback UI was triggered either. Changed to \`options.length <= 4\` so 4 options render as buttons. Fixes #64413 * add ci fixes --------- (cherry picked from commit a48d8a5) Co-authored-by: Shrividya Hegde <5312302+Shrividya@users.noreply.github.com> Co-authored-by: Rahul Vats <43964496+vatsrahul1001@users.noreply.github.com>
…rwarding (#64067) (#64592) This restores the ElasticsearchTaskHandler in airflow_local_settings.py and ensures LocalExecutor forwards task logs to stdout by passing subprocess_logs_to_stdout=True to the supervisor. (cherry picked from commit f1495c2) closes: #63960 closes: #49863 closes: #54501 Co-authored-by: Subham <subhamsangwan26@gmail.com> Co-authored-by: Rahul Vats <43964496+vatsrahul1001@users.noreply.github.com>
…nd scheduled builds (#64673) (#64675) UI E2E tests are expensive and should only run when UI files actually changed or the "full tests needed" label is explicitly set. Previously they ran on every push to main, canary build, scheduled run, and any PR that triggered derived full_tests_needed (env file changes, large PRs, etc.). (cherry picked from commit b15a5c9) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
…4713) (#64717) Temporary switch to the latest commit of infrastructure-actions allowlist-check until apache/infrastructure-actions#662 is merged, which will provide a proper tagged release. (cherry picked from commit 04b3dd0) Co-authored-by: Jarek Potiuk <jarek@potiuk.com>
Bumps the github-actions-updates group with 3 updates: [actions/setup-go](https://github.com/actions/setup-go), [github/codeql-action](https://github.com/github/codeql-action) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `actions/setup-go` from 6.3.0 to 6.4.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@4b73464...4a36011) Updates `github/codeql-action` from 4.32.6 to 4.35.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@0d579ff...c10b806) Updates `astral-sh/setup-uv` from 7.6.0 to 8.0.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@37802ad...cec2083) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-updates - dependency-name: github/codeql-action dependency-version: 4.35.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-updates - dependency-name: astral-sh/setup-uv dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…zedDagModel (#64322) (#64738) * fix(scheduler): skip asset-triggered dags without SerializedDagModel in dags_needing_dagruns Remove those dag_ids from the in-memory candidate set until serialization exists; retain AssetDagRunQueue rows and emit DEBUG logs. Add unit tests and a bugfix newsfragment. * fix(scheduler): prevent premature asset-triggered DagRuns when SerializedDagModel is unavailable * test(dag): persist DagModel before AssetDagRunQueue in unit tests Split DagModel and AssetDagRunQueue inserts and flush after DagModel so foreign-key order matches production DB constraints in TestDagModel. * Apply suggestions from code review * refactor(dag): clarify ADRQ skip log and condense serialized-DAG guard Combine the missing-from-serialized set check with a walrus assignment and improve the debug message when DagRun creation is skipped for DAGs with queued asset events but no SerializedDagModel row. * test(models): align caplog assertions with updated serialized dag warnings * test(dag): align ADRQ missing-serialized log assertion with message text * Apply suggestion from @jscheffl * chore(newsfragments): remove 64322.bugfix.rst --------- (cherry picked from commit b91394a) Co-authored-by: Leonardo Soares <leoss33@outlook.com.br> Co-authored-by: Wei Lee <weilee.rx@gmail.com> Co-authored-by: Jens Scheffler <95105677+jscheffl@users.noreply.github.com>
…IH (#61631) (#64693) * Return 410 Gone for heartbeat when TI was cleared and moved to TIH When a running task instance is cleared, its previous try is archived to the Task Instance History table and the TI receives a new UUID. Subsequent heartbeats from the old process get a 404 because the old UUID no longer exists in the TI table. This change improves the error handling by checking the TIH table when a heartbeat TI is not found. If the UUID exists in TIH, return 410 Gone instead of 404 Not Found, giving the client a more specific signal that the task was cleared rather than never existing. - Server: check TIH on heartbeat NoResultFound, return 410 if found - Supervisor: handle 410 Gone same as 404/409 (terminate process) - Keep 404 for TIs that genuinely never existed closes: #53140 * Update task_instances.py * Update task_instances.py * Update test_task_instances.py * fix(api): use task_instance_id in heartbeat 410 path and align detail message - Replace undefined ti_id_str with task_instance_id in TIH query and log - Use task_instance_id (UUID) for TIH.task_instance_id comparison - Set 410 Gone detail message to match test expectation --------- (cherry picked from commit ce1270b) Co-authored-by: André Ahlert <andre@aex.partners> Co-authored-by: Amogh Desai <amoghrajesh1999@gmail.com>
… updates Bumps the 3-2-core-ui-package-updates group with 29 updates in the /airflow-core/src/airflow/ui directory: | Package | From | To | | --- | --- | --- | | [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.90.21` | `5.96.1` | | [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.13.21` | `3.13.23` | | [@xyflow/react](https://github.com/xyflow/xyflow/tree/HEAD/packages/react) | `12.10.1` | `12.10.2` | | [axios](https://github.com/axios/axios) | `1.13.6` | `1.14.0` | | [dayjs](https://github.com/iamkun/dayjs) | `1.11.19` | `1.11.20` | | [i18next](https://github.com/i18next/i18next) | `25.8.16` | `25.10.10` | | [i18next-http-backend](https://github.com/i18next/i18next-http-backend) | `3.0.2` | `3.0.4` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.71.2` | `7.72.0` | | [react-hotkeys-hook](https://github.com/JohannesKlauss/react-keymap-hook) | `4.6.1` | `4.6.2` | | [react-i18next](https://github.com/i18next/react-i18next) | `15.5.1` | `15.7.4` | | [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.13.1` | `7.14.0` | | [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) | `15.6.1` | `15.6.6` | | [use-debounce](https://github.com/xnimorz/use-debounce) | `10.1.0` | `10.1.1` | | [zustand](https://github.com/pmndrs/zustand) | `5.0.11` | `5.0.12` | | [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `1.2.9` | `1.4.1` | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.1` | `9.39.4` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` | | [@tanstack/eslint-plugin-query](https://github.com/TanStack/query/tree/HEAD/packages/eslint-plugin-query) | `5.91.4` | `5.96.1` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.3` | `24.12.0` | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.56.1` | `8.58.0` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.56.1` | `8.58.0` | | [@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils) | `8.56.1` | `8.58.0` | | [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.4` | `5.2.0` | | [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `4.2.3` | `4.3.0` | | [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.4` | | [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.21.0` | `2.21.1` | | [jsonc-eslint-parser](https://github.com/ota-meshi/jsonc-eslint-parser) | `2.4.1` | `2.4.2` | | [msw](https://github.com/mswjs/msw) | `2.12.10` | `2.12.14` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.56.1` | `8.58.0` | Updates `@tanstack/react-query` from 5.90.21 to 5.96.1 - [Release notes](https://github.com/TanStack/query/releases) - [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md) - [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.96.1/packages/react-query) Updates `@tanstack/react-virtual` from 3.13.21 to 3.13.23 - [Release notes](https://github.com/TanStack/virtual/releases) - [Changelog](https://github.com/TanStack/virtual/blob/main/packages/react-virtual/CHANGELOG.md) - [Commits](https://github.com/TanStack/virtual/commits/@tanstack/react-virtual@3.13.23/packages/react-virtual) Updates `@xyflow/react` from 12.10.1 to 12.10.2 - [Release notes](https://github.com/xyflow/xyflow/releases) - [Changelog](https://github.com/xyflow/xyflow/blob/main/packages/react/CHANGELOG.md) - [Commits](https://github.com/xyflow/xyflow/commits/@xyflow/react@12.10.2/packages/react) Updates `axios` from 1.13.6 to 1.14.0 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](axios/axios@v1.13.6...v1.14.0) Updates `dayjs` from 1.11.19 to 1.11.20 - [Release notes](https://github.com/iamkun/dayjs/releases) - [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md) - [Commits](iamkun/dayjs@v1.11.19...v1.11.20) Updates `i18next` from 25.8.16 to 25.10.10 - [Release notes](https://github.com/i18next/i18next/releases) - [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md) - [Commits](i18next/i18next@v25.8.16...v25.10.10) Updates `i18next-http-backend` from 3.0.2 to 3.0.4 - [Changelog](https://github.com/i18next/i18next-http-backend/blob/master/CHANGELOG.md) - [Commits](i18next/i18next-http-backend@v3.0.2...v3.0.4) Updates `react-hook-form` from 7.71.2 to 7.72.0 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.71.2...v7.72.0) Updates `react-hotkeys-hook` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/JohannesKlauss/react-keymap-hook/releases) - [Changelog](https://github.com/JohannesKlauss/react-hotkeys-hook/blob/main/CHANGELOG.md) - [Commits](JohannesKlauss/react-hotkeys-hook@v4.6.1...v4.6.2) Updates `react-i18next` from 15.5.1 to 15.7.4 - [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md) - [Commits](i18next/react-i18next@v15.5.1...v15.7.4) Updates `react-router-dom` from 7.13.1 to 7.14.0 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.14.0/packages/react-router-dom) Updates `react-syntax-highlighter` from 15.6.1 to 15.6.6 - [Release notes](https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases) - [Changelog](https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD) - [Commits](react-syntax-highlighter/react-syntax-highlighter@v15.6.1...v15.6.6) Updates `use-debounce` from 10.1.0 to 10.1.1 - [Release notes](https://github.com/xnimorz/use-debounce/releases) - [Changelog](https://github.com/xnimorz/use-debounce/blob/master/CHANGELOG.md) - [Commits](https://github.com/xnimorz/use-debounce/commits) Updates `zustand` from 5.0.11 to 5.0.12 - [Release notes](https://github.com/pmndrs/zustand/releases) - [Commits](pmndrs/zustand@v5.0.11...v5.0.12) Updates `@eslint/compat` from 1.2.9 to 1.4.1 - [Release notes](https://github.com/eslint/rewrite/releases) - [Changelog](https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md) - [Commits](https://github.com/eslint/rewrite/commits/compat-v1.4.1/packages/compat) Updates `@eslint/js` from 9.39.1 to 9.39.4 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/commits/v9.39.4/packages/js) Updates `@playwright/test` from 1.58.2 to 1.59.1 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.58.2...v1.59.1) Updates `@tanstack/eslint-plugin-query` from 5.91.4 to 5.96.1 - [Release notes](https://github.com/TanStack/query/releases) - [Changelog](https://github.com/TanStack/query/blob/main/packages/eslint-plugin-query/CHANGELOG.md) - [Commits](https://github.com/TanStack/query/commits/@tanstack/eslint-plugin-query@5.96.1/packages/eslint-plugin-query) Updates `@types/node` from 24.10.3 to 24.12.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@typescript-eslint/eslint-plugin` from 8.56.1 to 8.58.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 8.56.1 to 8.58.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/parser) Updates `@typescript-eslint/utils` from 8.56.1 to 8.58.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/utils) Updates `@vitejs/plugin-react` from 5.1.4 to 5.2.0 - [Release notes](https://github.com/vitejs/vite-plugin-react/releases) - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/plugin-react@5.2.0/packages/plugin-react/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.2.0/packages/plugin-react) Updates `@vitejs/plugin-react-swc` from 4.2.3 to 4.3.0 - [Release notes](https://github.com/vitejs/vite-plugin-react/releases) - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.0/packages/plugin-react-swc) Updates `eslint` from 9.39.1 to 9.39.4 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v9.39.1...v9.39.4) Updates `eslint-plugin-jsonc` from 2.21.0 to 2.21.1 - [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases) - [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md) - [Commits](ota-meshi/eslint-plugin-jsonc@v2.21.0...v2.21.1) Updates `jsonc-eslint-parser` from 2.4.1 to 2.4.2 - [Release notes](https://github.com/ota-meshi/jsonc-eslint-parser/releases) - [Changelog](https://github.com/ota-meshi/jsonc-eslint-parser/blob/master/CHANGELOG.md) - [Commits](ota-meshi/jsonc-eslint-parser@v2.4.1...v2.4.2) Updates `msw` from 2.12.10 to 2.12.14 - [Release notes](https://github.com/mswjs/msw/releases) - [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md) - [Commits](mswjs/msw@v2.12.10...v2.12.14) Updates `typescript-eslint` from 8.56.1 to 8.58.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: "@tanstack/react-query" dependency-version: 5.96.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@tanstack/react-virtual" dependency-version: 3.13.23 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: "@xyflow/react" dependency-version: 12.10.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: axios dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: dayjs dependency-version: 1.11.20 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: i18next dependency-version: 25.10.10 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: i18next-http-backend dependency-version: 3.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: react-hook-form dependency-version: 7.72.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: react-hotkeys-hook dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: react-i18next dependency-version: 15.7.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: react-router-dom dependency-version: 7.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: react-syntax-highlighter dependency-version: 15.6.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: use-debounce dependency-version: 10.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: zustand dependency-version: 5.0.12 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: "@eslint/compat" dependency-version: 1.4.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@eslint/js" dependency-version: 9.39.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: "@playwright/test" dependency-version: 1.59.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@tanstack/eslint-plugin-query" dependency-version: 5.96.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@types/node" dependency-version: 24.12.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.58.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@typescript-eslint/parser" dependency-version: 8.58.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@typescript-eslint/utils" dependency-version: 8.58.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@vitejs/plugin-react" dependency-version: 5.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: "@vitejs/plugin-react-swc" dependency-version: 4.3.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates - dependency-name: eslint dependency-version: 9.39.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: eslint-plugin-jsonc dependency-version: 2.21.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: jsonc-eslint-parser dependency-version: 2.4.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: msw dependency-version: 2.12.14 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: 3-2-core-ui-package-updates - dependency-name: typescript-eslint dependency-version: 8.58.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: 3-2-core-ui-package-updates ... Signed-off-by: dependabot[bot] <support@github.com>
f240e64 to
d7421c8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the 3-2-core-ui-package-updates group with 29 updates in the /airflow-core/src/airflow/ui directory:
5.90.215.96.13.13.213.13.2312.10.112.10.21.13.61.14.01.11.191.11.2025.8.1625.10.103.0.23.0.47.71.27.72.04.6.14.6.215.5.115.7.47.13.17.14.015.6.115.6.610.1.010.1.15.0.115.0.121.2.91.4.19.39.19.39.41.58.21.59.15.91.45.96.124.10.324.12.08.56.18.58.08.56.18.58.08.56.18.58.05.1.45.2.04.2.34.3.09.39.19.39.42.21.02.21.12.4.12.4.22.12.102.12.148.56.18.58.0Updates
@tanstack/react-queryfrom 5.90.21 to 5.96.1Release notes
Sourced from
@tanstack/react-query's releases.... (truncated)
Changelog
Sourced from
@tanstack/react-query's changelog.... (truncated)
Commits
75052a7ci: Version Packages (#10370)73e783bci: Version Packages (#10364)14a97b7test(react-query): replace 'import React' with 'import * as React' in 'usePre...fd8c068test({react,preact}-query/useSuspenseQueries): merge redundant second 'descri...f168555test({react,preact,solid}-query): move 'queryClient' and 'queryCache' to 'bef...afb5812test({react,preact}-query/useSuspenseQueries): inline test helpers, remove sh...9e1bb94test(react-query/useSuspenseQueries): remove unnecessary 'act' wrapper from b...55cee0atest({react,preact}-query/useSuspenseQueries): add test for not suspending bu...7fc6e6atest({react,preact}-query/useSuspenseQueries): add test for not suspending bu...1047cdcci: Version Packages (#10326)Updates
@tanstack/react-virtualfrom 3.13.21 to 3.13.23Release notes
Sourced from
@tanstack/react-virtual's releases.Changelog
Sourced from
@tanstack/react-virtual's changelog.Commits
9394e13ci: Version Packages (#1149)7ece2d5fix(virtual-core): remove incorrect elementsCache cleanup using getItemKey (#...c2f1c39ci: Version Packages (#1139)fc3c733perf(virtual-core): skip sync DOM reads during normal scrolling (#1144)Updates
@xyflow/reactfrom 12.10.1 to 12.10.2Release notes
Sourced from
@xyflow/react's releases.Changelog
Sourced from
@xyflow/react's changelog.Commits
ba0a361chore(packages): bump613ad30Merge pull request #5733 from AlaricBaraou/fix/store-reset-timing-on-remounta6c938fExplicitly allow missingtypefield in BuiltInNode type definitionf2831bdMerge pull request #5727 from unifygtm/clear-nodes-selection-active0e48d84ReturnhasSelectedNodesfromadoptUserNodesand use it to update `nodesSe...6db2bd0fix(react): prevent empty store during ReactFlow remounte7b78d1Merge pull request #5720 from yarikoptic/enh-codespell38f4fefMerge pull request #5722 from dfblhmm/fix/type-definition759042dFix spacing in store/index.ts52d452bCentralize nodesSelectionActive update in setNodes of storeUpdates
axiosfrom 1.13.6 to 1.14.0Release notes
Sourced from axios's releases.
Commits
46bee3dchore(release): prepare release 1.14.0 (#10563)518aff5chore: add AI Moderator workflow for spam detection (#10551)b7dfda3chore(sponsor): update sponsor block (#10557)9aa34d5fix: updated release flow to match the current flows (#10562)e9e5ebeUpdate packages to latest version (#10556)4d8931cfix: formidable dependency vulnerable to arbitrary (#7533)3a6f5c1chore(deps-dev): bump@babel/preset-env(#7531)bcfd299fix: bug axios breaks commonjs compatibility main entry (#7532)d6dcbfdfix: dependabot uses the correct labels (#7530)5dd7ba7chore: upgrade to latest ts (#7522)Install script changes
This version modifies
preparescript that runs during installation. Review the package contents before updating.Updates
dayjsfrom 1.11.19 to 1.11.20Release notes
Sourced from dayjs's releases.
Changelog
Sourced from dayjs's changelog.
Commits
af6e1f8chore(release): 1.11.20 [skip ci]82babd6D2M (#3018)bbe4ab1chore: fix lint error99691c5fix: update updateLocale plugin to merge nested object properties instead of ...9d2b6a1fix: Update locale km.js to support meridiem (#3017)acf21cdchore: update doc55a64e1chore: update doc807facechore: update doc54f4470chore: update doc9ea23c7chore: update docMaintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for dayjs since your current version.
Updates
i18nextfrom 25.8.16 to 25.10.10Release notes
Sourced from i18next's releases.
... (truncated)
Changelog
Sourced from i18next's changelog.
... (truncated)
Commits
e0fa83825.10.10796fdd9feat: suppress support notice automatically in production environments (`NODE...07f585fchangelog1ba9951jsr update8ea74a925.10.974220cclint fixc972af2feat(types): exportSelectorParam\<Ns, KPrefix>helper type — a stable, read...2b5313djsr updatec11655f25.10.85bb5665fix(types): reorderTFunctionSelectoroverloads soParameters\<TFunction>...Updates
i18next-http-backendfrom 3.0.2 to 3.0.4Changelog
Sourced from i18next-http-backend's changelog.
Commits
4dbb4853.0.45f33a0cuse own interpolation function for loadPath and addPath instead of relying on...681c09dupdate ci actionse63ff16adjust deno testa851965adjust deno test3a17e37update next.js example5bd5a5dBump next from 14.2.32 to 14.2.35 in /example/next (#176)8ba9250readme fix282b76cBump next from 14.2.30 to 14.2.32 in /example/next (#172)6b3599dBump next from 14.2.21 to 14.2.30 in /example/next (#171)Updates
react-hook-formfrom 7.71.2 to 7.72.0Release notes
Sourced from react-hook-form's releases.
Commits
1fecf737.72.0f5373fe🌉 allow subscribe formState to track submit state (#13319)f5deec5📖 chore: update issue template CodeSandbox links (#13315)3f4d0f3🐞 fix #13300 checkbox form valdiation ignored with native valdiation (#13310)2e8f081🐞 fix: prevent useFieldArray from marking unrelated fields as dirty (#13299)6067c3f⚓️ feat: build-in form level validate (#13195)Updates
react-hotkeys-hookfrom 4.6.1 to 4.6.2Release notes
Sourced from react-hotkeys-hook's releases.
Commits
47f15a64.6.2bfe319bMerge pull request #1234 from wiserockryan/feature/passthrough-event-listener...67b1f2eMerge pull request #1232 from VladimirTambovtsev/patch-1aa6ce06feature(addEventListener): fix removeEventListener and add abort signal teste1cb7b4feat(addEventListener): passthrough event listener options157b512Update advanced-usage.mdxUpdates
react-i18nextfrom 15.5.1 to 15.7.4Changelog
Sourced from react-i18next's changelog.
Commits
97b079115.7.4c069c02downgrade i18next dep to address #186504e722215.7.34b9d7e3changelog3f815edchore: exportsTransSelectorProps(#1862)4edb89715.7.2652fdebupdate i18next depf0be9f215.7.19106eaerelease641f6e5fix: _EnableSelector type (For compatibility, enableSelector does not exist i...Updates
react-router-domfrom 7.13.1 to 7.14.0Changelog
Sourced from react-router-dom's changelog.
Commits
e31077bchore: Update version for release (#14945)6683e85chore: Update version for release (pre) (#14943)aadb56fchore: Update version for release (#14908)c68a9b3chore: Update version for release (pre) (#14893)Updates
react-syntax-highlighterfrom 15.6.1 to 15.6.6Release notes
Sourced from react-syntax-highlighter's releases.
... (truncated)
ChangelogDescription has been truncated