This is an automated email from the ASF dual-hosted git repository.
mobuchowski pushed a change to branch aip-62/object-storage
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 3302c437d1 openlineage: add support for hook lineage for Object Store
discard e90d523e12 openlineage: add support for hook lineage for S3Hook
discard 359b73c24b openlineage: add method to common.compat to not force hooks
to try/except every 2.10 hook lineage call
add 37a576130b openlineage: add config to include 'full' task info based
on conf setting (#40589)
add f16d6d49f1 Add `filesystems` and `dataset-uris` items to `How to
create your own (#40801)
add 519b0d028c Fix BeamRunJavaPipelineOperator fails without job_name set
(#40645)
add 985ccbc4c8 openlineage: use airflow provided getters from conf (#40790)
add 4891976746 Fix flaky async sensor test (#40813)
add 7014eaa59f Airflow 2.9.3 has been released (#40815)
add ee2be505ec openlineage: add file dataset type support into common.io
provider (#40817)
add 1aa89621fa openlineage: add method to common.compat to not force hooks
to try/except every 2.10 hook lineage call
add f26af218cc openlineage: add support for hook lineage for S3Hook
new 0f07f38aa8 openlineage: add support for hook lineage for Object Store
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 (3302c437d1)
\
N -- N -- N refs/heads/aip-62/object-storage (0f07f38aa8)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/ISSUE_TEMPLATE/airflow_bug_report.yml | 2 +-
Dockerfile | 2 +-
README.md | 12 +-
RELEASE_NOTES.rst | 72 ++++++++++
airflow/providers/apache/beam/operators/beam.py | 6 +-
.../common/io/datasets}/__init__.py | 0
.../datasets/s3.py => common/io/datasets/file.py} | 5 +-
airflow/providers/common/io/provider.yaml | 5 +
.../providers/google/cloud/operators/dataflow.py | 2 +-
airflow/providers/openlineage/conf.py | 51 +++----
airflow/providers/openlineage/provider.yaml | 7 +
airflow/providers/openlineage/utils/utils.py | 21 ++-
airflow/reproducible_build.yaml | 4 +-
.../guides/user.rst | 22 +++
.../howto/create-custom-providers.rst | 7 +
.../installation/supported-versions.rst | 2 +-
generated/PYPI_README.md | 10 +-
newsfragments/37936.significant.rst | 4 -
newsfragments/40286.significant.rst | 1 -
scripts/ci/pre_commit/supported_versions.py | 2 +-
tests/providers/apache/beam/operators/test_beam.py | 36 ++++-
.../providers/common/io/datasets}/__init__.py | 0
.../providers/common/io/datasets/test_file.py | 5 +-
tests/providers/openlineage/plugins/test_utils.py | 39 ++++-
tests/providers/openlineage/test_conf.py | 158 +++++++++++++++------
tests/sensors/test_time_delta.py | 15 +-
.../cloud/dataflow/example_dataflow_native_java.py | 5 +-
.../dataflow/example_dataflow_native_python.py | 8 +-
28 files changed, 378 insertions(+), 125 deletions(-)
copy airflow/{api_connexion => providers/common/io/datasets}/__init__.py (100%)
copy airflow/providers/{amazon/aws/datasets/s3.py =>
common/io/datasets/file.py} (85%)
delete mode 100644 newsfragments/37936.significant.rst
delete mode 100644 newsfragments/40286.significant.rst
copy {airflow/api_connexion => tests/providers/common/io/datasets}/__init__.py
(100%)
copy airflow/providers/amazon/aws/datasets/s3.py =>
tests/providers/common/io/datasets/test_file.py (83%)