apache-airflow-providers-openlineage 2.1.2rc2__tar.gz → 2.1.3rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of apache-airflow-providers-openlineage might be problematic. Click here for more details.
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/PKG-INFO +6 -6
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/README.rst +3 -3
- apache_airflow_providers_openlineage-2.1.3rc1/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/changelog.rst +659 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/commits.rst +621 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/conf.py +27 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/configurations-ref.rst +22 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/guides/developer.rst +536 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/guides/structure.rst +67 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/guides/user.rst +511 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/index.rst +142 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/integration-logos/openlineage.svg +47 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/macros.rst +72 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/security.rst +18 -0
- apache_airflow_providers_openlineage-2.1.3rc1/docs/supported_classes.rst +36 -0
- apache_airflow_providers_openlineage-2.1.3rc1/provider.yaml +206 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/pyproject.toml +19 -4
- apache_airflow_providers_openlineage-2.1.3rc1/src/airflow/__init__.py +17 -0
- apache_airflow_providers_openlineage-2.1.3rc1/src/airflow/providers/__init__.py +17 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/__init__.py +1 -1
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/get_provider_info.py +0 -41
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/utils/utils.py +2 -1
- apache_airflow_providers_openlineage-2.1.3rc1/tests/conftest.py +19 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/integration/__init__.py +17 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/integration/openlineage/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/integration/openlineage/operators/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/__init__.py +17 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/conftest.py +36 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/example_openlineage.json +175 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/example_openlineage.py +55 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/example_openlineage_mapped_sensor.json +75 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/example_openlineage_mapped_sensor.py +82 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/operator.py +229 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/transport/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/system/openlineage/transport/variable.py +49 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/__init__.py +17 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/extractors/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/extractors/test_base.py +436 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/extractors/test_bash.py +79 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/extractors/test_manager.py +556 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/extractors/test_python.py +99 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/log_config.py +44 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/openlineage_configs/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/openlineage_configs/http.yaml +25 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/test_adapter.py +1109 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/test_execution.py +238 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/test_facets.py +118 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/test_listener.py +1427 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/test_macros.py +110 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/test_openlineage.py +136 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/plugins/test_utils.py +821 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/test_conf.py +672 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/test_sqlparser.py +358 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/utils/__init__.py +16 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/utils/custom_facet_fixture.py +66 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/utils/test_selective_enable.py +79 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/utils/test_spark.py +349 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/utils/test_sql.py +365 -0
- apache_airflow_providers_openlineage-2.1.3rc1/tests/unit/openlineage/utils/test_utils.py +1568 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/LICENSE +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/conf.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/extractors/__init__.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/extractors/base.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/extractors/bash.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/extractors/manager.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/extractors/python.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/facets/AirflowDagRunFacet.json +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/facets/AirflowDebugRunFacet.json +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/facets/AirflowJobFacet.json +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/facets/AirflowRunFacet.json +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/facets/AirflowStateRunFacet.json +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/facets/__init__.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/plugins/__init__.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/plugins/adapter.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/plugins/facets.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/plugins/listener.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/plugins/macros.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/plugins/openlineage.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/sqlparser.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/utils/__init__.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/utils/selective_enable.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/utils/spark.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/utils/sql.py +0 -0
- {apache_airflow_providers_openlineage-2.1.2rc2 → apache_airflow_providers_openlineage-2.1.3rc1}/src/airflow/providers/openlineage/version_compat.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-openlineage
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.3rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-openlineage for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,openlineage,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -27,8 +27,8 @@ Requires-Dist: attrs>=22.2
|
|
|
27
27
|
Requires-Dist: openlineage-integration-common>=1.24.2
|
|
28
28
|
Requires-Dist: openlineage-python>=1.24.2
|
|
29
29
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
30
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3
|
|
32
32
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
33
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
34
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -59,7 +59,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
59
59
|
|
|
60
60
|
Package ``apache-airflow-providers-openlineage``
|
|
61
61
|
|
|
62
|
-
Release: ``2.1.
|
|
62
|
+
Release: ``2.1.3``
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
`OpenLineage <https://openlineage.io/>`__
|
|
@@ -72,7 +72,7 @@ This is a provider package for ``openlineage`` provider. All classes for this pr
|
|
|
72
72
|
are in ``airflow.providers.openlineage`` python package.
|
|
73
73
|
|
|
74
74
|
You can find package information and changelog for the provider
|
|
75
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
75
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/>`_.
|
|
76
76
|
|
|
77
77
|
Installation
|
|
78
78
|
------------
|
|
@@ -118,5 +118,5 @@ Dependent package
|
|
|
118
118
|
================================================================================================================== =================
|
|
119
119
|
|
|
120
120
|
The changelog for the provider package can be found in the
|
|
121
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
121
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/changelog.html>`_.
|
|
122
122
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-openlineage``
|
|
25
25
|
|
|
26
|
-
Release: ``2.1.
|
|
26
|
+
Release: ``2.1.3``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
`OpenLineage <https://openlineage.io/>`__
|
|
@@ -36,7 +36,7 @@ This is a provider package for ``openlineage`` provider. All classes for this pr
|
|
|
36
36
|
are in ``airflow.providers.openlineage`` python package.
|
|
37
37
|
|
|
38
38
|
You can find package information and changelog for the provider
|
|
39
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
@@ -82,4 +82,4 @@ Dependent package
|
|
|
82
82
|
================================================================================================================== =================
|
|
83
83
|
|
|
84
84
|
The changelog for the provider package can be found in the
|
|
85
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
85
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ecbf02386a2ef7e12d1a7846a6dda1d8a9aff8ab
|