This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/pip/airflow-core/pip-security-updates-6edc297103
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard aa8854a72b7 Bump gitpython
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 c5954df9352 Bump gitpython
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 (aa8854a72b7)
\
N -- N -- N
refs/heads/dependabot/pip/airflow-core/pip-security-updates-6edc297103
(c5954df9352)
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 +-
airflow-core/pyproject.toml | 2 +-
.../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 | 2 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 28 +-
.../src/components/MonacoEditor/configureMonaco.ts | 39 +-
.../components/MonacoEditor/pythonFStrings.test.ts | 4 +-
.../ui/src/components/renderStructuredLog.tsx | 1 +
.../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 ++++
devel-common/pyproject.toml | 2 +-
generated/known_airflow_exceptions.txt | 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/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 +++++++
.../git/src/airflow/providers/git/bundles/git.py | 2 +-
providers/git/tests/unit/git/bundles/test_git.py | 4 +-
pyproject.toml | 11 +
scripts/ci/prek/check_imports_in_providers.py | 2 +-
scripts/ci/prek/ruff_format.py | 2 +-
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 +-
55 files changed, 2799 insertions(+), 276 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