apache-airflow-providers-teradata 3.0.2__tar.gz → 3.0.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-teradata might be problematic. Click here for more details.

Files changed (64) hide show
  1. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/PKG-INFO +8 -8
  2. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/README.rst +4 -4
  3. apache_airflow_providers_teradata-3.0.3/docs/.latest-doc-only-change.txt +1 -0
  4. apache_airflow_providers_teradata-3.0.3/docs/changelog.rst +238 -0
  5. apache_airflow_providers_teradata-3.0.3/docs/commits.rst +222 -0
  6. apache_airflow_providers_teradata-3.0.3/docs/conf.py +27 -0
  7. apache_airflow_providers_teradata-3.0.3/docs/connections/teradata.rst +100 -0
  8. apache_airflow_providers_teradata-3.0.3/docs/index.rst +137 -0
  9. apache_airflow_providers_teradata-3.0.3/docs/installing-providers-from-sources.rst +18 -0
  10. apache_airflow_providers_teradata-3.0.3/docs/integration-logos/Teradata.png +0 -0
  11. apache_airflow_providers_teradata-3.0.3/docs/operators/azure_blob_to_teradata.rst +134 -0
  12. apache_airflow_providers_teradata-3.0.3/docs/operators/compute_cluster.rst +107 -0
  13. apache_airflow_providers_teradata-3.0.3/docs/operators/index.rst +25 -0
  14. apache_airflow_providers_teradata-3.0.3/docs/operators/s3_to_teradata.rst +81 -0
  15. apache_airflow_providers_teradata-3.0.3/docs/operators/teradata.rst +229 -0
  16. apache_airflow_providers_teradata-3.0.3/docs/operators/teradata_to_teradata.rst +48 -0
  17. apache_airflow_providers_teradata-3.0.3/docs/security.rst +38 -0
  18. apache_airflow_providers_teradata-3.0.3/provider.yaml +83 -0
  19. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/pyproject.toml +21 -6
  20. apache_airflow_providers_teradata-3.0.3/src/airflow/__init__.py +17 -0
  21. apache_airflow_providers_teradata-3.0.3/src/airflow/providers/__init__.py +17 -0
  22. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/__init__.py +1 -1
  23. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/get_provider_info.py +0 -27
  24. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/operators/teradata_compute_cluster.py +15 -19
  25. apache_airflow_providers_teradata-3.0.3/tests/conftest.py +19 -0
  26. apache_airflow_providers_teradata-3.0.3/tests/system/__init__.py +17 -0
  27. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/__init__.py +16 -0
  28. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/create_ssl_table.sql +22 -0
  29. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/create_table.sql +22 -0
  30. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/example_azure_blob_to_teradata_transfer.py +217 -0
  31. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/example_s3_to_teradata_transfer.py +218 -0
  32. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/example_ssl_teradata.py +133 -0
  33. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/example_teradata.py +176 -0
  34. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/example_teradata_call_sp.py +174 -0
  35. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/example_teradata_compute_cluster.py +158 -0
  36. apache_airflow_providers_teradata-3.0.3/tests/system/teradata/example_teradata_to_teradata_transfer.py +160 -0
  37. apache_airflow_providers_teradata-3.0.3/tests/unit/__init__.py +17 -0
  38. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/__init__.py +16 -0
  39. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/hooks/__init__.py +17 -0
  40. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/hooks/test_teradata.py +301 -0
  41. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/operators/__init__.py +17 -0
  42. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/operators/test_teradata.py +129 -0
  43. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/operators/test_teradata_compute_cluster.py +713 -0
  44. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/transfers/__init__.py +17 -0
  45. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/transfers/test_azure_blob_to_teradata.py +60 -0
  46. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/transfers/test_s3_to_teradata.py +79 -0
  47. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/transfers/test_teradata_to_teradata.py +117 -0
  48. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/triggers/__init__.py +17 -0
  49. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/triggers/test_teradata_compute_cluster.py +174 -0
  50. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/utils/__init__.py +17 -0
  51. apache_airflow_providers_teradata-3.0.3/tests/unit/teradata/utils/test_constants.py +110 -0
  52. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/LICENSE +0 -0
  53. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/hooks/__init__.py +0 -0
  54. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/hooks/teradata.py +0 -0
  55. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/operators/__init__.py +0 -0
  56. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/operators/teradata.py +0 -0
  57. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/transfers/__init__.py +0 -0
  58. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/transfers/azure_blob_to_teradata.py +0 -0
  59. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/transfers/s3_to_teradata.py +0 -0
  60. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/transfers/teradata_to_teradata.py +0 -0
  61. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/triggers/__init__.py +0 -0
  62. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/triggers/teradata_compute_cluster.py +0 -0
  63. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/utils/__init__.py +0 -0
  64. {apache_airflow_providers_teradata-3.0.2 → apache_airflow_providers_teradata-3.0.3}/src/airflow/providers/teradata/utils/constants.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-teradata
3
- Version: 3.0.2
3
+ Version: 3.0.3
4
4
  Summary: Provider package apache-airflow-providers-teradata for Apache Airflow
5
5
  Keywords: airflow-provider,teradata,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -27,11 +27,11 @@ Requires-Dist: teradatasql>=17.20.0.28
27
27
  Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
28
28
  Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft-azure"
29
29
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
30
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.2/changelog.html
31
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.2
30
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3/changelog.html
31
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3
32
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
32
33
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
33
34
  Project-URL: Source Code, https://github.com/apache/airflow
34
- Project-URL: Twitter, https://x.com/ApacheAirflow
35
35
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
36
36
  Provides-Extra: amazon
37
37
  Provides-Extra: microsoft-azure
@@ -61,7 +61,7 @@ Provides-Extra: microsoft-azure
61
61
 
62
62
  Package ``apache-airflow-providers-teradata``
63
63
 
64
- Release: ``3.0.2``
64
+ Release: ``3.0.3``
65
65
 
66
66
 
67
67
  `Teradata <https://www.teradata.com/>`__
@@ -74,7 +74,7 @@ This is a provider package for ``teradata`` provider. All classes for this provi
74
74
  are in ``airflow.providers.teradata`` python package.
75
75
 
76
76
  You can find package information and changelog for the provider
77
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.2/>`_.
77
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3/>`_.
78
78
 
79
79
  Installation
80
80
  ------------
@@ -101,7 +101,7 @@ Cross provider package dependencies
101
101
  -----------------------------------
102
102
 
103
103
  Those are dependencies that might be needed in order to use all the features of the package.
104
- You need to install the specified provider packages in order to use them.
104
+ You need to install the specified providers in order to use them.
105
105
 
106
106
  You can install such cross-provider dependencies when installing from PyPI. For example:
107
107
 
@@ -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-teradata/3.0.2/changelog.html>`_.
122
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3/changelog.html>`_.
123
123
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-teradata``
25
25
 
26
- Release: ``3.0.2``
26
+ Release: ``3.0.3``
27
27
 
28
28
 
29
29
  `Teradata <https://www.teradata.com/>`__
@@ -36,7 +36,7 @@ This is a provider package for ``teradata`` provider. All classes for this provi
36
36
  are in ``airflow.providers.teradata`` 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-teradata/3.0.2/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
@@ -63,7 +63,7 @@ Cross provider package dependencies
63
63
  -----------------------------------
64
64
 
65
65
  Those are dependencies that might be needed in order to use all the features of the package.
66
- You need to install the specified provider packages in order to use them.
66
+ You need to install the specified providers in order to use them.
67
67
 
68
68
  You can install such cross-provider dependencies when installing from PyPI. For example:
69
69
 
@@ -81,4 +81,4 @@ Dependent package
81
81
  ====================================================================================================================== ===================
82
82
 
83
83
  The changelog for the provider package can be found in the
84
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.2/changelog.html>`_.
84
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3/changelog.html>`_.
@@ -0,0 +1 @@
1
+ 7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f
@@ -0,0 +1,238 @@
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
+ .. NOTE TO CONTRIBUTORS:
19
+ Please, only add notes to the Changelog just below the "Changelog" header when there
20
+ are some breaking changes and you want to add an explanation to the users on how they are supposed
21
+ to deal with them. The changelog is updated and maintained semi-automatically by release manager.
22
+
23
+ ``apache-airflow-providers-teradata``
24
+
25
+ Changelog
26
+ ---------
27
+
28
+ 3.0.3
29
+ .....
30
+
31
+ Misc
32
+ ~~~~
33
+
34
+ * ``remove superfluous else block (#49199)``
35
+
36
+ .. Below changes are excluded from the changelog. Move them to
37
+ appropriate section above if needed. Do not delete the lines(!):
38
+ * ``Prepare docs for Apr 2nd wave of providers (#49051)``
39
+ * ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
40
+ * ``Remove fab from preinstalled providers (#48457)``
41
+ * ``Improve documentation building iteration (#48760)``
42
+ * ``Prepare docs for Apr 1st wave of providers (#48828)``
43
+ * ``Simplify tooling by switching completely to uv (#48223)``
44
+ * ``Upgrade ruff to latest version (#48553)``
45
+ * ``Prepare docs for Mar 2nd wave of providers (#48383)``
46
+ * ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
47
+ * ``Move airflow sources to airflow-core package (#47798)``
48
+ * ``Remove links to x/twitter.com (#47801)``
49
+
50
+ 3.0.2
51
+ .....
52
+
53
+ Bug Fixes
54
+ ~~~~~~~~~
55
+
56
+ * ``fIx deprecation warnings in common.sql (#47169)``
57
+
58
+ Misc
59
+ ~~~~
60
+
61
+ * ``Upgrade flit to 3.11.0 (#46938)``
62
+
63
+ .. Below changes are excluded from the changelog. Move them to
64
+ appropriate section above if needed. Do not delete the lines(!):
65
+ * ``Move tests_common package to devel-common project (#47281)``
66
+ * ``Improve documentation for updating provider dependencies (#47203)``
67
+ * ``Add legacy namespace packages to airflow.providers (#47064)``
68
+ * ``Remove extra whitespace in provider readme template (#46975)``
69
+
70
+ 3.0.1
71
+ .....
72
+
73
+ Misc
74
+ ~~~~
75
+
76
+ * ``AIP-72: Support better type-hinting for Context dict in SDK (#45583)``
77
+
78
+ .. Below changes are excluded from the changelog. Move them to
79
+ appropriate section above if needed. Do not delete the lines(!):
80
+ * ``Move provider_tests to unit folder in provider tests (#46800)``
81
+ * ``Removed the unused provider's distribution (#46608)``
82
+ * ``Move TERADATA provider to new structure (#46060)``
83
+
84
+ 3.0.0
85
+ .....
86
+
87
+ .. note::
88
+ This release of provider is only available for Airflow 2.9+ as explained in the
89
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
90
+
91
+ Breaking changes
92
+ ~~~~~~~~~~~~~~~~
93
+
94
+ .. warning::
95
+ All deprecated classes, parameters and features have been removed from the teradata provider package.
96
+ The following breaking changes were introduced:
97
+
98
+ * Removed deprecated ``bulk_insert_rows`` method from ``hooks``. Use ``insert_rows`` instead.
99
+
100
+ * ``Remove deprecations from Teradata Provider (#44746)``
101
+
102
+ Misc
103
+ ~~~~
104
+
105
+ * ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
106
+
107
+
108
+ .. Below changes are excluded from the changelog. Move them to
109
+ appropriate section above if needed. Do not delete the lines(!):
110
+ * ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
111
+
112
+ 2.6.1
113
+ .....
114
+
115
+ Misc
116
+ ~~~~
117
+
118
+ * ``Add support for semicolon stripping to DbApiHook, PrestoHook, and TrinoHook (#41916)``
119
+
120
+
121
+ .. Below changes are excluded from the changelog. Move them to
122
+ appropriate section above if needed. Do not delete the lines(!):
123
+ * ``Start porting DAG definition code to the Task SDK (#43076)``
124
+ * ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
125
+
126
+ 2.6.0
127
+ .....
128
+
129
+ .. note::
130
+ This release of provider is only available for Airflow 2.8+ as explained in the
131
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
132
+
133
+ Misc
134
+ ~~~~
135
+
136
+ * ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
137
+
138
+
139
+ .. Below changes are excluded from the changelog. Move them to
140
+ appropriate section above if needed. Do not delete the lines(!):
141
+
142
+ 2.5.0
143
+ .....
144
+
145
+ Features
146
+ ~~~~~~~~
147
+
148
+ * ``Implemented Query Band Support for the Teradata provider (#40716)``
149
+
150
+ Misc
151
+ ~~~~
152
+
153
+ * ``Clean up remaining getattr connection DbApiHook (#40665)``
154
+
155
+
156
+ .. Below changes are excluded from the changelog. Move them to
157
+ appropriate section above if needed. Do not delete the lines(!):
158
+
159
+ 2.4.0
160
+ .....
161
+
162
+ Features
163
+ ~~~~~~~~
164
+
165
+ * ``Added support of Teradata Compute Cluster Provision, Decommission, Suspend and Resume operations (#40509)``
166
+
167
+ .. Below changes are excluded from the changelog. Move them to
168
+ appropriate section above if needed. Do not delete the lines(!):
169
+ * ``Enable enforcing pydocstyle rule D213 in ruff. (#40448)``
170
+
171
+ 2.3.0
172
+ .....
173
+
174
+ Features
175
+ ~~~~~~~~
176
+
177
+ * ``Updates to Teradata Provider (#40378)``
178
+
179
+ 2.2.0
180
+ .....
181
+
182
+ Features
183
+ ~~~~~~~~
184
+
185
+ .. note::
186
+ This release contains several new features including:
187
+ • Introduction of Stored Procedure Support in Teradata Hook
188
+ • Inclusion of the TeradataStoredProcedureOperator for executing stored procedures
189
+ • Integration of Azure Blob Storage to Teradata Transfer Operator
190
+ • Integration of Amazon S3 to Teradata Transfer Operator
191
+ • Provision of necessary documentation, along with unit and system tests, for the Teradata Provider modifications.
192
+
193
+ * ``Updates to Teradata Provider (#39217)``
194
+
195
+ 2.1.1
196
+ .....
197
+
198
+ Misc
199
+ ~~~~
200
+
201
+ * ``Faster 'airflow_version' imports (#39552)``
202
+ * ``Simplify 'airflow_version' imports (#39497)``
203
+
204
+ .. Below changes are excluded from the changelog. Move them to
205
+ appropriate section above if needed. Do not delete the lines(!):
206
+ * ``Reapply templates for all providers (#39554)``
207
+
208
+ 2.1.0
209
+ .....
210
+
211
+ .. note::
212
+ This release of provider is only available for Airflow 2.7+ as explained in the
213
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
214
+
215
+ Misc
216
+ ~~~~
217
+
218
+ * ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
219
+ * ``Always use the executemany method when inserting rows in DbApiHook as it's way much faster (#38715)``
220
+
221
+
222
+ .. Below changes are excluded from the changelog. Move them to
223
+ appropriate section above if needed. Do not delete the lines(!):
224
+ * ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
225
+ * ``Bump ruff to 0.3.3 (#38240)``
226
+
227
+ 2.0.0
228
+ .....
229
+
230
+ ``Initial version of the provider. (#36953)``
231
+
232
+ Breaking changes
233
+ ~~~~~~~~~~~~~~~~
234
+
235
+ Previous versions of this package were owned by ``Felipe Lolas`` under
236
+ https://github.com/flolas/apache-airflow-providers-teradata
237
+ These versions were not maintained by Apache-Airflow
238
+ If you are migrating from older version, it's recommended to read the docs and refactor your code
@@ -0,0 +1,222 @@
1
+
2
+ .. Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ .. http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ .. Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+
19
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
20
+
21
+ .. IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ `PROVIDER_COMMITS_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
23
+
24
+ .. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN!
25
+
26
+ Package apache-airflow-providers-teradata
27
+ ------------------------------------------------------
28
+
29
+ `Teradata <https://www.teradata.com/>`__
30
+
31
+
32
+ This is detailed commit list of changes for versions provider package: ``teradata``.
33
+ For high-level changelog, see :doc:`package information including changelog <index>`.
34
+
35
+
36
+
37
+ 3.0.3
38
+ .....
39
+
40
+ Latest change: 2025-04-14
41
+
42
+ ================================================================================================== =========== ==================================================================================
43
+ Commit Committed Subject
44
+ ================================================================================================== =========== ==================================================================================
45
+ `cb295c351a <https://github.com/apache/airflow/commit/cb295c351a016c0a10cab07f2a628b865cff3ca3>`__ 2025-04-14 ``remove superfluous else block (#49199)``
46
+ `4a8567b20b <https://github.com/apache/airflow/commit/4a8567b20bdd6555cbdc936d6674bf4fa390b0d5>`__ 2025-04-10 ``Prepare docs for Apr 2nd wave of providers (#49051)``
47
+ `7b2ec33c7a <https://github.com/apache/airflow/commit/7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f>`__ 2025-04-08 ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
48
+ `139673d3ce <https://github.com/apache/airflow/commit/139673d3ce5552c2cf8bcb2d202e97342c4b237c>`__ 2025-04-07 ``Remove fab from preinstalled providers (#48457)``
49
+ `67858fd7e7 <https://github.com/apache/airflow/commit/67858fd7e7ac82788854844c1e6ef5a35f1d0d23>`__ 2025-04-06 ``Improve documentation building iteration (#48760)``
50
+ `adbb062b50 <https://github.com/apache/airflow/commit/adbb062b50e2e128fe475a76b7ce10ec93c39ee2>`__ 2025-04-06 ``Prepare docs for Apr 1st wave of providers (#48828)``
51
+ `d4473555c0 <https://github.com/apache/airflow/commit/d4473555c0e7022e073489b7163d49102881a1a6>`__ 2025-04-02 ``Simplify tooling by switching completely to uv (#48223)``
52
+ `47002feacd <https://github.com/apache/airflow/commit/47002feacd8aaf794b47c2dd241aa25068354a2a>`__ 2025-03-30 ``Upgrade ruff to latest version (#48553)``
53
+ `c762e17820 <https://github.com/apache/airflow/commit/c762e17820cae6b162caa3eec5123760e07d56cc>`__ 2025-03-26 ``Prepare docs for Mar 2nd wave of providers (#48383)``
54
+ `6adb2dbae4 <https://github.com/apache/airflow/commit/6adb2dbae47341eb61dbc62dbc56176d9aa83fd9>`__ 2025-03-25 ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
55
+ `243fe86d4b <https://github.com/apache/airflow/commit/243fe86d4b3e59bb12977b3e36ca3f2ed27ca0f8>`__ 2025-03-21 ``Move airflow sources to airflow-core package (#47798)``
56
+ `935d2831fe <https://github.com/apache/airflow/commit/935d2831fe8fd509b618a738bf00e0c34e186e11>`__ 2025-03-15 ``Remove links to x/twitter.com (#47801)``
57
+ ================================================================================================== =========== ==================================================================================
58
+
59
+ 3.0.2
60
+ .....
61
+
62
+ Latest change: 2025-03-09
63
+
64
+ ================================================================================================== =========== =====================================================================
65
+ Commit Committed Subject
66
+ ================================================================================================== =========== =====================================================================
67
+ `492ecfe5c0 <https://github.com/apache/airflow/commit/492ecfe5c03102bfb710108038ebd5fc50cb55b5>`__ 2025-03-09 ``Prepare docs for Mar 1st wave of providers (#47545)``
68
+ `e4002c3305 <https://github.com/apache/airflow/commit/e4002c3305a757f5926f96c996e701e8f998a042>`__ 2025-03-05 ``Move tests_common package to devel-common project (#47281)``
69
+ `1addb55154 <https://github.com/apache/airflow/commit/1addb55154fbef31bfa021537cfbd4395696381c>`__ 2025-02-28 ``Improve documentation for updating provider dependencies (#47203)``
70
+ `28c93d93ca <https://github.com/apache/airflow/commit/28c93d93ca27a509182e7c6acfacc60ad45e739f>`__ 2025-02-27 ``fIx deprecation warnings in common.sql (#47169)``
71
+ `c6c4f95ed9 <https://github.com/apache/airflow/commit/c6c4f95ed9e3220133815b9126c135e805637022>`__ 2025-02-25 ``Add legacy namespace packages to airflow.providers (#47064)``
72
+ `dbf8bb4092 <https://github.com/apache/airflow/commit/dbf8bb409223687c7d2ad10649a92d02c24bb3b4>`__ 2025-02-24 ``Remove extra whitespace in provider readme template (#46975)``
73
+ `b28c336e8b <https://github.com/apache/airflow/commit/b28c336e8b7aa1d69c0f9520b182b1b661377337>`__ 2025-02-21 ``Upgrade flit to 3.11.0 (#46938)``
74
+ ================================================================================================== =========== =====================================================================
75
+
76
+ 3.0.1
77
+ .....
78
+
79
+ Latest change: 2025-02-21
80
+
81
+ ================================================================================================== =========== =========================================================================
82
+ Commit Committed Subject
83
+ ================================================================================================== =========== =========================================================================
84
+ `5d87bddf0a <https://github.com/apache/airflow/commit/5d87bddf0aa5f485f3684c909fb95f461e5a2ab6>`__ 2025-02-21 ``Prepare docs for Feb 1st wave of providers (#46893)``
85
+ `4d5846f58f <https://github.com/apache/airflow/commit/4d5846f58fe0de9b43358c0be75dd72e968dacc4>`__ 2025-02-16 ``Move provider_tests to unit folder in provider tests (#46800)``
86
+ `e027457a24 <https://github.com/apache/airflow/commit/e027457a24d0c6235bfed9c2a8399f75342e82f1>`__ 2025-02-15 ``Removed the unused provider's distribution (#46608)``
87
+ `b0d7ee2dab <https://github.com/apache/airflow/commit/b0d7ee2dabf706b6662b33b1b9372047f94680b4>`__ 2025-01-27 ``Move TERADATA provider to new structure (#46060)``
88
+ `f616c62209 <https://github.com/apache/airflow/commit/f616c62209d6b51d293ecf6f5c900f89a7fdc3a3>`__ 2025-01-15 ``AIP-72: Support better type-hinting for Context dict in SDK (#45583)``
89
+ ================================================================================================== =========== =========================================================================
90
+
91
+ 3.0.0
92
+ .....
93
+
94
+ Latest change: 2024-12-20
95
+
96
+ ================================================================================================== =========== ====================================================================
97
+ Commit Committed Subject
98
+ ================================================================================================== =========== ====================================================================
99
+ `2723508345 <https://github.com/apache/airflow/commit/2723508345d5cf074aeb673955ce72996785f2bc>`__ 2024-12-20 ``Prepare docs for Nov 1st wave of providers Dec 2024 (#45042)``
100
+ `4b38bed76c <https://github.com/apache/airflow/commit/4b38bed76c1ea5fe84a6bc678ce87e20d563adc0>`__ 2024-12-16 ``Bump min version of Providers to 2.9 (#44956)``
101
+ `c894dab201 <https://github.com/apache/airflow/commit/c894dab20136ca11f096effacd5c58b794129d79>`__ 2024-12-07 ``Remove deprecations from Teradata Provider (#44746)``
102
+ `1275fec92f <https://github.com/apache/airflow/commit/1275fec92fd7cd7135b100d66d41bdcb79ade29d>`__ 2024-11-24 ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
103
+ ================================================================================================== =========== ====================================================================
104
+
105
+ 2.6.1
106
+ .....
107
+
108
+ Latest change: 2024-11-14
109
+
110
+ ================================================================================================== =========== ========================================================================================
111
+ Commit Committed Subject
112
+ ================================================================================================== =========== ========================================================================================
113
+ `a53d9f6d25 <https://github.com/apache/airflow/commit/a53d9f6d257f193ea5026ba4cd007d5ddeab968f>`__ 2024-11-14 ``Prepare docs for Nov 1st wave of providers (#44011)``
114
+ `e7194dff6a <https://github.com/apache/airflow/commit/e7194dff6a816bf3a721cbf579ceac19c11cd111>`__ 2024-11-13 ``Add support for semicolon stripping to DbApiHook, PrestoHook, and TrinoHook (#41916)``
115
+ `d8c7d28411 <https://github.com/apache/airflow/commit/d8c7d28411bea04ae5771fc1e2973d92eb0a144e>`__ 2024-10-30 ``Start porting DAG definition code to the Task SDK (#43076)``
116
+ `857ca4c06c <https://github.com/apache/airflow/commit/857ca4c06c9008593674cabdd28d3c30e3e7f97b>`__ 2024-10-09 ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
117
+ ================================================================================================== =========== ========================================================================================
118
+
119
+ 2.6.0
120
+ .....
121
+
122
+ Latest change: 2024-08-19
123
+
124
+ ================================================================================================== =========== =======================================================================
125
+ Commit Committed Subject
126
+ ================================================================================================== =========== =======================================================================
127
+ `75fb7acbac <https://github.com/apache/airflow/commit/75fb7acbaca09a040067f0a5a37637ff44eb9e14>`__ 2024-08-19 ``Prepare docs for Aug 2nd wave of providers (#41559)``
128
+ `fcbff15bda <https://github.com/apache/airflow/commit/fcbff15bda151f70db0ca13fdde015bace5527c4>`__ 2024-08-12 ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
129
+ ================================================================================================== =========== =======================================================================
130
+
131
+ 2.5.0
132
+ .....
133
+
134
+ Latest change: 2024-08-03
135
+
136
+ ================================================================================================== =========== =====================================================================
137
+ Commit Committed Subject
138
+ ================================================================================================== =========== =====================================================================
139
+ `d23881c648 <https://github.com/apache/airflow/commit/d23881c6489916113921dcedf85077441b44aaf3>`__ 2024-08-03 ``Prepare docs for Aug 1st wave of providers (#41230)``
140
+ `bef82d6ab3 <https://github.com/apache/airflow/commit/bef82d6ab38d627dc1b42981c90b9f8d36852f4c>`__ 2024-07-19 ``Clean up remaining getattr connection DbApiHook (#40665)``
141
+ `5383d90854 <https://github.com/apache/airflow/commit/5383d90854fc1663072646a97904a73e1b2bdd9a>`__ 2024-07-11 ``Implemented Query Band Support for the Teradata provider (#40716)``
142
+ ================================================================================================== =========== =====================================================================
143
+
144
+ 2.4.0
145
+ .....
146
+
147
+ Latest change: 2024-07-09
148
+
149
+ ================================================================================================== =========== =============================================================================================================
150
+ Commit Committed Subject
151
+ ================================================================================================== =========== =============================================================================================================
152
+ `09a7bd1d58 <https://github.com/apache/airflow/commit/09a7bd1d585d2d306dd30435689f22b614fe0abf>`__ 2024-07-09 ``Prepare docs 1st wave July 2024 (#40644)``
153
+ `8ced563f26 <https://github.com/apache/airflow/commit/8ced563f26e93b3a6814361f6296615c50aa5e18>`__ 2024-07-02 ``Added support of Teradata Compute Cluster Provision, Decommission, Suspend and Resume operations (#40509)``
154
+ `a62bd83188 <https://github.com/apache/airflow/commit/a62bd831885957c55b073bf309bc59a1d505e8fb>`__ 2024-06-27 ``Enable enforcing pydocstyle rule D213 in ruff. (#40448)``
155
+ ================================================================================================== =========== =============================================================================================================
156
+
157
+ 2.3.0
158
+ .....
159
+
160
+ Latest change: 2024-06-22
161
+
162
+ ================================================================================================== =========== ============================================
163
+ Commit Committed Subject
164
+ ================================================================================================== =========== ============================================
165
+ `6e5ae26382 <https://github.com/apache/airflow/commit/6e5ae26382b328e88907e8301d4b2352ef8524c5>`__ 2024-06-22 ``Prepare docs 2nd wave June 2024 (#40273)``
166
+ `33a14198c1 <https://github.com/apache/airflow/commit/33a14198c106be4b0a89d67bd711b560b0f4251d>`__ 2024-06-22 ``Updates to Teradata Provider (#40378)``
167
+ ================================================================================================== =========== ============================================
168
+
169
+ 2.2.0
170
+ .....
171
+
172
+ Latest change: 2024-05-30
173
+
174
+ ================================================================================================== =========== ===========================================
175
+ Commit Committed Subject
176
+ ================================================================================================== =========== ===========================================
177
+ `11f219abff <https://github.com/apache/airflow/commit/11f219abffb49ef713bac3e60121fcbf737dc95b>`__ 2024-05-30 ``Prepare docs 4th wave May 2024 (#39934)``
178
+ `0b9232e54d <https://github.com/apache/airflow/commit/0b9232e54d61357930c71737fb51657c834fc6d7>`__ 2024-05-29 ``Updates to Teradata Provider (#39217)``
179
+ ================================================================================================== =========== ===========================================
180
+
181
+ 2.1.1
182
+ .....
183
+
184
+ Latest change: 2024-05-26
185
+
186
+ ================================================================================================== =========== ================================================
187
+ Commit Committed Subject
188
+ ================================================================================================== =========== ================================================
189
+ `34500f3a2f <https://github.com/apache/airflow/commit/34500f3a2fa4652272bc831e3c18fd2a6a2da5ef>`__ 2024-05-26 ``Prepare docs 3rd wave May 2024 (#39738)``
190
+ `2b1a2f8d56 <https://github.com/apache/airflow/commit/2b1a2f8d561e569df194c4ee0d3a18930738886e>`__ 2024-05-11 ``Reapply templates for all providers (#39554)``
191
+ `2c05187b07 <https://github.com/apache/airflow/commit/2c05187b07baf7c41a32b18fabdbb3833acc08eb>`__ 2024-05-10 ``Faster 'airflow_version' imports (#39552)``
192
+ `73918925ed <https://github.com/apache/airflow/commit/73918925edaf1c94790a6ad8bec01dec60accfa1>`__ 2024-05-08 ``Simplify 'airflow_version' imports (#39497)``
193
+ ================================================================================================== =========== ================================================
194
+
195
+ 2.1.0
196
+ .....
197
+
198
+ Latest change: 2024-05-01
199
+
200
+ ================================================================================================== =========== =======================================================================================================
201
+ Commit Committed Subject
202
+ ================================================================================================== =========== =======================================================================================================
203
+ `fe4605a10e <https://github.com/apache/airflow/commit/fe4605a10e26f1b8a180979ba5765d1cb7fb0111>`__ 2024-05-01 ``Prepare docs 1st wave May 2024 (#39328)``
204
+ `ead9b00f7c <https://github.com/apache/airflow/commit/ead9b00f7cd5acecf9d575c459bb62633088436a>`__ 2024-04-25 ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
205
+ `7ab24c7723 <https://github.com/apache/airflow/commit/7ab24c7723c65c90626b10db63444b88c0380e14>`__ 2024-04-12 ``Always use the executemany method when inserting rows in DbApiHook as it's way much faster (#38715)``
206
+ `5fa80b6aea <https://github.com/apache/airflow/commit/5fa80b6aea60f93cdada66f160e2b54f723865ca>`__ 2024-04-10 ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
207
+ `0a74928894 <https://github.com/apache/airflow/commit/0a74928894fb57b0160208262ccacad12da23fc7>`__ 2024-03-18 ``Bump ruff to 0.3.3 (#38240)``
208
+ ================================================================================================== =========== =======================================================================================================
209
+
210
+ 2.0.0
211
+ .....
212
+
213
+ Latest change: 2024-02-22
214
+
215
+ ================================================================================================== =========== ====================================================================
216
+ Commit Committed Subject
217
+ ================================================================================================== =========== ====================================================================
218
+ `b2f0279cc1 <https://github.com/apache/airflow/commit/b2f0279cc11f8ff05bea7070d99f9a383ca7b6de>`__ 2024-02-22 ``Prepare docs ad hoc Teradata provider RC2 February 2024 (#37624)``
219
+ `69d48ed7b5 <https://github.com/apache/airflow/commit/69d48ed7b57db48567347f000c12b28d66f972ba>`__ 2024-02-21 ``Prepare docs ad hoc Teradata provider February 2024 (#37589)``
220
+ `5a0be392e6 <https://github.com/apache/airflow/commit/5a0be392e66f8e5426ba3478621115e92fcf245b>`__ 2024-02-16 ``Add comment about versions updated by release manager (#37488)``
221
+ `c41794d056 <https://github.com/apache/airflow/commit/c41794d0562984243c0bb0331e41c58d213eb690>`__ 2024-02-15 ``Add Teradata Provider (#36953)``
222
+ ================================================================================================== =========== ====================================================================
@@ -0,0 +1,27 @@
1
+ # Disable Flake8 because of all the sphinx imports
2
+ #
3
+ # Licensed to the Apache Software Foundation (ASF) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The ASF licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+ """Configuration of Providers docs building."""
20
+
21
+ from __future__ import annotations
22
+
23
+ import os
24
+
25
+ os.environ["AIRFLOW_PACKAGE_NAME"] = "apache-airflow-providers-teradata"
26
+
27
+ from docs.provider_conf import * # noqa: F403