apache-airflow-providers-openlineage 2.6.0__py3-none-any.whl → 2.6.1__py3-none-any.whl
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.
- airflow/providers/openlineage/__init__.py +1 -1
- airflow/providers/openlineage/utils/utils.py +4 -6
- {apache_airflow_providers_openlineage-2.6.0.dist-info → apache_airflow_providers_openlineage-2.6.1.dist-info}/METADATA +6 -6
- {apache_airflow_providers_openlineage-2.6.0.dist-info → apache_airflow_providers_openlineage-2.6.1.dist-info}/RECORD +6 -6
- {apache_airflow_providers_openlineage-2.6.0.dist-info → apache_airflow_providers_openlineage-2.6.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_openlineage-2.6.0.dist-info → apache_airflow_providers_openlineage-2.6.1.dist-info}/entry_points.txt +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "2.6.
|
|
32
|
+
__version__ = "2.6.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -70,8 +70,7 @@ if TYPE_CHECKING:
|
|
|
70
70
|
|
|
71
71
|
from airflow.models import TaskInstance
|
|
72
72
|
from airflow.providers.common.compat.assets import Asset
|
|
73
|
-
from airflow.sdk import DAG
|
|
74
|
-
from airflow.sdk.bases.operator import BaseOperator
|
|
73
|
+
from airflow.sdk import DAG, BaseOperator
|
|
75
74
|
from airflow.sdk.definitions.mappedoperator import MappedOperator
|
|
76
75
|
from airflow.sdk.execution_time.secrets_masker import (
|
|
77
76
|
Redactable,
|
|
@@ -83,8 +82,7 @@ if TYPE_CHECKING:
|
|
|
83
82
|
from airflow.utils.state import DagRunState, TaskInstanceState
|
|
84
83
|
else:
|
|
85
84
|
try:
|
|
86
|
-
from airflow.sdk import DAG
|
|
87
|
-
from airflow.sdk.bases.operator import BaseOperator
|
|
85
|
+
from airflow.sdk import DAG, BaseOperator
|
|
88
86
|
from airflow.sdk.definitions.mappedoperator import MappedOperator
|
|
89
87
|
except ImportError:
|
|
90
88
|
from airflow.models import DAG, BaseOperator, MappedOperator
|
|
@@ -832,7 +830,7 @@ class OpenLineageRedactor(SecretsMasker):
|
|
|
832
830
|
instance.replacer = other.replacer
|
|
833
831
|
return instance
|
|
834
832
|
|
|
835
|
-
def _redact(self, item: Redactable, name: str | None, depth: int, max_depth: int) -> Redacted:
|
|
833
|
+
def _redact(self, item: Redactable, name: str | None, depth: int, max_depth: int, **kwargs) -> Redacted: # type: ignore[override]
|
|
836
834
|
if AIRFLOW_V_3_0_PLUS:
|
|
837
835
|
# Keep compatibility for Airflow 2.x, remove when Airflow 3.0 is the minimum version
|
|
838
836
|
class AirflowContextDeprecationWarning(UserWarning):
|
|
@@ -888,7 +886,7 @@ class OpenLineageRedactor(SecretsMasker):
|
|
|
888
886
|
),
|
|
889
887
|
)
|
|
890
888
|
return item
|
|
891
|
-
return super()._redact(item, name, depth, max_depth)
|
|
889
|
+
return super()._redact(item, name, depth, max_depth, **kwargs)
|
|
892
890
|
except Exception as exc:
|
|
893
891
|
log.warning("Unable to redact %r. Error was: %s: %s", item, type(exc).__name__, exc)
|
|
894
892
|
return item
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-openlineage
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.1
|
|
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.36.0
|
|
28
28
|
Requires-Dist: openlineage-python>=1.36.0
|
|
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.6.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.6.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.6.1/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.6.1
|
|
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.6.
|
|
62
|
+
Release: ``2.6.1``
|
|
63
63
|
|
|
64
64
|
Release Date: ``|PypiReleaseDate|``
|
|
65
65
|
|
|
@@ -73,7 +73,7 @@ This is a provider package for ``openlineage`` provider. All classes for this pr
|
|
|
73
73
|
are in ``airflow.providers.openlineage`` python package.
|
|
74
74
|
|
|
75
75
|
You can find package information and changelog for the provider
|
|
76
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.6.
|
|
76
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.6.1/>`_.
|
|
77
77
|
|
|
78
78
|
Installation
|
|
79
79
|
------------
|
|
@@ -119,5 +119,5 @@ Dependent package
|
|
|
119
119
|
================================================================================================================== =================
|
|
120
120
|
|
|
121
121
|
The changelog for the provider package can be found in the
|
|
122
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.6.
|
|
122
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.6.1/changelog.html>`_.
|
|
123
123
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
airflow/providers/openlineage/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
|
-
airflow/providers/openlineage/__init__.py,sha256=
|
|
2
|
+
airflow/providers/openlineage/__init__.py,sha256=aBvB3_hcgx91HG81KlMLw1CWKV2i-e_fwFRmTcrfjiI,1500
|
|
3
3
|
airflow/providers/openlineage/conf.py,sha256=9v2DpQ84BBCdRxPlh8QsboTqX8HXe-qeHVcTMRL5c3o,5807
|
|
4
4
|
airflow/providers/openlineage/get_provider_info.py,sha256=2Oy13q-jA-UYt-a9pYBk4PnImYshGnJCPD1Jj80ChNw,9453
|
|
5
5
|
airflow/providers/openlineage/sqlparser.py,sha256=8Aq0qbUUBthKjXBV756p2aBf8RYfCuBBfgxwhGpQIg4,20360
|
|
@@ -27,8 +27,8 @@ airflow/providers/openlineage/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL
|
|
|
27
27
|
airflow/providers/openlineage/utils/selective_enable.py,sha256=Nf94UaziAQHDvpx7bEDMRbT3twXVslDilUI1ZTEOB0M,3382
|
|
28
28
|
airflow/providers/openlineage/utils/spark.py,sha256=X5liLxVLgQcgPF_0lFtQULeMOv_9dGj-HFjtZvWFgOo,7626
|
|
29
29
|
airflow/providers/openlineage/utils/sql.py,sha256=b_k2fUyGGWzR1eau7tgq7vKQJsR7wPQzDF8M-WRq6jk,9548
|
|
30
|
-
airflow/providers/openlineage/utils/utils.py,sha256=
|
|
31
|
-
apache_airflow_providers_openlineage-2.6.
|
|
32
|
-
apache_airflow_providers_openlineage-2.6.
|
|
33
|
-
apache_airflow_providers_openlineage-2.6.
|
|
34
|
-
apache_airflow_providers_openlineage-2.6.
|
|
30
|
+
airflow/providers/openlineage/utils/utils.py,sha256=JWZ2VTuOAqd2IEMpd8AA0tdaPsomRvADm0-MzcsBEOs,35225
|
|
31
|
+
apache_airflow_providers_openlineage-2.6.1.dist-info/entry_points.txt,sha256=GAx0_i2OeZzqaiiiYuA-xchICDXiCT5kVqpKSxsOjt4,214
|
|
32
|
+
apache_airflow_providers_openlineage-2.6.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
33
|
+
apache_airflow_providers_openlineage-2.6.1.dist-info/METADATA,sha256=KH1KKS53aTxTL_crbB3zreqPlYOG0kw8el9pQlScKjc,5726
|
|
34
|
+
apache_airflow_providers_openlineage-2.6.1.dist-info/RECORD,,
|
|
File without changes
|