This is an automated email from the ASF dual-hosted git repository.

dependabot[bot] pushed a change to branch 
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-d83a3cf524
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 74869d4ebf0 Bump the fab-ui-package-updates group across 1 directory 
with 2 updates
     add de5c8196de5 Fix release dry-run aborting on a workflow run it never 
dispatched (#71131)
     add ddef168d1fe Give each mypy prek hook its own file list in CI (#70654)
     add 4a6f11c55ab Bump the react group across 1 directory with 2 updates 
(#71021)
     add c0f6a60cdcb Update changelog with better wording (#71161)
     add 3dd13702095 UI: Fix preventRunningTasks showing as raw i18n key in 
Clear Task dialogs (#71045)
     add f3a093d0b99 Bump the ui-plugin-template-package-updates group across 1 
directory with 4 updates (#71027)
     add 7781dfb9a99 Fix broken translation guide links in the i18n README 
(#71179)
     add b6e7c2088c9 Support Monaco Editor 0.56 public exports (#70937)
     add 30f782cd67d Fix copying task logs dropping rows that scrolled out of 
view (#71156)
     add 299ca2c8580 Fix malformed GitDagBundle error message for missing 
repository path (#70622)
     add 86e86bd07d0 Fix missing _team_name on DagRun before some listener 
calls (#70760)
     add 858df9991d0 Bump ruff to 0.16.0 and pin the base lint rule set (#70725)
     add 61f028989c0 [AIP-94] airflowctl jobs: add check command (#68534)
     add e24f5294645 Add indexes on serialized_dag and dag_code (#69391)
     add e8ba9507034 Add Databricks-native retry settings to task operators 
(#69182)
     add 787e323ca46 Support custom redaction and message length cap in 
LLMRetryPolicy (#70830)
     add ee643dffc40 Use sqlite3.sqlite_version_info instead of hand-parsing 
the version string (#71115)
     add 5ed6f8f3217 Improve confirmation output when connections are added via 
cli (#71215)
     add 5b04b42936f Avoid scheduler crash when periodic maintenance actions 
fail (#69487)
     add 805a37cc03c Clarify template field validator guidance (#71210)
     add 71dbe2b714c Bump the fab-ui-package-updates group across 1 directory 
with 2 updates

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (74869d4ebf0)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-d83a3cf524
 (71dbe2b714c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |   2 +-
 airflow-core/docs/migrations-ref.rst               |   4 +-
 .../src/airflow/cli/commands/connection_command.py |  28 +-
 .../src/airflow/cli/commands/jobs_command.py       |   2 +
 airflow-core/src/airflow/configuration.py          |  11 +-
 .../src/airflow/jobs/scheduler_job_runner.py       |  41 +-
 ..._4_0_add_indexes_on_serialized_dag_and_dag_.py} |  32 +-
 airflow-core/src/airflow/models/dagcode.py         |   3 +-
 airflow-core/src/airflow/models/serialized_dag.py  |   3 +-
 airflow-core/src/airflow/ui/package.json           |   6 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 190 +++---
 airflow-core/src/airflow/ui/public/i18n/README.md  |  40 +-
 .../airflow/ui/public/i18n/locales/it/dags.json    |   1 +
 .../airflow/ui/public/i18n/locales/th/dags.json    |   1 +
 .../src/components/MonacoEditor/configureMonaco.ts |  39 +-
 .../components/MonacoEditor/pythonFStrings.test.ts |   4 +-
 .../ui/src/components/renderStructuredLog.tsx      |   1 +
 .../src/airflow/ui/src/i18n/config.test.ts         |  20 +-
 airflow-core/src/airflow/ui/src/i18n/config.ts     |  18 +-
 .../ui/src/pages/TaskInstance/Logs/Logs.test.tsx   | 113 ++++
 .../src/pages/TaskInstance/Logs/TaskLogContent.tsx |  37 +-
 .../pages/TaskInstance/Logs/logSelection.test.ts   | 230 +++++++-
 .../ui/src/pages/TaskInstance/Logs/logSelection.ts | 135 +++++
 .../src/airflow/ui/src/queries/useLogs.test.ts     |  58 ++
 .../src/airflow/ui/src/queries/useLogs.tsx         |  52 +-
 airflow-core/src/airflow/ui/src/vite-env.d.ts      |   9 +-
 airflow-core/src/airflow/utils/db.py               |   2 +-
 airflow-core/src/airflow/utils/event_scheduler.py  |  24 +-
 .../unit/cli/commands/test_command_deprecations.py |   2 +
 .../unit/cli/commands/test_connection_command.py   |  18 +-
 airflow-core/tests/unit/core/test_configuration.py |  19 +
 airflow-core/tests/unit/jobs/test_scheduler_job.py | 149 +++++
 ...9_add_indexes_on_serialized_dag_and_dag_code.py |  55 ++
 .../tests/unit/utils/test_event_scheduler.py       |  33 ++
 airflow-ctl/docs/images/command_hashes.txt         |   2 +-
 airflow-ctl/docs/images/output_jobs.svg            |  66 ++-
 airflow-ctl/src/airflowctl/ctl/cli_config.py       |  49 ++
 .../src/airflowctl/ctl}/commands/jobs_command.py   |  43 +-
 .../airflow_ctl/ctl/commands/test_jobs_command.py  | 115 ++++
 .../src/airflow_breeze/utils/gh_workflow_utils.py  |   9 +
 .../breeze/tests/test_gh_workflow_utils.py         |  28 +-
 .../react_plugin_template/package.json             |   8 +-
 .../react_plugin_template/pnpm-lock.yaml           | 296 ++++------
 devel-common/pyproject.toml                        |   2 +-
 generated/known_airflow_exceptions.txt             |   2 +-
 providers/amazon/docs/changelog.rst                |   2 +-
 providers/apache/beam/docs/changelog.rst           |   2 +-
 providers/apache/hive/docs/changelog.rst           |   2 +-
 providers/apache/livy/docs/changelog.rst           |   2 +-
 providers/arangodb/docs/changelog.rst              |   2 +-
 providers/asana/docs/changelog.rst                 |   2 +-
 providers/celery/docs/changelog.rst                |   2 +-
 providers/cncf/kubernetes/docs/changelog.rst       |   2 +-
 providers/cohere/docs/changelog.rst                |   2 +-
 providers/common/ai/docs/retry_policies.rst        |  74 ++-
 .../airflow/providers/common/ai/policies/retry.py  |  79 ++-
 .../ai/tests/unit/common/ai/policies/test_retry.py | 122 ++++
 providers/common/compat/docs/changelog.rst         |   2 +-
 providers/common/sql/docs/changelog.rst            |   2 +-
 providers/databricks/docs/changelog.rst            |   2 +-
 providers/databricks/docs/operators/notebook.rst   |  38 ++
 providers/databricks/docs/operators/task.rst       |  27 +
 .../providers/databricks/operators/databricks.py   | 275 +++++++--
 .../providers/databricks/triggers/databricks.py    | 101 +++-
 .../unit/databricks/operators/test_databricks.py   | 646 +++++++++++++++++++++
 .../unit/databricks/triggers/test_databricks.py    | 201 +++++++
 providers/datadog/docs/changelog.rst               |   2 +-
 providers/dbt/cloud/docs/changelog.rst             |   2 +-
 providers/dingding/docs/changelog.rst              |   2 +-
 providers/discord/docs/changelog.rst               |   2 +-
 providers/docker/docs/changelog.rst                |   2 +-
 providers/elasticsearch/docs/changelog.rst         |   2 +-
 providers/exasol/docs/changelog.rst                |   2 +-
 .../src/airflow/providers/fab/www/pnpm-lock.yaml   |  18 +-
 providers/ftp/docs/changelog.rst                   |   2 +-
 .../git/src/airflow/providers/git/bundles/git.py   |   2 +-
 providers/git/tests/unit/git/bundles/test_git.py   |   4 +-
 providers/github/docs/changelog.rst                |   2 +-
 providers/google/docs/changelog.rst                |   2 +-
 providers/grpc/docs/changelog.rst                  |   2 +-
 providers/http/docs/changelog.rst                  |   2 +-
 providers/imap/docs/changelog.rst                  |   2 +-
 providers/influxdb/docs/changelog.rst              |   2 +-
 providers/jenkins/docs/changelog.rst               |   2 +-
 providers/microsoft/azure/docs/changelog.rst       |   2 +-
 providers/microsoft/mssql/docs/changelog.rst       |   2 +-
 providers/microsoft/winrm/docs/changelog.rst       |   2 +-
 pyproject.toml                                     |  11 +
 scripts/ci/prek/check_imports_in_providers.py      |   2 +-
 scripts/ci/prek/ruff_format.py                     |   2 +-
 ...un_mypy_full_dist_local_venv_or_breeze_in_ci.py |   4 +-
 scripts/ci/prek/validate_operators_init.py         |   8 +-
 .../tests/ci/prek/test_validate_operators_init.py  |  13 +
 .../airflow/sdk/execution_time/schema/AGENTS.md    |   9 +-
 uv.lock                                            |  44 +-
 95 files changed, 3140 insertions(+), 602 deletions(-)
 copy 
airflow-core/src/airflow/migrations/versions/{0126_3_4_0_add_index_on_asset_uri.py
 => 0129_3_4_0_add_indexes_on_serialized_dag_and_dag_.py} (51%)
 create mode 100644 airflow-core/src/airflow/ui/src/queries/useLogs.test.ts
 create mode 100644 
airflow-core/tests/unit/migrations/test_0129_add_indexes_on_serialized_dag_and_dag_code.py
 copy {airflow-core/src/airflow/cli => 
airflow-ctl/src/airflowctl/ctl}/commands/jobs_command.py (51%)
 create mode 100644 
airflow-ctl/tests/airflow_ctl/ctl/commands/test_jobs_command.py
 copy task-sdk/src/airflow/sdk/bases/secrets_backend.py => 
dev/breeze/tests/test_gh_workflow_utils.py (54%)

Reply via email to