apache-airflow-providers-dbt-cloud 4.2.0rc1__py3-none-any.whl → 4.2.1rc1__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.

@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "4.2.0"
32
+ __version__ = "4.2.1"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.9.0"
@@ -27,8 +27,9 @@ def get_provider_info():
27
27
  "name": "dbt Cloud",
28
28
  "description": "`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__\n",
29
29
  "state": "ready",
30
- "source-date-epoch": 1739959421,
30
+ "source-date-epoch": 1741508729,
31
31
  "versions": [
32
+ "4.2.1",
32
33
  "4.2.0",
33
34
  "4.0.0",
34
35
  "3.11.2",
@@ -98,5 +99,9 @@ def get_provider_info():
98
99
  "asgiref>=2.3.0",
99
100
  "aiohttp>=3.9.2",
100
101
  ],
101
- "optional-dependencies": {"openlineage": ["apache-airflow-providers-openlineage>=1.7.0"]},
102
+ "optional-dependencies": {
103
+ "openlineage": ["apache-airflow-providers-openlineage>=1.7.0"],
104
+ "common.compat": ["apache-airflow-providers-common-compat"],
105
+ },
106
+ "devel-dependencies": [],
102
107
  }
@@ -24,7 +24,8 @@ from pathlib import Path
24
24
  from typing import TYPE_CHECKING, Any
25
25
 
26
26
  from airflow.configuration import conf
27
- from airflow.models import BaseOperator, BaseOperatorLink, XCom
27
+ from airflow.models import BaseOperator, XCom
28
+ from airflow.providers.common.compat.version_compat import AIRFLOW_V_3_0_PLUS
28
29
  from airflow.providers.dbt.cloud.hooks.dbt import (
29
30
  DbtCloudHook,
30
31
  DbtCloudJobRunException,
@@ -38,6 +39,11 @@ if TYPE_CHECKING:
38
39
  from airflow.providers.openlineage.extractors import OperatorLineage
39
40
  from airflow.utils.context import Context
40
41
 
42
+ if AIRFLOW_V_3_0_PLUS:
43
+ from airflow.sdk import BaseOperatorLink
44
+ else:
45
+ from airflow.models.baseoperatorlink import BaseOperatorLink # type: ignore[no-redef]
46
+
41
47
 
42
48
  class DbtCloudRunJobOperatorLink(BaseOperatorLink):
43
49
  """Allows users to monitor the triggered job run directly in dbt Cloud."""
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-dbt-cloud
3
- Version: 4.2.0rc1
3
+ Version: 4.2.1rc1
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>
@@ -24,43 +24,44 @@ Requires-Dist: apache-airflow>=2.9.0rc0
24
24
  Requires-Dist: apache-airflow-providers-http
25
25
  Requires-Dist: asgiref>=2.3.0
26
26
  Requires-Dist: aiohttp>=3.9.2
27
+ Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
27
28
  Requires-Dist: apache-airflow-providers-openlineage>=1.7.0 ; extra == "openlineage"
28
29
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
29
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.0/changelog.html
30
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.0
30
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.1/changelog.html
31
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.1
31
32
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
33
  Project-URL: Source Code, https://github.com/apache/airflow
33
34
  Project-URL: Twitter, https://x.com/ApacheAirflow
34
35
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
36
+ Provides-Extra: common-compat
35
37
  Provides-Extra: openlineage
36
38
 
37
39
 
38
- .. Licensed to the Apache Software Foundation (ASF) under one
39
- or more contributor license agreements. See the NOTICE file
40
- distributed with this work for additional information
41
- regarding copyright ownership. The ASF licenses this file
42
- to you under the Apache License, Version 2.0 (the
43
- "License"); you may not use this file except in compliance
44
- with the License. You may obtain a copy of the License at
40
+ .. Licensed to the Apache Software Foundation (ASF) under one
41
+ or more contributor license agreements. See the NOTICE file
42
+ distributed with this work for additional information
43
+ regarding copyright ownership. The ASF licenses this file
44
+ to you under the Apache License, Version 2.0 (the
45
+ "License"); you may not use this file except in compliance
46
+ with the License. You may obtain a copy of the License at
45
47
 
46
- .. http://www.apache.org/licenses/LICENSE-2.0
48
+ .. http://www.apache.org/licenses/LICENSE-2.0
47
49
 
48
- .. Unless required by applicable law or agreed to in writing,
49
- software distributed under the License is distributed on an
50
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
51
- KIND, either express or implied. See the License for the
52
- specific language governing permissions and limitations
53
- under the License.
50
+ .. Unless required by applicable law or agreed to in writing,
51
+ software distributed under the License is distributed on an
52
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
53
+ KIND, either express or implied. See the License for the
54
+ specific language governing permissions and limitations
55
+ under the License.
54
56
 
55
- .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
56
-
57
- .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
58
- `PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
57
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
59
58
 
59
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
60
+ ``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
60
61
 
61
62
  Package ``apache-airflow-providers-dbt-cloud``
62
63
 
63
- Release: ``4.2.0``
64
+ Release: ``4.2.1``
64
65
 
65
66
 
66
67
  `dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
@@ -73,7 +74,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
73
74
  are in ``airflow.providers.dbt.cloud`` python package.
74
75
 
75
76
  You can find package information and changelog for the provider
76
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.0/>`_.
77
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.1/>`_.
77
78
 
78
79
  Installation
79
80
  ------------
@@ -106,16 +107,17 @@ You can install such cross-provider dependencies when installing from PyPI. For
106
107
 
107
108
  .. code-block:: bash
108
109
 
109
- pip install apache-airflow-providers-dbt-cloud[http]
110
+ pip install apache-airflow-providers-dbt-cloud[common.compat]
110
111
 
111
112
 
112
- ============================================================================================================== ===============
113
- Dependent package Extra
114
- ============================================================================================================== ===============
115
- `apache-airflow-providers-http <https://airflow.apache.org/docs/apache-airflow-providers-http>`_ ``http``
116
- `apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
117
- ============================================================================================================== ===============
113
+ ================================================================================================================== =================
114
+ Dependent package Extra
115
+ ================================================================================================================== =================
116
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
117
+ `apache-airflow-providers-http <https://airflow.apache.org/docs/apache-airflow-providers-http>`_ ``http``
118
+ `apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage``
119
+ ================================================================================================================== =================
118
120
 
119
121
  The changelog for the provider package can be found in the
120
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.0/changelog.html>`_.
122
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.2.1/changelog.html>`_.
121
123
 
@@ -1,17 +1,17 @@
1
1
  airflow/providers/dbt/cloud/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/dbt/cloud/__init__.py,sha256=1mj3fNqTAVOQkU1OVmdIEsn7AYCPHAQa-UrC9xsbImw,1496
3
- airflow/providers/dbt/cloud/get_provider_info.py,sha256=gh3m1yRgnC0Ry7h6jTO505jkJmui3Bu97Ron1RPW4-g,3604
2
+ airflow/providers/dbt/cloud/__init__.py,sha256=8bJh6-jVlHon3BqfhpuhOPvcwV1m6rsmzfooP3X2nLc,1496
3
+ airflow/providers/dbt/cloud/get_provider_info.py,sha256=sdFwAL1GPiXWL40JiXqkJZQcgy3nhkl0IZaJJPWlanI,3755
4
4
  airflow/providers/dbt/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
5
  airflow/providers/dbt/cloud/hooks/dbt.py,sha256=AxAEyeBewS0UQUtZMHLMbQmDAln3A_x3WdIrtzzK4Pk,34556
6
6
  airflow/providers/dbt/cloud/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
7
- airflow/providers/dbt/cloud/operators/dbt.py,sha256=6Qq7_do0bqnrFRwwurG6lN0L9f3SU8iwNNrWqCjvyJY,17463
7
+ airflow/providers/dbt/cloud/operators/dbt.py,sha256=mk5-z9r230EWWwDH06KtrjAUyZ5lIFe7qRT6RuhkSIA,17689
8
8
  airflow/providers/dbt/cloud/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
9
9
  airflow/providers/dbt/cloud/sensors/dbt.py,sha256=OGf-VNKcCNCrImrdE8PudmtDak_MKJfPhmaf7_ccOLg,5157
10
10
  airflow/providers/dbt/cloud/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
11
11
  airflow/providers/dbt/cloud/triggers/dbt.py,sha256=Oabdc7FcNhCQxkjDC5SqAiYEw4hSZ9mQGZgSt36a1E0,4707
12
12
  airflow/providers/dbt/cloud/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
13
13
  airflow/providers/dbt/cloud/utils/openlineage.py,sha256=6hGaRpfPE0HJSyEQNo4xt9Pfvdi9GI-mysIb4dBACpk,6611
14
- apache_airflow_providers_dbt_cloud-4.2.0rc1.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
15
- apache_airflow_providers_dbt_cloud-4.2.0rc1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
16
- apache_airflow_providers_dbt_cloud-4.2.0rc1.dist-info/METADATA,sha256=t3tXNESsbjxFiPNbv2fk_robSKMQbH_W2NZRVQMsUOc,5429
17
- apache_airflow_providers_dbt_cloud-4.2.0rc1.dist-info/RECORD,,
14
+ apache_airflow_providers_dbt_cloud-4.2.1rc1.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
15
+ apache_airflow_providers_dbt_cloud-4.2.1rc1.dist-info/WHEEL,sha256=_2ozNFCLWc93bK4WKHCO-eDUENDlo-dgc9cU3qokYO4,82
16
+ apache_airflow_providers_dbt_cloud-4.2.1rc1.dist-info/METADATA,sha256=2f39b_Hp7kUnUprV-17gCd3ZgMaThdhiGL77DL3tJeM,5699
17
+ apache_airflow_providers_dbt_cloud-4.2.1rc1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.10.1
2
+ Generator: flit 3.11.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any