This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch restore-test-airflow-release-commands
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 3be2662270 Bring back release airflow command to be run in canary build
add 714a933479 openlineage: add `opt-in` option (#37725)
add 0c2a1195d3 Label migration related PRs with area:db-migration label
(#38494)
add 44d94d17a1 changed link in source to the right location (#38493)
add 9924bb6c70 Introducing --latest for generate-issue-content-core
command (#38250)
add 1175ac4706 Implement the breeze tag_providers command (#38447)
add a3f7ddd465 KPO Add follow log in termination step (#38081)
add f4bd0b3828 Fix
`WeaviateIngestOperator`/`WeaviateDocumentIngestOperator` arguments in
`MappedOperator` (#38402)
add c5ac2d25ce fix PT012 in hive (#38501)
add 9d7c47e746 Bring back release airflow command to be run in canary build
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 (3be2662270)
\
N -- N -- N refs/heads/restore-test-airflow-release-commands
(9d7c47e746)
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:
.github/boring-cyborg.yml | 3 +
.github/workflows/additional-ci-image-checks.yml | 7 +-
.github/workflows/check-providers.yml | 3 +-
airflow/providers/cncf/kubernetes/operators/pod.py | 21 ++-
airflow/providers/cncf/kubernetes/triggers/pod.py | 8 +-
airflow/providers/openlineage/conf.py | 5 +
airflow/providers/openlineage/plugins/listener.py | 16 +++
airflow/providers/openlineage/provider.yaml | 8 ++
.../openlineage/utils/selective_enable.py | 87 ++++++++++++
airflow/providers/openlineage/utils/utils.py | 19 ++-
airflow/providers/weaviate/operators/weaviate.py | 30 ++--
dev/README_RELEASE_PROVIDER_PACKAGES.md | 5 +-
dev/breeze/doc/02_customizing.rst | 2 +-
dev/breeze/doc/09_release_management_tasks.rst | 23 +++
.../doc/images/output_release-management.svg | 26 ++--
.../doc/images/output_release-management.txt | 2 +-
...ease-management_generate-issue-content-core.svg | 44 +++---
...ease-management_generate-issue-content-core.txt | 2 +-
.../output_release-management_tag-providers.svg | 119 ++++++++++++++++
.../output_release-management_tag-providers.txt | 1 +
.../output_setup_check-all-params-in-groups.svg | 34 +++--
.../output_setup_check-all-params-in-groups.txt | 2 +-
.../output_setup_regenerate-command-images.svg | 14 +-
.../output_setup_regenerate-command-images.txt | 2 +-
.../commands/release_management_commands.py | 133 +++++++++++++++--
.../commands/release_management_commands_config.py | 10 ++
dev/provider_packages/tag_providers.py | 87 ------------
.../guides/user.rst | 56 ++++++++
pyproject.toml | 2 -
tests/providers/apache/hive/hooks/test_hive.py | 2 +-
.../hive/sensors/test_named_hive_partition.py | 28 ++--
.../providers/cncf/kubernetes/triggers/test_pod.py | 1 +
.../providers/openlineage/plugins/test_listener.py | 158 ++++++++++++++++++++-
.../openlineage/utils/test_selective_enable.py | 72 ++++++++++
.../providers/weaviate/operators/test_weaviate.py | 39 +++++
35 files changed, 870 insertions(+), 201 deletions(-)
create mode 100644 airflow/providers/openlineage/utils/selective_enable.py
create mode 100644
dev/breeze/doc/images/output_release-management_tag-providers.svg
create mode 100644
dev/breeze/doc/images/output_release-management_tag-providers.txt
delete mode 100755 dev/provider_packages/tag_providers.py
create mode 100644 tests/providers/openlineage/utils/test_selective_enable.py