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

ash pushed a change to branch remove-customized-operator-deps
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 36363c0ac3b fixup! Removed the ability for Operators to specify their 
own "scheduling deps".
 discard 3f9a31496a2 Removed the ability for Operators to specify their own 
"scheduling deps".
     add e7d8f5bdaba Use SSH to authenticate GitDagBundle (#44976)
     add 61ecbedfa22 feat: Add OpenLineage support for MsSqlHook and 
MSSQLToGCSOperator (#45637)
     add 4fe78dd8767 feat: Add Hook Level Lineage support for BigQueryHook 
(#45706)
     add 6d16136b8fb Migrate trigger form params to new UI (#45270)
     add 8d7c822ce7f Use standalone DAG processor in standalone command (#45698)
     add 73342f9b1cb GitHook no longer depends on SSHHook (#45711)
     add a63b652f835 Handle backfill for DAGs with no schedule (#45709)
     add d8f023d2a83 Improve grammar in cloud_composer.rst (#45708)
     add bf174d49297 Bump trove-classifiers from 2025.1.10.15 to 2025.1.15.22 
(#45712)
     add c71bd781ce5 Add default for refresh_interval in dag bundles (#45716)
     add d3fc6c40195 Rename latest bundle version to bundle version (#45719)
     add dce84825ae9 Prevent get_connection from being called in example_dags 
(#45704)
     add 17385a226cd Do not start fast-api when `--use-airflow-version` uses 
Airflow 2 (#45724)
     add 4bc37af4f93 Default to standalone DAG processor in breeze (#45723)
     add 439f7b16529 Generate partition aware STS endpoints for EKS Hook 
(#45725)
     add 060eeb73d36 Rename latest_version to version in bundle orm / code 
clarification (#45720)
     add 0682ab733c9 Removed the ability for Operators to specify their own 
"scheduling deps".
     add b95242f8743 fixup! Removed the ability for Operators to specify their 
own "scheduling deps".

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   (36363c0ac3b)
            \
             N -- N -- N   refs/heads/remove-customized-operator-deps 
(b95242f8743)

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:
 Dockerfile.ci                                      |   2 +-
 .../core_api/routes/public/backfills.py            |  33 +-
 .../commands/local_commands/standalone_command.py  |  12 +-
 airflow/dag_processing/bundles/base.py             |  12 +-
 airflow/dag_processing/bundles/dagfolder.py        |   7 +-
 airflow/dag_processing/bundles/git.py              | 107 ++++++-
 airflow/dag_processing/bundles/manager.py          |   2 +-
 .../dag_processing/bundles}/provider.yaml          |  45 ++-
 airflow/dag_processing/collection.py               |   2 +-
 airflow/dag_processing/manager.py                  |  31 +-
 airflow/example_dags/example_params_ui_tutorial.py |   5 +-
 .../versions/0050_3_0_0_add_dagbundlemodel.py      |   6 +-
 airflow/models/backfill.py                         |  22 +-
 airflow/models/dag.py                              |  16 +-
 airflow/models/dagbundle.py                        |   4 +-
 airflow/providers_manager.py                       |   5 +
 .../components/FlexibleForm/FieldAdvancedArray.tsx |  52 ++++
 .../FlexibleForm/FieldBool.tsx}                    |  13 +-
 .../{Stat.tsx => FlexibleForm/FieldDateTime.tsx}   |  22 +-
 .../src/components/FlexibleForm/FieldDropdown.tsx  |  66 ++++
 .../components/FlexibleForm/FieldMultiSelect.tsx   |  60 ++++
 .../FlexibleForm/FieldMultilineText.tsx}           |  15 +-
 .../FieldNumber.tsx}                               |  25 +-
 .../ui/src/components/FlexibleForm/FieldObject.tsx |  52 ++++
 .../ui/src/components/FlexibleForm/FieldRow.tsx    |  49 +++
 .../src/components/FlexibleForm/FieldSelector.tsx  | 118 ++++++++
 .../src/components/FlexibleForm/FieldString.tsx}   |  47 ++-
 .../components/FlexibleForm/FieldStringArray.tsx}  |  25 +-
 .../src/components/FlexibleForm/FlexibleForm.tsx   |  64 ++++
 .../{Stat.tsx => FlexibleForm/HiddenInput.tsx}     |  19 +-
 .../src/components/FlexibleForm/Row.tsx}           |  21 +-
 .../FlexibleForm/index.tsx}                        |  19 +-
 .../src/components/TriggerDag/TriggerDAGForm.tsx   |  16 +-
 .../components/ui/{Status.tsx => NumberInput.tsx}  |  29 +-
 airflow/ui/src/queries/useDagParams.ts             |  41 ++-
 airflow/www/views.py                               |   2 +-
 dev/breeze/doc/images/output-commands.svg          | 180 ++++++-----
 dev/breeze/doc/images/output_shell.svg             | 334 ++++++++++++---------
 dev/breeze/doc/images/output_shell.txt             |   2 +-
 dev/breeze/doc/images/output_start-airflow.svg     | 246 ++++++++-------
 dev/breeze/doc/images/output_start-airflow.txt     |   2 +-
 .../src/airflow_breeze/commands/common_options.py  |   6 +-
 .../airflow_breeze/commands/developer_commands.py  |  40 +--
 .../commands/developer_commands_config.py          |   2 +
 dev/breeze/tests/test_selective_checks.py          |   6 +-
 .../operators/cloud/cloud_composer.rst             |  18 +-
 docs/apache-airflow/img/airflow_erd.sha256         |   2 +-
 docs/apache-airflow/img/airflow_erd.svg            |  74 ++---
 docs/apache-airflow/start.rst                      |   4 +
 generated/provider_dependencies.json               |   3 +-
 .../src/airflow/providers/amazon/aws/hooks/eks.py  |  13 +-
 .../airflow/providers/google/assets/bigquery.py    |  17 ++
 .../providers/google/cloud/hooks/bigquery.py       |  32 +-
 .../google/cloud/transfers/mssql_to_gcs.py         |  29 +-
 .../src/airflow/providers/google/provider.yaml     |   4 +
 .../providers/microsoft/mssql/hooks/mssql.py       |  28 ++
 providers/tests/amazon/aws/hooks/test_eks.py       |   4 +-
 providers/tests/google/assets/test_bigquery.py     |  16 +-
 .../tests/google/cloud/hooks/test_bigquery.py      | 117 +++++++-
 .../google/cloud/transfers/test_mssql_to_gcs.py    |  65 ++++
 .../aws/example_bedrock_retrieve_and_generate.py   |   5 +-
 pyproject.toml                                     |   2 +-
 scripts/docker/entrypoint_ci.sh                    |   2 +-
 scripts/in_container/bin/run_tmux                  |  10 +-
 tests/always/test_example_dags.py                  |  22 +-
 .../core_api/routes/public/test_backfills.py       |  27 ++
 tests/dag_processing/test_collection.py            |   2 +-
 tests/dag_processing/test_dag_bundles.py           | 255 ++++++++++++----
 tests/dag_processing/test_manager.py               |   4 +-
 tests/models/test_dag.py                           |   8 +-
 70 files changed, 1943 insertions(+), 704 deletions(-)
 copy {providers/src/airflow/providers/sendgrid => 
airflow/dag_processing/bundles}/provider.yaml (70%)
 create mode 100644 
airflow/ui/src/components/FlexibleForm/FieldAdvancedArray.tsx
 copy airflow/ui/src/{context/colorMode/ColorModeProvider.tsx => 
components/FlexibleForm/FieldBool.tsx} (73%)
 copy airflow/ui/src/components/{Stat.tsx => FlexibleForm/FieldDateTime.tsx} 
(67%)
 create mode 100644 airflow/ui/src/components/FlexibleForm/FieldDropdown.tsx
 create mode 100644 airflow/ui/src/components/FlexibleForm/FieldMultiSelect.tsx
 copy airflow/ui/src/{context/colorMode/ColorModeProvider.tsx => 
components/FlexibleForm/FieldMultilineText.tsx} (71%)
 copy airflow/ui/src/components/{MetricsBadge.tsx => 
FlexibleForm/FieldNumber.tsx} (62%)
 create mode 100644 airflow/ui/src/components/FlexibleForm/FieldObject.tsx
 create mode 100644 airflow/ui/src/components/FlexibleForm/FieldRow.tsx
 create mode 100644 airflow/ui/src/components/FlexibleForm/FieldSelector.tsx
 copy airflow/{www/static/js/components/BreadcrumbText.tsx => 
ui/src/components/FlexibleForm/FieldString.tsx} (50%)
 copy airflow/{www/static/js/components/LinkButton.tsx => 
ui/src/components/FlexibleForm/FieldStringArray.tsx} (66%)
 create mode 100644 airflow/ui/src/components/FlexibleForm/FlexibleForm.tsx
 copy airflow/ui/src/components/{Stat.tsx => FlexibleForm/HiddenInput.tsx} (66%)
 copy airflow/{www/static/js/components/LinkButton.tsx => 
ui/src/components/FlexibleForm/Row.tsx} (63%)
 copy airflow/ui/src/{context/timezone/useTimezone.ts => 
components/FlexibleForm/index.tsx} (70%)
 copy airflow/ui/src/components/ui/{Status.tsx => NumberInput.tsx} (55%)

Reply via email to