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

potiuk pushed a change to branch move-first-provider-to-separate-project
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 58223ab718d Move first provider (airbyte) to a separate project
     add 96645b1680d AIP-66: Add support for parsing DAG bundles  (#45532)
     add 019ed2ba0e7 Add missing newline on conn string example (#45603)
     add e229ca0a369 Add missing methods in fab provider's AirflowAppBuilder 
class (#45611)
     add db132fb56f6 Update conf column in dag_run table type from bytes to 
JSON (#44533)
     add 90eae569db4 OpenLineage: Include `AirflowDagRunFacet` in 
complete/failed events (#45615)
     add 84e87642a9b Move `list_py_file_paths` test to the right file (#45617)
     add 05fe5a4ccf2 Add write feature to ESTaskHandler (#44973)
     add 3c63bb6fff4 Fix kubernetes executor watcher kube_client_request_args 
shadowing (#45528)
     add 8e6e9c44a5e Improve google credentials error message (#45553)
     add 1d2f197c5ca Move first provider (airbyte) to a separate project

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   (58223ab718d)
            \
             N -- N -- N   refs/heads/move-first-provider-to-separate-project 
(1d2f197c5ca)

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:
 .../local_commands/dag_processor_command.py        |   1 -
 airflow/config_templates/airflow_local_settings.py |   4 +
 .../provider_config_fallback_defaults.cfg          |   2 +
 airflow/dag_processing/collection.py               |  16 +-
 airflow/dag_processing/manager.py                  | 232 ++++++----
 airflow/dag_processing/processor.py                |   5 +
 airflow/jobs/scheduler_job_runner.py               |   2 -
 ..._3_0_0_remove_pickled_data_from_dagrun_table.py | 145 +++++++
 airflow/models/dag.py                              |  21 +-
 airflow/models/dagbag.py                           |  20 +-
 airflow/models/dagrun.py                           |   5 +-
 airflow/utils/db.py                                |   2 +-
 airflow/utils/file.py                              |   9 -
 contributing-docs/11_provider_packages.rst         |   6 +
 dev/README_RELEASE_PROVIDER_PACKAGES.md            |   3 +-
 dev/breeze/doc/images/output_build-docs.svg        |  20 +-
 dev/breeze/doc/images/output_build-docs.txt        |   2 +-
 .../airflow_breeze/commands/developer_commands.py  |   7 +
 .../commands/developer_commands_config.py          |   1 +
 .../src/airflow_breeze/params/doc_build_params.py  |   3 +
 .../prepare_providers/provider_documentation.py    |  13 +-
 dev/breeze/src/airflow_breeze/utils/packages.py    |   2 +-
 docs/.gitignore                                    |   3 +
 .../connections.rst                                |   1 +
 .../logging/index.rst                              |  19 +
 docs/apache-airflow/img/airflow_erd.sha256         |   2 +-
 docs/apache-airflow/img/airflow_erd.svg            |   2 +-
 docs/apache-airflow/migrations-ref.rst             |   4 +-
 docs/build_docs.py                                 |  61 ++-
 docs/conf.py                                       |  10 +-
 docs/exts/airflow_intersphinx.py                   |   1 -
 docs/exts/docs_build/docs_builder.py               |  79 +++-
 docs/exts/docs_build/errors.py                     |   4 +-
 docs/exts/docs_build/lint_checks.py                |  21 +-
 docs/exts/docs_build/spelling_checks.py            |   4 +-
 docs/exts/provider_yaml_utils.py                   |   3 +-
 docs/spelling_wordlist.txt                         |   1 +
 newsfragments/44533.significant.rst                |   5 +
 providers/airbyte/CHANGELOG.rst                    | 427 -------------------
 providers/airbyte/docs/changelog.rst               | 414 +++++++++++++++++-
 providers/airbyte/docs/index.rst                   |   2 +-
 providers/airbyte/docs/operators/airbyte.rst       |   4 +-
 .../tests/system/providers/airbyte}/__init__.py    |   0
 .../executors/kubernetes_executor_utils.py         |   8 +-
 .../providers/elasticsearch/log/es_task_handler.py |  62 ++-
 .../airflow/providers/elasticsearch/provider.yaml  |  14 +
 .../fab/www/extensions/init_appbuilder.py          |   6 +
 .../google/cloud/utils/credentials_provider.py     |  16 +-
 .../providers/openlineage/plugins/adapter.py       |   4 +
 .../providers/openlineage/plugins/listener.py      |   3 +
 .../elasticsearch/log/test_es_task_handler.py      |  26 +-
 .../api_endpoints/test_dag_run_endpoint.py         |  25 +-
 .../api_endpoints/test_dag_source_endpoint.py      |  24 +-
 providers/tests/fab/auth_manager/conftest.py       |   7 +-
 .../tests/openlineage/plugins/test_adapter.py      |   4 +
 providers/tests/openlineage/plugins/test_utils.py  |  10 +-
 tests/api_connexion/conftest.py                    |   7 +-
 tests/api_connexion/endpoints/test_dag_parsing.py  |  14 +-
 .../endpoints/test_dag_run_endpoint.py             |   4 +-
 .../endpoints/test_dag_source_endpoint.py          |  13 +-
 .../endpoints/test_extra_link_endpoint.py          |   4 +-
 .../test_mapped_task_instance_endpoint.py          |   4 +-
 .../api_connexion/endpoints/test_task_endpoint.py  |   5 +-
 .../endpoints/test_task_instance_endpoint.py       |   8 +-
 tests/api_fastapi/conftest.py                      |   9 +-
 .../core_api/routes/public/test_dag_parsing.py     |  15 +-
 .../core_api/routes/public/test_dag_run.py         |   2 +-
 .../core_api/routes/public/test_dag_sources.py     |  13 +-
 .../core_api/routes/public/test_dag_tags.py        |   3 +-
 .../core_api/routes/public/test_dags.py            |   4 +-
 .../core_api/routes/public/test_extra_links.py     |   4 +-
 .../core_api/routes/public/test_task_instances.py  |  20 +-
 .../api_fastapi/core_api/routes/ui/test_assets.py  |   2 +-
 .../core_api/routes/ui/test_dashboard.py           |   2 +-
 .../core_api/routes/ui/test_structure.py           |   4 +-
 .../commands/remote_commands/test_asset_command.py |   6 +-
 .../remote_commands/test_backfill_command.py       |   7 +-
 .../commands/remote_commands/test_dag_command.py   |  27 +-
 .../commands/remote_commands/test_task_command.py  |   8 +-
 tests/conftest.py                                  |  36 ++
 tests/dag_processing/test_collection.py            |  51 ++-
 tests/dag_processing/test_manager.py               | 470 +++++++++++++--------
 tests/jobs/test_scheduler_job.py                   | 305 ++++++-------
 tests/models/test_dag.py                           |  68 +--
 tests/models/test_dagcode.py                       |  11 +-
 tests/models/test_dagrun.py                        |   8 +-
 tests/models/test_serialized_dag.py                |  14 +-
 tests/models/test_taskinstance.py                  |  12 +-
 tests/operators/test_trigger_dagrun.py             | 128 +++---
 tests/sensors/test_external_task_sensor.py         |   4 +-
 tests/utils/test_file.py                           |  34 +-
 tests/www/views/conftest.py                        |   6 +-
 tests/www/views/test_views_acl.py                  |   2 +-
 tests/www/views/test_views_decorators.py           |   8 +-
 tests/www/views/test_views_log.py                  |   7 +-
 tests/www/views/test_views_tasks.py                |   6 +-
 tests_common/pytest_plugin.py                      |  13 +
 tests_common/test_utils/db.py                      |  36 +-
 98 files changed, 1976 insertions(+), 1225 deletions(-)
 create mode 100644 
airflow/migrations/versions/0055_3_0_0_remove_pickled_data_from_dagrun_table.py
 create mode 100644 docs/.gitignore
 create mode 100644 newsfragments/44533.significant.rst
 delete mode 100644 providers/airbyte/CHANGELOG.rst
 copy {airflow/api_connexion => 
providers/airbyte/tests/system/providers/airbyte}/__init__.py (100%)

Reply via email to