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

bugraoz93 pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard c1fefd1a682 Regenerate provider docs with up-to-date cross-provider 
dependencies
 discard af3c8ec97e3 fix mypy error
 discard 00f51a934e3 Keep CI environment upgrade scoped to tooling, not 
provider libraries
 discard cb678334831 [main] CI: Upgrade important CI environment
     add b176ec91dc5 Gate provider release on artifact completeness check 
before vote (#69141)
     add 3b13e593ac6 Fix cursor pagination dropping rows when sorting by a 
nullable column (#68869)
     add 052c26b046f Bump the fab-ui-package-updates group across 1 directory 
with 3 updates (#69133)
     add 7790bb52994 Fix Dag detail page 500 for Dags without a fileloc #69035 
(#69110)
     add bfd7689273d Add OpenLineage system tests for new emission_policy 
feature (#69181)
     add 2e50d6e5f48 Bump the fab-ui-package-updates group across 1 directory 
with 3 updates (#69186)
     add 0bfc7eac0e8 Fix `SSHRemoteJobOperator` orphaning the remote job on 
cancellation (#68644)
     add 71c3da6f407 [main] CI: Upgrade important CI environment
     add 8d5a0feddd5 Keep CI environment upgrade scoped to tooling, not 
provider libraries
     add 6862bfeac7e fix mypy error
     add ee52a23b36a Regenerate provider docs with up-to-date cross-provider 
dependencies

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   (c1fefd1a682)
            \
             N -- N -- N   refs/heads/ci-upgrade-main (ee52a23b36a)

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:
 .../src/airflow/api_fastapi/common/cursors.py      |  66 +--
 .../api_fastapi/core_api/datamodels/dags.py        |   2 +-
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |   4 +-
 .../core_api/openapi/v2-rest-api-generated.yaml    |   8 +-
 .../api_fastapi/core_api/routes/public/dag_run.py  |   7 +-
 .../core_api/routes/public/task_instances.py       |  11 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |  27 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   6 +-
 .../Code/FileLocation.test.tsx}                    |  27 +-
 .../airflow/ui/src/pages/Dag/Code/FileLocation.tsx |  14 +-
 .../tests/unit/api_fastapi/common/test_cursors.py  | 123 +++++-
 .../core_api/routes/public/test_dag_run.py         |  34 ++
 .../core_api/routes/public/test_dags.py            |  20 +
 .../core_api/routes/public/test_task_instances.py  | 101 +++++
 .../src/airflowctl/api/datamodels/generated.py     |   4 +-
 dev/README_RELEASE_PROVIDERS.md                    |  14 +
 .../fab/src/airflow/providers/fab/www/package.json |  10 +-
 .../src/airflow/providers/fab/www/pnpm-lock.yaml   | 478 +++++++++++----------
 ... example_openlineage_policy_conf_locked_dag.py} |  17 +-
 ...ple_openlineage_policy_conf_source_code_dag.py} |  21 +-
 ...ample_openlineage_policy_dag_emit_false_dag.py} |  21 +-
 ...ple_openlineage_policy_dag_events_false_dag.py} |  31 +-
 ...le_openlineage_policy_dag_override_task_dag.py} |  17 +-
 ...ple_openlineage_policy_extract_metadata_dag.py} |  46 +-
 ...ample_openlineage_policy_full_task_info_dag.py} |  15 +-
 .../example_openlineage_policy_hook_lineage_dag.py | 107 +++++
 ... example_openlineage_policy_source_code_dag.py} |  28 +-
 ...mple_openlineage_policy_task_emit_false_dag.py} |  26 +-
 .../openlineage_policy_conf_locked_dag.json        |  26 ++
 .../openlineage_policy_conf_source_code_dag.json   |  50 +++
 .../openlineage_policy_dag_emit_false_dag.json     |  65 +++
 .../openlineage_policy_dag_events_false_dag.json   |  69 +++
 .../openlineage_policy_dag_override_task_dag.json  |  50 +++
 .../openlineage_policy_extract_metadata_dag.json   |  50 +++
 ... => openlineage_policy_full_task_info_dag.json} |  20 +-
 .../openlineage_policy_hook_lineage_dag.json       | 174 ++++++++
 .../openlineage_policy_source_code_dag.json        |  68 +++
 .../openlineage_policy_task_emit_false_dag.json    |  57 +++
 .../src/airflow/providers/ssh/utils/remote_job.py  |  52 ++-
 .../ssh/tests/unit/ssh/utils/test_remote_job.py    |  90 +++-
 40 files changed, 1631 insertions(+), 425 deletions(-)
 copy 
airflow-core/src/airflow/ui/src/pages/{Connections/NothingFoundInfo.test.tsx => 
Dag/Code/FileLocation.test.tsx} (59%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_docs_file_dag.py
 => example_openlineage_policy_conf_locked_dag.py} (72%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_docs_file_dag.py
 => example_openlineage_policy_conf_source_code_dag.py} (66%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_versioned_dag.py
 => example_openlineage_policy_dag_emit_false_dag.py} (73%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_base_simple_dag.py
 => example_openlineage_policy_dag_events_false_dag.py} (59%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_docs_file_dag.py
 => example_openlineage_policy_dag_override_task_dag.py} (70%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_setup_teardown_dag.py
 => example_openlineage_policy_extract_metadata_dag.py} (56%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_docs_file_dag.py
 => example_openlineage_policy_full_task_info_dag.py} (77%)
 create mode 100644 
providers/openlineage/tests/system/openlineage/example_openlineage_policy_hook_lineage_dag.py
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_docs_file_dag.py
 => example_openlineage_policy_source_code_dag.py} (60%)
 copy 
providers/openlineage/tests/system/openlineage/{example_openlineage_base_simple_dag.py
 => example_openlineage_policy_task_emit_false_dag.py} (72%)
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_conf_locked_dag.json
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_conf_source_code_dag.json
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_dag_emit_false_dag.json
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_dag_events_false_dag.json
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_dag_override_task_dag.json
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_extract_metadata_dag.json
 copy 
providers/openlineage/tests/system/openlineage/expected_events/{openlineage_mapped_simple_dag.json
 => openlineage_policy_full_task_info_dag.json} (52%)
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_hook_lineage_dag.json
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_source_code_dag.json
 create mode 100644 
providers/openlineage/tests/system/openlineage/expected_events/openlineage_policy_task_emit_false_dag.json

Reply via email to