apache-airflow-providers-dbt-cloud 3.5.1rc1__py3-none-any.whl → 3.6.0rc2__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/get_provider_info.py +3 -2
- airflow/providers/dbt/cloud/operators/dbt.py +2 -0
- airflow/providers/dbt/cloud/utils/openlineage.py +4 -1
- {apache_airflow_providers_dbt_cloud-3.5.1rc1.dist-info → apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info}/METADATA +6 -6
- {apache_airflow_providers_dbt_cloud-3.5.1rc1.dist-info → apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info}/RECORD +8 -8
- {apache_airflow_providers_dbt_cloud-3.5.1rc1.dist-info → apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_dbt_cloud-3.5.1rc1.dist-info → apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info}/entry_points.txt +0 -0
|
@@ -27,9 +27,10 @@ def get_provider_info():
|
|
|
27
27
|
"package-name": "apache-airflow-providers-dbt-cloud",
|
|
28
28
|
"name": "dbt Cloud",
|
|
29
29
|
"description": "`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__\n",
|
|
30
|
-
"
|
|
31
|
-
"source-date-epoch":
|
|
30
|
+
"state": "ready",
|
|
31
|
+
"source-date-epoch": 1705912055,
|
|
32
32
|
"versions": [
|
|
33
|
+
"3.6.0",
|
|
33
34
|
"3.5.1",
|
|
34
35
|
"3.5.0",
|
|
35
36
|
"3.4.1",
|
|
@@ -184,6 +184,8 @@ class DbtCloudRunJobOperator(BaseOperator):
|
|
|
184
184
|
warnings.warn(
|
|
185
185
|
"Argument `wait_for_termination` is False and `deferrable` is True , hence "
|
|
186
186
|
"`deferrable` parameter doesn't have any effect",
|
|
187
|
+
UserWarning,
|
|
188
|
+
stacklevel=2,
|
|
187
189
|
)
|
|
188
190
|
return self.run_id
|
|
189
191
|
|
|
@@ -121,7 +121,10 @@ def generate_openlineage_events_from_dbt_cloud_run(
|
|
|
121
121
|
|
|
122
122
|
# generate same run id of current task instance
|
|
123
123
|
parent_run_id = OpenLineageAdapter.build_task_instance_run_id(
|
|
124
|
-
|
|
124
|
+
dag_id=task_instance.dag_id,
|
|
125
|
+
task_id=operator.task_id,
|
|
126
|
+
execution_date=task_instance.execution_date,
|
|
127
|
+
try_number=task_instance.try_number - 1,
|
|
125
128
|
)
|
|
126
129
|
|
|
127
130
|
parent_job = ParentRunMetadata(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-dbt-cloud
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.6.0rc2
|
|
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
|
|
|
27
27
|
Requires-Dist: apache-airflow-providers-http ; extra == "http"
|
|
28
28
|
Requires-Dist: apache-airflow-providers-openlineage ; 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/3.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.6.0/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.6.0
|
|
32
32
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
33
33
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
34
34
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -80,7 +80,7 @@ Provides-Extra: openlineage
|
|
|
80
80
|
|
|
81
81
|
Package ``apache-airflow-providers-dbt-cloud``
|
|
82
82
|
|
|
83
|
-
Release: ``3.
|
|
83
|
+
Release: ``3.6.0.rc2``
|
|
84
84
|
|
|
85
85
|
|
|
86
86
|
`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
|
|
@@ -93,7 +93,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
|
|
|
93
93
|
are in ``airflow.providers.dbt.cloud`` python package.
|
|
94
94
|
|
|
95
95
|
You can find package information and changelog for the provider
|
|
96
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.
|
|
96
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.6.0/>`_.
|
|
97
97
|
|
|
98
98
|
Installation
|
|
99
99
|
------------
|
|
@@ -137,4 +137,4 @@ Dependent package
|
|
|
137
137
|
============================================================================================================== ===============
|
|
138
138
|
|
|
139
139
|
The changelog for the provider package can be found in the
|
|
140
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.
|
|
140
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.6.0/changelog.html>`_.
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
airflow/providers/dbt/cloud/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
|
2
|
-
airflow/providers/dbt/cloud/__init__.py,sha256=
|
|
3
|
-
airflow/providers/dbt/cloud/get_provider_info.py,sha256=
|
|
2
|
+
airflow/providers/dbt/cloud/__init__.py,sha256=rkTJNjBsA1esSFj3jOsGUmhlFnc7OBMbmxYvsZfELY0,1584
|
|
3
|
+
airflow/providers/dbt/cloud/get_provider_info.py,sha256=p5MDcMG0d8j3Y53-WxUkMCm1kvFK2QdV4jWUSXE_F5c,3179
|
|
4
4
|
airflow/providers/dbt/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
5
5
|
airflow/providers/dbt/cloud/hooks/dbt.py,sha256=VIPEcI4h8QCRTV6E7qwtxLi9Xd2yoZ3-5HSX_B2TDe4,25509
|
|
6
6
|
airflow/providers/dbt/cloud/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
7
|
-
airflow/providers/dbt/cloud/operators/dbt.py,sha256=
|
|
7
|
+
airflow/providers/dbt/cloud/operators/dbt.py,sha256=HK7F8sk3JrLphxm95k_4K-HlrsyHI27kIHJA98qZP5I,14651
|
|
8
8
|
airflow/providers/dbt/cloud/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
9
9
|
airflow/providers/dbt/cloud/sensors/dbt.py,sha256=-26DWU_QRKmYb1XSGJNrKRUZU28XEVl0b4NWdd-4LuY,6857
|
|
10
10
|
airflow/providers/dbt/cloud/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
11
11
|
airflow/providers/dbt/cloud/triggers/dbt.py,sha256=NqbxQLEbAHO5ctrxwMHLsJKU_NiqxzBwNyuODC3B2pA,4648
|
|
12
12
|
airflow/providers/dbt/cloud/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
13
|
-
airflow/providers/dbt/cloud/utils/openlineage.py,sha256=
|
|
14
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
15
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
16
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
17
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
13
|
+
airflow/providers/dbt/cloud/utils/openlineage.py,sha256=MTA-FTM3HsnPg5jm5Zf6Nq1PLxfZRYlnHib3dIxX2t0,5644
|
|
14
|
+
apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
|
|
15
|
+
apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
16
|
+
apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info/METADATA,sha256=5_x-jo7ta2rAhCUqdL12aVJ74vO_qZf5nJUs5ZL9q9E,6257
|
|
17
|
+
apache_airflow_providers_dbt_cloud-3.6.0rc2.dist-info/RECORD,,
|
|
File without changes
|