apache-airflow-providers-dbt-cloud 4.3.2__tar.gz → 4.3.3__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-dbt-cloud might be problematic. Click here for more details.
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/PKG-INFO +6 -6
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/README.rst +3 -3
- apache_airflow_providers_dbt_cloud-4.3.3/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/changelog.rst +642 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/commits.rst +611 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/conf.py +27 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/connections.rst +126 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/index.rst +142 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/integration-logos/dbt.png +0 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/operators.rst +164 -0
- apache_airflow_providers_dbt_cloud-4.3.3/docs/security.rst +18 -0
- apache_airflow_providers_dbt_cloud-4.3.3/provider.yaml +101 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/pyproject.toml +19 -4
- apache_airflow_providers_dbt_cloud-4.3.3/src/airflow/__init__.py +17 -0
- apache_airflow_providers_dbt_cloud-4.3.3/src/airflow/providers/__init__.py +17 -0
- apache_airflow_providers_dbt_cloud-4.3.3/src/airflow/providers/dbt/__init__.py +17 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/__init__.py +1 -1
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/get_provider_info.py +0 -50
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/operators/dbt.py +24 -25
- apache_airflow_providers_dbt_cloud-4.3.3/tests/conftest.py +19 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/system/__init__.py +17 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/system/dbt/__init__.py +17 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/system/dbt/cloud/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/system/dbt/cloud/example_dbt_cloud.py +115 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/__init__.py +17 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/__init__.py +17 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/hooks/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/hooks/test_dbt.py +1069 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/operators/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/operators/test_dbt.py +883 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/sensors/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/sensors/test_dbt.py +169 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/test_data/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/test_data/catalog.json +59 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/test_data/job_run.json +33 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/test_data/manifest.json +552 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/test_data/run_results.json +154 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/triggers/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/triggers/test_dbt.py +297 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/utils/__init__.py +16 -0
- apache_airflow_providers_dbt_cloud-4.3.3/tests/unit/dbt/cloud/utils/test_openlineage.py +172 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/LICENSE +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/hooks/__init__.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/hooks/dbt.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/operators/__init__.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/sensors/__init__.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/sensors/dbt.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/triggers/__init__.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/triggers/dbt.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/utils/__init__.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/utils/openlineage.py +0 -0
- {apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/src/airflow/providers/dbt/cloud/version_compat.py +0 -0
{apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-dbt-cloud
|
|
3
|
-
Version: 4.3.
|
|
3
|
+
Version: 4.3.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.0.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.3.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.3.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.3.3/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.3.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,7 +60,7 @@ Provides-Extra: openlineage
|
|
|
60
60
|
|
|
61
61
|
Package ``apache-airflow-providers-dbt-cloud``
|
|
62
62
|
|
|
63
|
-
Release: ``4.3.
|
|
63
|
+
Release: ``4.3.3``
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
|
|
@@ -73,7 +73,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
|
|
|
73
73
|
are in ``airflow.providers.dbt.cloud`` 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-dbt-cloud/4.3.
|
|
76
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.3.3/>`_.
|
|
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-dbt-cloud/4.3.
|
|
122
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.3.3/changelog.html>`_.
|
|
123
123
|
|
{apache_airflow_providers_dbt_cloud-4.3.2 → apache_airflow_providers_dbt_cloud-4.3.3}/README.rst
RENAMED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-dbt-cloud``
|
|
25
25
|
|
|
26
|
-
Release: ``4.3.
|
|
26
|
+
Release: ``4.3.3``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
|
|
@@ -36,7 +36,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
|
|
|
36
36
|
are in ``airflow.providers.dbt.cloud`` 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-dbt-cloud/4.3.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.3.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-dbt-cloud/4.3.
|
|
85
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.3.3/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f
|
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
2
|
+
or more contributor license agreements. See the NOTICE file
|
|
3
|
+
distributed with this work for additional information
|
|
4
|
+
regarding copyright ownership. The ASF licenses this file
|
|
5
|
+
to you under the Apache License, Version 2.0 (the
|
|
6
|
+
"License"); you may not use this file except in compliance
|
|
7
|
+
with the License. You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
.. Unless required by applicable law or agreed to in writing,
|
|
12
|
+
software distributed under the License is distributed on an
|
|
13
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
KIND, either express or implied. See the License for the
|
|
15
|
+
specific language governing permissions and limitations
|
|
16
|
+
under the License.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
.. NOTE TO CONTRIBUTORS:
|
|
20
|
+
Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
|
|
21
|
+
and you want to add an explanation to the users on how they are supposed to deal with them.
|
|
22
|
+
The changelog is updated and maintained semi-automatically by release manager.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
``apache-airflow-providers-dbt-cloud``
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
Changelog
|
|
29
|
+
---------
|
|
30
|
+
|
|
31
|
+
4.3.3
|
|
32
|
+
.....
|
|
33
|
+
|
|
34
|
+
Misc
|
|
35
|
+
~~~~
|
|
36
|
+
|
|
37
|
+
* ``remove superfluous else block (#49199)``
|
|
38
|
+
|
|
39
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
40
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
41
|
+
* ``Prepare docs for Apr 2nd wave of providers (#49051)``
|
|
42
|
+
* ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
|
43
|
+
* ``Remove fab from preinstalled providers (#48457)``
|
|
44
|
+
* ``Improve documentation building iteration (#48760)``
|
|
45
|
+
|
|
46
|
+
4.3.2
|
|
47
|
+
.....
|
|
48
|
+
|
|
49
|
+
Bug Fixes
|
|
50
|
+
~~~~~~~~~
|
|
51
|
+
|
|
52
|
+
* ``fix: add explicit requirement for OpenLineage version on DBT function (#47999)``
|
|
53
|
+
|
|
54
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
55
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
56
|
+
* ``Simplify tooling by switching completely to uv (#48223)``
|
|
57
|
+
* ``Upgrade ruff to latest version (#48553)``
|
|
58
|
+
|
|
59
|
+
4.3.1
|
|
60
|
+
.....
|
|
61
|
+
|
|
62
|
+
Features
|
|
63
|
+
~~~~~~~~
|
|
64
|
+
|
|
65
|
+
* ``feat: Adjust DBT OpenLineage to Airflow 3 and improve logging (#47500)``
|
|
66
|
+
|
|
67
|
+
Misc
|
|
68
|
+
~~~~
|
|
69
|
+
|
|
70
|
+
* ``AIP-72: Handle Custom XCom Backend on Task SDK (#47339)``
|
|
71
|
+
|
|
72
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
73
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
74
|
+
* ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
|
75
|
+
* ``Move airflow sources to airflow-core package (#47798)``
|
|
76
|
+
* ``Remove links to x/twitter.com (#47801)``
|
|
77
|
+
|
|
78
|
+
4.2.1
|
|
79
|
+
.....
|
|
80
|
+
|
|
81
|
+
Misc
|
|
82
|
+
~~~~
|
|
83
|
+
|
|
84
|
+
* ``AIP-72: Moving BaseOperatorLink to task sdk (#47008)``
|
|
85
|
+
* ``Upgrade flit to 3.11.0 (#46938)``
|
|
86
|
+
|
|
87
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
88
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
89
|
+
* ``Move tests_common package to devel-common project (#47281)``
|
|
90
|
+
* ``Improve documentation for updating provider dependencies (#47203)``
|
|
91
|
+
* ``Add legacy namespace packages to airflow.providers (#47064)``
|
|
92
|
+
* ``Remove extra whitespace in provider readme template (#46975)``
|
|
93
|
+
|
|
94
|
+
4.2.0
|
|
95
|
+
.....
|
|
96
|
+
|
|
97
|
+
.. note::
|
|
98
|
+
This version has no code changes. It's released due to yank of previous version due to packaging issues.
|
|
99
|
+
|
|
100
|
+
4.1.0
|
|
101
|
+
.....
|
|
102
|
+
|
|
103
|
+
Features
|
|
104
|
+
~~~~~~~~
|
|
105
|
+
|
|
106
|
+
* ``New Optional dbt Cloud Job Operator Params (#45634)``
|
|
107
|
+
|
|
108
|
+
Misc
|
|
109
|
+
~~~~
|
|
110
|
+
|
|
111
|
+
* ``AIP-72: Improving Operator Links Interface to Prevent User Code Execution in Webserver (#46613)``
|
|
112
|
+
* ``Add missing newline on conn string example (#45603)``
|
|
113
|
+
* ``Remove classes from 'typing_compat' that can be imported directly (#45589)``
|
|
114
|
+
|
|
115
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
116
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
117
|
+
* ``Move provider_tests to unit folder in provider tests (#46800)``
|
|
118
|
+
* ``Removed the unused provider's distribution (#46608)``
|
|
119
|
+
* ``Moving EmptyOperator to standard provider (#46231)``
|
|
120
|
+
* ``Fix doc issues found with recent moves (#46372)``
|
|
121
|
+
* ``refactor(providers/dbt.cloud): move dbt cloud provider to new structure (#46208)``
|
|
122
|
+
|
|
123
|
+
4.0.0
|
|
124
|
+
.....
|
|
125
|
+
|
|
126
|
+
.. note::
|
|
127
|
+
This release of provider is only available for Airflow 2.9+ as explained in the
|
|
128
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
129
|
+
|
|
130
|
+
Breaking changes
|
|
131
|
+
~~~~~~~~~~~~~~~~
|
|
132
|
+
|
|
133
|
+
.. warning::
|
|
134
|
+
All deprecated classes, parameters and features have been removed from the DBT provider package.
|
|
135
|
+
The following breaking changes were introduced:
|
|
136
|
+
|
|
137
|
+
* Sensors
|
|
138
|
+
* Remove ``airflow.providers.dbt.cloud.sensors.dbt.DbtCloudJobRunAsyncSensor``. Use ``airflow.providers.dbt.cloud.sensors.dbt.DbtCloudJobRunSensor`` with ``deferrable`` set to ``True`` instead.
|
|
139
|
+
* Removed ``polling_interval`` parameter from ``DbtCloudJobRunSensor``. Use ``poke_interval`` instead.
|
|
140
|
+
|
|
141
|
+
* ``Remove Provider Deprecations in DBT (#44638)``
|
|
142
|
+
|
|
143
|
+
Misc
|
|
144
|
+
~~~~
|
|
145
|
+
|
|
146
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
|
|
147
|
+
* ``Fix yoda-conditions (#44466)``
|
|
148
|
+
* ``utilize more information to deterministically generate OpenLineage run_id (#43936)``
|
|
149
|
+
* ``Remove commented breakpoint in dbt provider (#44163)``
|
|
150
|
+
* ``Rename execution_date to logical_date across codebase (#43902)``
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
154
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
155
|
+
* ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
|
|
156
|
+
|
|
157
|
+
3.11.2
|
|
158
|
+
......
|
|
159
|
+
|
|
160
|
+
Bug Fixes
|
|
161
|
+
~~~~~~~~~
|
|
162
|
+
|
|
163
|
+
* ``Added condition to check if it is a scheduled save or rerun (#43453)``
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
167
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
168
|
+
|
|
169
|
+
3.11.1
|
|
170
|
+
......
|
|
171
|
+
|
|
172
|
+
Misc
|
|
173
|
+
~~~~
|
|
174
|
+
|
|
175
|
+
* ``Set lower bound to asgiref>=2.3.0 (#43001)``
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
179
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
180
|
+
* ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
|
|
181
|
+
|
|
182
|
+
3.11.0
|
|
183
|
+
......
|
|
184
|
+
|
|
185
|
+
Features
|
|
186
|
+
~~~~~~~~
|
|
187
|
+
|
|
188
|
+
* ``Add ability to provide proxy for dbt Cloud connection (#42737)``
|
|
189
|
+
|
|
190
|
+
Misc
|
|
191
|
+
~~~~
|
|
192
|
+
|
|
193
|
+
* ``Simplify code for recent dbt provider change (#42840)``
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
197
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
198
|
+
|
|
199
|
+
3.10.1
|
|
200
|
+
......
|
|
201
|
+
|
|
202
|
+
Misc
|
|
203
|
+
~~~~
|
|
204
|
+
|
|
205
|
+
* ``remove deprecated soft_fail from providers (#41710)``
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
209
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
210
|
+
|
|
211
|
+
3.10.0
|
|
212
|
+
......
|
|
213
|
+
|
|
214
|
+
.. note::
|
|
215
|
+
This release of provider is only available for Airflow 2.8+ as explained in the
|
|
216
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
217
|
+
|
|
218
|
+
Misc
|
|
219
|
+
~~~~
|
|
220
|
+
|
|
221
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
225
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
226
|
+
* ``Prepare docs for Aug 1st wave of providers (#41230)``
|
|
227
|
+
* ``Prepare docs 1st wave July 2024 (#40644)``
|
|
228
|
+
* ``Enable enforcing pydocstyle rule D213 in ruff. (#40448)``
|
|
229
|
+
|
|
230
|
+
3.9.0
|
|
231
|
+
.....
|
|
232
|
+
|
|
233
|
+
Features
|
|
234
|
+
~~~~~~~~
|
|
235
|
+
|
|
236
|
+
* ``Add 'retry_from_failure' parameter to DbtCloudRunJobOperator (#38868)``
|
|
237
|
+
|
|
238
|
+
Bug Fixes
|
|
239
|
+
~~~~~~~~~
|
|
240
|
+
|
|
241
|
+
* ``Fix 'DbtCloudRunJobOperator' to Use Correct Status Parameters for 'reuse_existing_run' (#40048)``
|
|
242
|
+
|
|
243
|
+
3.8.1
|
|
244
|
+
.....
|
|
245
|
+
|
|
246
|
+
.. warning::
|
|
247
|
+
You need to take action on this note only if you are running Airflow>=2.10.0
|
|
248
|
+
In Airflow 2.10.0, we fix the way try_number works, so that it no longer returns different values depending
|
|
249
|
+
on task instance state. Importantly, after the task is done, it no longer shows current_try + 1.
|
|
250
|
+
Thus we patch this provider to fix try_number references so they no longer adjust for the old, bad behavior.
|
|
251
|
+
|
|
252
|
+
Bug Fixes
|
|
253
|
+
~~~~~~~~~
|
|
254
|
+
|
|
255
|
+
* ``Scheduler to handle incrementing of try_number (#39336)``
|
|
256
|
+
* ``Validate dbt 'cause' field to be less than 255 characters (#38896)``
|
|
257
|
+
|
|
258
|
+
Misc
|
|
259
|
+
~~~~
|
|
260
|
+
|
|
261
|
+
* ``Faster 'airflow_version' imports (#39552)``
|
|
262
|
+
* ``Simplify 'airflow_version' imports (#39497)``
|
|
263
|
+
* ``Add (optional) dependency between dbt-cloud and openlineage providers (#39366)``
|
|
264
|
+
|
|
265
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
266
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
267
|
+
* ``Reapply templates for all providers (#39554)``
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
3.8.0
|
|
272
|
+
.....
|
|
273
|
+
|
|
274
|
+
.. note::
|
|
275
|
+
This release of provider is only available for Airflow 2.7+ as explained in the
|
|
276
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
277
|
+
|
|
278
|
+
Bug Fixes
|
|
279
|
+
~~~~~~~~~
|
|
280
|
+
|
|
281
|
+
* ``fix(dbt): fix wrong payload set when reuse_existing_run set to True in DbtCloudRunJobOperator (#39271)``
|
|
282
|
+
|
|
283
|
+
Misc
|
|
284
|
+
~~~~
|
|
285
|
+
|
|
286
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
|
|
287
|
+
* ``migrate to dbt v3 api for project endpoints (#39214)``
|
|
288
|
+
|
|
289
|
+
3.7.1
|
|
290
|
+
.....
|
|
291
|
+
|
|
292
|
+
Bug Fixes
|
|
293
|
+
~~~~~~~~~
|
|
294
|
+
|
|
295
|
+
* ``fix: disabled_for_operators now stops whole event emission (#38033)``
|
|
296
|
+
* ``fix(dbt): add return statement to yield within a while loop in triggers (#38395)``
|
|
297
|
+
|
|
298
|
+
3.7.0
|
|
299
|
+
.....
|
|
300
|
+
|
|
301
|
+
Features
|
|
302
|
+
~~~~~~~~
|
|
303
|
+
|
|
304
|
+
* ``feat(providers/dbt): add reuse_existing_run for allowing DbtCloudRunJobOperator to reuse existing run (#37474)``
|
|
305
|
+
|
|
306
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
307
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
308
|
+
* ``Add comment about versions updated by release manager (#37488)``
|
|
309
|
+
|
|
310
|
+
3.6.1
|
|
311
|
+
.....
|
|
312
|
+
|
|
313
|
+
Misc
|
|
314
|
+
~~~~
|
|
315
|
+
|
|
316
|
+
* ``Bump aiohttp min version to avoid CVE-2024-23829 and CVE-2024-23334 (#37110)``
|
|
317
|
+
* ``feat: Switch all class, functions, methods deprecations to decorators (#36876)``
|
|
318
|
+
|
|
319
|
+
3.6.0
|
|
320
|
+
.....
|
|
321
|
+
|
|
322
|
+
Features
|
|
323
|
+
~~~~~~~~
|
|
324
|
+
|
|
325
|
+
* ``feat: Add dag_id when generating OpenLineage run_id for task instance. (#36659)``
|
|
326
|
+
|
|
327
|
+
Bug Fixes
|
|
328
|
+
~~~~~~~~~
|
|
329
|
+
|
|
330
|
+
* ``Fix stacklevel in warnings.warn into the providers (#36831)``
|
|
331
|
+
|
|
332
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
333
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
334
|
+
* ``Prepare docs 1st wave of Providers January 2024 (#36640)``
|
|
335
|
+
* ``Speed up autocompletion of Breeze by simplifying provider state (#36499)``
|
|
336
|
+
* ``Prepare docs 2nd wave of Providers January 2024 (#36945)``
|
|
337
|
+
|
|
338
|
+
3.5.1
|
|
339
|
+
.....
|
|
340
|
+
|
|
341
|
+
Bug Fixes
|
|
342
|
+
~~~~~~~~~
|
|
343
|
+
|
|
344
|
+
* ``Follow BaseHook connection fields method signature in child classes (#36086)``
|
|
345
|
+
|
|
346
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
347
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
348
|
+
|
|
349
|
+
3.5.0
|
|
350
|
+
.....
|
|
351
|
+
|
|
352
|
+
.. note::
|
|
353
|
+
This release of provider is only available for Airflow 2.6+ as explained in the
|
|
354
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
355
|
+
|
|
356
|
+
Misc
|
|
357
|
+
~~~~
|
|
358
|
+
|
|
359
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
|
|
360
|
+
|
|
361
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
362
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
363
|
+
* ``Update information about links into the provider.yaml files (#35837)``
|
|
364
|
+
|
|
365
|
+
3.4.1
|
|
366
|
+
.....
|
|
367
|
+
|
|
368
|
+
Bug Fixes
|
|
369
|
+
~~~~~~~~~
|
|
370
|
+
|
|
371
|
+
* ``added cancelled handling in DbtCloudRunJobOperator deferred (#35597)``
|
|
372
|
+
|
|
373
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
374
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
375
|
+
* ``Use reproducible builds for providers (#35693)``
|
|
376
|
+
* ``Fix and reapply templates for provider documentation (#35686)``
|
|
377
|
+
* ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
|
|
378
|
+
* ``Prepare docs 1st wave of Providers November 2023 (#35537)``
|
|
379
|
+
* ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
|
|
380
|
+
* ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
|
|
381
|
+
* ``D401 Support - Providers: DaskExecutor to Github (Inclusive) (#34935)``
|
|
382
|
+
|
|
383
|
+
3.4.0
|
|
384
|
+
.....
|
|
385
|
+
|
|
386
|
+
.. note::
|
|
387
|
+
This release of provider is only available for Airflow 2.5+ as explained in the
|
|
388
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
389
|
+
|
|
390
|
+
Misc
|
|
391
|
+
~~~~
|
|
392
|
+
|
|
393
|
+
* ``Bump min airflow version of providers (#34728)``
|
|
394
|
+
* ``Remove useless print from dbt operator (#34322)``
|
|
395
|
+
|
|
396
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
397
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
398
|
+
* ``Refactor usage of str() in providers (#34320)``
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
3.3.0
|
|
402
|
+
.....
|
|
403
|
+
|
|
404
|
+
Features
|
|
405
|
+
~~~~~~~~
|
|
406
|
+
|
|
407
|
+
* ``Add OpenLineage support for DBT Cloud. (#33959)``
|
|
408
|
+
|
|
409
|
+
Bug Fixes
|
|
410
|
+
~~~~~~~~~
|
|
411
|
+
|
|
412
|
+
* ``fix(providers/redis): respect soft_fail argument when exception is raised (#34164)``
|
|
413
|
+
* ``dbt, openlineage: set run_id after defer, do not log error if operator has no run_id set (#34270)``
|
|
414
|
+
|
|
415
|
+
Misc
|
|
416
|
+
~~~~
|
|
417
|
+
|
|
418
|
+
* ``Remove some useless try/except from providers code (#33967)``
|
|
419
|
+
* ``Use a single statement with multiple contexts instead of nested statements in providers (#33768)``
|
|
420
|
+
|
|
421
|
+
.. Review and move the new changes to one of the sections above:
|
|
422
|
+
* ``Prepare docs for 09 2023 - 1st wave of Providers (#34201)``
|
|
423
|
+
|
|
424
|
+
3.2.3
|
|
425
|
+
.....
|
|
426
|
+
|
|
427
|
+
Misc
|
|
428
|
+
~~~~
|
|
429
|
+
|
|
430
|
+
* ``Refactor: Remove useless str() calls (#33629)``
|
|
431
|
+
* ``Refactor: Simplify code in smaller providers (#33234)``
|
|
432
|
+
|
|
433
|
+
3.2.2
|
|
434
|
+
.....
|
|
435
|
+
|
|
436
|
+
Misc
|
|
437
|
+
~~~~
|
|
438
|
+
|
|
439
|
+
* ``Add default_deferrable config (#31712)``
|
|
440
|
+
|
|
441
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
442
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
443
|
+
* ``Remove spurious headers for provider changelogs (#32373)``
|
|
444
|
+
* ``Prepare docs for July 2023 wave of Providers (#32298)``
|
|
445
|
+
* ``D205 Support - Providers: Databricks to Github (inclusive) (#32243)``
|
|
446
|
+
* ``Improve provider documentation and README structure (#32125)``
|
|
447
|
+
|
|
448
|
+
3.2.1
|
|
449
|
+
.....
|
|
450
|
+
|
|
451
|
+
.. note::
|
|
452
|
+
This release dropped support for Python 3.7
|
|
453
|
+
|
|
454
|
+
Misc
|
|
455
|
+
~~~~
|
|
456
|
+
|
|
457
|
+
* ``Remove Python 3.7 support (#30963)``
|
|
458
|
+
|
|
459
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
460
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
461
|
+
* ``Improve docstrings in providers (#31681)``
|
|
462
|
+
* ``Add discoverability for triggers in provider.yaml (#31576)``
|
|
463
|
+
* ``Add D400 pydocstyle check - Providers (#31427)``
|
|
464
|
+
* ``Add note about dropping Python 3.7 for providers (#32015)``
|
|
465
|
+
|
|
466
|
+
3.2.0
|
|
467
|
+
.....
|
|
468
|
+
|
|
469
|
+
.. note::
|
|
470
|
+
This release of provider is only available for Airflow 2.4+ as explained in the
|
|
471
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
472
|
+
|
|
473
|
+
Misc
|
|
474
|
+
~~~~
|
|
475
|
+
|
|
476
|
+
* ``Bump minimum Airflow version in providers (#30917)``
|
|
477
|
+
* ``Optimize deferred execution mode in DbtCloudJobRunSensor (#30968)``
|
|
478
|
+
* ``Optimize deferred execution mode for DbtCloudRunJobOperator (#31188)``
|
|
479
|
+
|
|
480
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
481
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
482
|
+
* ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)``
|
|
483
|
+
* ``Add full automation for min Airflow version for providers (#30994)``
|
|
484
|
+
* ``Add cli cmd to list the provider trigger info (#30822)``
|
|
485
|
+
* ``Upgrade ruff to 0.0.262 (#30809)``
|
|
486
|
+
* ``Use '__version__' in providers not 'version' (#31393)``
|
|
487
|
+
* ``Fixing circular import error in providers caused by airflow version check (#31379)``
|
|
488
|
+
* ``Prepare docs for May 2023 wave of Providers (#31252)``
|
|
489
|
+
|
|
490
|
+
3.1.1
|
|
491
|
+
.....
|
|
492
|
+
|
|
493
|
+
Misc
|
|
494
|
+
~~~~
|
|
495
|
+
|
|
496
|
+
* ``Merge DbtCloudJobRunAsyncSensor logic to DbtCloudJobRunSensor (#30227)``
|
|
497
|
+
* ``Move typing imports behind TYPE_CHECKING in DbtCloudHook (#29989)``
|
|
498
|
+
|
|
499
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
500
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
501
|
+
* ``Add mechanism to suspend providers (#30422)``
|
|
502
|
+
* ``adding trigger info to provider yaml (#29950)``
|
|
503
|
+
|
|
504
|
+
3.1.0
|
|
505
|
+
.....
|
|
506
|
+
|
|
507
|
+
Features
|
|
508
|
+
~~~~~~~~
|
|
509
|
+
|
|
510
|
+
* ``Add 'DbtCloudJobRunAsyncSensor' (#29695)``
|
|
511
|
+
|
|
512
|
+
3.0.0
|
|
513
|
+
.....
|
|
514
|
+
|
|
515
|
+
Breaking changes
|
|
516
|
+
~~~~~~~~~~~~~~~~
|
|
517
|
+
|
|
518
|
+
Beginning with version 2.0.0, users could specify single-tenant dbt Cloud domains via the ``schema`` parameter
|
|
519
|
+
in an Airflow connection. Subsequently in version 2.3.1, users could also connect to the dbt Cloud instances
|
|
520
|
+
outside of the US region as well as private instances by using the ``host`` parameter of their Airflow
|
|
521
|
+
connection to specify the entire tenant domain. Backwards compatibility for using ``schema`` was left in
|
|
522
|
+
place. Version 3.0.0 removes support for using ``schema`` to specify the tenant domain of a dbt Cloud
|
|
523
|
+
instance. If you wish to connect to a single-tenant, instance outside of the US, or a private instance, you
|
|
524
|
+
must use the ``host`` parameter to specify the _entire_ tenant domain name in your Airflow connection.
|
|
525
|
+
|
|
526
|
+
* ``Drop Connection.schema use in DbtCloudHook (#29166)``
|
|
527
|
+
|
|
528
|
+
Features
|
|
529
|
+
~~~~~~~~
|
|
530
|
+
|
|
531
|
+
* ``Allow downloading of dbt Cloud artifacts to non-existent paths (#29048)``
|
|
532
|
+
* ``Add deferrable mode to 'DbtCloudRunJobOperator' (#29014)``
|
|
533
|
+
|
|
534
|
+
Misc
|
|
535
|
+
~~~~
|
|
536
|
+
|
|
537
|
+
* ``Provide more context for 'trigger_reason' in DbtCloudRunJobOperator (#28994)``
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
2.3.1
|
|
541
|
+
.....
|
|
542
|
+
|
|
543
|
+
Bug Fixes
|
|
544
|
+
~~~~~~~~~
|
|
545
|
+
* ``Use entire tenant domain name in dbt Cloud connection (#28890)``
|
|
546
|
+
|
|
547
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
548
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
549
|
+
|
|
550
|
+
2.3.0
|
|
551
|
+
.....
|
|
552
|
+
|
|
553
|
+
.. note::
|
|
554
|
+
This release of provider is only available for Airflow 2.3+ as explained in the
|
|
555
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
556
|
+
|
|
557
|
+
Misc
|
|
558
|
+
~~~~
|
|
559
|
+
|
|
560
|
+
* ``Move min airflow version to 2.3.0 for all providers (#27196)``
|
|
561
|
+
|
|
562
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
563
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
564
|
+
* ``Enable string normalization in python formatting - providers (#27205)``
|
|
565
|
+
|
|
566
|
+
2.2.0
|
|
567
|
+
.....
|
|
568
|
+
|
|
569
|
+
Features
|
|
570
|
+
~~~~~~~~
|
|
571
|
+
|
|
572
|
+
* ``Add 'DbtCloudListJobsOperator' (#26475)``
|
|
573
|
+
|
|
574
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
575
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
576
|
+
* ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
|
|
577
|
+
|
|
578
|
+
2.1.0
|
|
579
|
+
.....
|
|
580
|
+
|
|
581
|
+
Features
|
|
582
|
+
~~~~~~~~
|
|
583
|
+
|
|
584
|
+
* ``Improve taskflow type hints with ParamSpec (#25173)``
|
|
585
|
+
|
|
586
|
+
2.0.1
|
|
587
|
+
.....
|
|
588
|
+
|
|
589
|
+
Bug Fixes
|
|
590
|
+
~~~~~~~~~
|
|
591
|
+
|
|
592
|
+
* ``Update providers to use functools compat for ''cached_property'' (#24582)``
|
|
593
|
+
|
|
594
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
595
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
596
|
+
* ``Move provider dependencies to inside provider folders (#24672)``
|
|
597
|
+
* ``Remove 'hook-class-names' from provider.yaml (#24702)``
|
|
598
|
+
|
|
599
|
+
2.0.0
|
|
600
|
+
.....
|
|
601
|
+
|
|
602
|
+
Breaking changes
|
|
603
|
+
~~~~~~~~~~~~~~~~
|
|
604
|
+
|
|
605
|
+
.. note::
|
|
606
|
+
This release of provider is only available for Airflow 2.2+ as explained in the
|
|
607
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
608
|
+
|
|
609
|
+
Features
|
|
610
|
+
~~~~~~~~
|
|
611
|
+
|
|
612
|
+
* ``Enable dbt Cloud provider to interact with single tenant instances (#24264)``
|
|
613
|
+
|
|
614
|
+
Bug Fixes
|
|
615
|
+
~~~~~~~~~
|
|
616
|
+
|
|
617
|
+
* ``Fix typo in dbt Cloud provider description (#23179)``
|
|
618
|
+
* ``Fix new MyPy errors in main (#22884)``
|
|
619
|
+
|
|
620
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
621
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
622
|
+
* ``Add explanatory note for contributors about updating Changelog (#24229)``
|
|
623
|
+
* ``AIP-47 - Migrate dbt DAGs to new design #22472 (#24202)``
|
|
624
|
+
* ``Prepare provider documentation 2022.05.11 (#23631)``
|
|
625
|
+
* ``Use new Breese for building, pulling and verifying the images. (#23104)``
|
|
626
|
+
* ``Replace usage of 'DummyOperator' with 'EmptyOperator' (#22974)``
|
|
627
|
+
* ``Update dbt.py (#24218)``
|
|
628
|
+
* ``Prepare docs for May 2022 provider's release (#24231)``
|
|
629
|
+
* ``Update package description to remove double min-airflow specification (#24292)``
|
|
630
|
+
|
|
631
|
+
1.0.2
|
|
632
|
+
.....
|
|
633
|
+
|
|
634
|
+
Bug Fixes
|
|
635
|
+
~~~~~~~~~
|
|
636
|
+
|
|
637
|
+
* ``Fix mistakenly added install_requires for all providers (#22382)``
|
|
638
|
+
|
|
639
|
+
1.0.1
|
|
640
|
+
.....
|
|
641
|
+
|
|
642
|
+
Initial version of the provider.
|