apache-airflow-providers-dbt-cloud 4.4.2__py3-none-any.whl → 4.4.3__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.
Potentially problematic release.
This version of apache-airflow-providers-dbt-cloud might be problematic. Click here for more details.
- airflow/providers/dbt/cloud/__init__.py +1 -1
- airflow/providers/dbt/cloud/operators/dbt.py +4 -2
- {apache_airflow_providers_dbt_cloud-4.4.2.dist-info → apache_airflow_providers_dbt_cloud-4.4.3.dist-info}/METADATA +7 -8
- {apache_airflow_providers_dbt_cloud-4.4.2.dist-info → apache_airflow_providers_dbt_cloud-4.4.3.dist-info}/RECORD +6 -6
- {apache_airflow_providers_dbt_cloud-4.4.2.dist-info → apache_airflow_providers_dbt_cloud-4.4.3.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_dbt_cloud-4.4.2.dist-info → apache_airflow_providers_dbt_cloud-4.4.3.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__ = "4.4.
|
|
32
|
+
__version__ = "4.4.3"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -192,9 +192,11 @@ class DbtCloudRunJobOperator(BaseOperator):
|
|
|
192
192
|
self.run_id = trigger_job_response.json()["data"]["id"]
|
|
193
193
|
job_run_url = trigger_job_response.json()["data"]["href"]
|
|
194
194
|
|
|
195
|
-
# Push the ``job_run_url`` value to XCom regardless of what happens during execution
|
|
196
|
-
#
|
|
195
|
+
# Push the ``job_run_url`` and ``job_run_id`` value to XCom regardless of what happens during execution.
|
|
196
|
+
# This enables job monitoring via the operator link and provides direct access
|
|
197
|
+
# to the job run ID without requiring users to parse the URL manually
|
|
197
198
|
context["ti"].xcom_push(key="job_run_url", value=job_run_url)
|
|
199
|
+
context["ti"].xcom_push(key="job_run_id", value=self.run_id)
|
|
198
200
|
|
|
199
201
|
if self.wait_for_termination and isinstance(self.run_id, int):
|
|
200
202
|
if self.deferrable is False:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-dbt-cloud
|
|
3
|
-
Version: 4.4.
|
|
3
|
+
Version: 4.4.3
|
|
4
4
|
Summary: Provider package apache-airflow-providers-dbt-cloud for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,dbt.cloud,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -27,8 +27,8 @@ Requires-Dist: asgiref>=2.3.0
|
|
|
27
27
|
Requires-Dist: aiohttp>=3.9.2
|
|
28
28
|
Requires-Dist: apache-airflow-providers-openlineage>=2.3.0 ; extra == "openlineage"
|
|
29
29
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
30
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.3/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.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
|
|
@@ -60,9 +60,8 @@ Provides-Extra: openlineage
|
|
|
60
60
|
|
|
61
61
|
Package ``apache-airflow-providers-dbt-cloud``
|
|
62
62
|
|
|
63
|
-
Release: ``4.4.
|
|
63
|
+
Release: ``4.4.3``
|
|
64
64
|
|
|
65
|
-
Release Date: ``|PypiReleaseDate|``
|
|
66
65
|
|
|
67
66
|
`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
|
|
68
67
|
|
|
@@ -74,12 +73,12 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
|
|
|
74
73
|
are in ``airflow.providers.dbt.cloud`` python package.
|
|
75
74
|
|
|
76
75
|
You can find package information and changelog for the provider
|
|
77
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
76
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.3/>`_.
|
|
78
77
|
|
|
79
78
|
Installation
|
|
80
79
|
------------
|
|
81
80
|
|
|
82
|
-
You can install this package on top of an existing Airflow
|
|
81
|
+
You can install this package on top of an existing Airflow installation (see ``Requirements`` below
|
|
83
82
|
for the minimum Airflow version supported) via
|
|
84
83
|
``pip install apache-airflow-providers-dbt-cloud``
|
|
85
84
|
|
|
@@ -120,5 +119,5 @@ Dependent package
|
|
|
120
119
|
================================================================================================================== =================
|
|
121
120
|
|
|
122
121
|
The changelog for the provider package can be found in the
|
|
123
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
122
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.3/changelog.html>`_.
|
|
124
123
|
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
airflow/providers/dbt/cloud/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
|
-
airflow/providers/dbt/cloud/__init__.py,sha256=
|
|
2
|
+
airflow/providers/dbt/cloud/__init__.py,sha256=QTyj3OpJEad4cqlnDCPU-PzBzCtmI_ufKAYv3JNk7Zk,1498
|
|
3
3
|
airflow/providers/dbt/cloud/get_provider_info.py,sha256=ufODYanp90_NPW1UftzGIwwG65Olb5l5PfSp0Mo1SOs,2507
|
|
4
4
|
airflow/providers/dbt/cloud/version_compat.py,sha256=xlj-5p7JK_pkXUjSEuNRRq9GxBOmhA0AayCPlMh_XiM,2044
|
|
5
5
|
airflow/providers/dbt/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
6
6
|
airflow/providers/dbt/cloud/hooks/dbt.py,sha256=ltmfXlILc3GNuckl54AyGDCREkfnP_4qNR983ylw9fI,34568
|
|
7
7
|
airflow/providers/dbt/cloud/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
8
|
-
airflow/providers/dbt/cloud/operators/dbt.py,sha256=
|
|
8
|
+
airflow/providers/dbt/cloud/operators/dbt.py,sha256=WjarCOzQHAxZXY-zloAFU95KTLtQUEman1SRpDK55YE,17825
|
|
9
9
|
airflow/providers/dbt/cloud/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
10
10
|
airflow/providers/dbt/cloud/sensors/dbt.py,sha256=x3F077-nTjxOEfQlgDuICIRJTQMnmc59yfesLZ3AOmE,5338
|
|
11
11
|
airflow/providers/dbt/cloud/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
12
12
|
airflow/providers/dbt/cloud/triggers/dbt.py,sha256=Oabdc7FcNhCQxkjDC5SqAiYEw4hSZ9mQGZgSt36a1E0,4707
|
|
13
13
|
airflow/providers/dbt/cloud/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
14
14
|
airflow/providers/dbt/cloud/utils/openlineage.py,sha256=uUgIF6GyVMLY2G1g6TP3ai2C22avap5nESDJ5TeJMFw,8042
|
|
15
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
16
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
17
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
18
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
15
|
+
apache_airflow_providers_dbt_cloud-4.4.3.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
|
|
16
|
+
apache_airflow_providers_dbt_cloud-4.4.3.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
17
|
+
apache_airflow_providers_dbt_cloud-4.4.3.dist-info/METADATA,sha256=PlV5RWtJFOWtKqFV6muS_sAMw7tpFgpDo-PXytPS6vg,5761
|
|
18
|
+
apache_airflow_providers_dbt_cloud-4.4.3.dist-info/RECORD,,
|
|
File without changes
|