apache-airflow-providers-teradata 3.0.2rc1__tar.gz → 3.2.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.
Files changed (84) hide show
  1. apache_airflow_providers_teradata-3.2.3/NOTICE +5 -0
  2. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/PKG-INFO +42 -23
  3. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/README.rst +28 -14
  4. apache_airflow_providers_teradata-3.2.3/docs/.latest-doc-only-change.txt +1 -0
  5. apache_airflow_providers_teradata-3.2.3/docs/changelog.rst +326 -0
  6. apache_airflow_providers_teradata-3.2.3/docs/commits.rst +35 -0
  7. apache_airflow_providers_teradata-3.2.3/docs/conf.py +27 -0
  8. apache_airflow_providers_teradata-3.2.3/docs/connections/teradata.rst +100 -0
  9. apache_airflow_providers_teradata-3.2.3/docs/index.rst +140 -0
  10. apache_airflow_providers_teradata-3.2.3/docs/installing-providers-from-sources.rst +18 -0
  11. apache_airflow_providers_teradata-3.2.3/docs/integration-logos/Teradata.png +0 -0
  12. apache_airflow_providers_teradata-3.2.3/docs/operators/azure_blob_to_teradata.rst +134 -0
  13. apache_airflow_providers_teradata-3.2.3/docs/operators/bteq.rst +274 -0
  14. apache_airflow_providers_teradata-3.2.3/docs/operators/compute_cluster.rst +107 -0
  15. apache_airflow_providers_teradata-3.2.3/docs/operators/index.rst +25 -0
  16. apache_airflow_providers_teradata-3.2.3/docs/operators/s3_to_teradata.rst +81 -0
  17. apache_airflow_providers_teradata-3.2.3/docs/operators/teradata.rst +229 -0
  18. apache_airflow_providers_teradata-3.2.3/docs/operators/teradata_to_teradata.rst +48 -0
  19. apache_airflow_providers_teradata-3.2.3/docs/security.rst +38 -0
  20. apache_airflow_providers_teradata-3.2.3/provider.yaml +112 -0
  21. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/pyproject.toml +34 -12
  22. apache_airflow_providers_teradata-3.2.3/src/airflow/__init__.py +17 -0
  23. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/__init__.py +17 -0
  24. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/__init__.py +3 -3
  25. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/get_provider_info.py +19 -30
  26. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/teradata/hooks/bteq.py +337 -0
  27. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/hooks/teradata.py +30 -10
  28. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/teradata/hooks/ttu.py +93 -0
  29. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/teradata/operators/bteq.py +269 -0
  30. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/operators/teradata.py +2 -6
  31. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/operators/teradata_compute_cluster.py +59 -65
  32. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/transfers/azure_blob_to_teradata.py +2 -3
  33. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/transfers/s3_to_teradata.py +2 -7
  34. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/transfers/teradata_to_teradata.py +2 -6
  35. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/triggers/teradata_compute_cluster.py +6 -7
  36. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/teradata/utils/bteq_util.py +217 -0
  37. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/teradata/utils/constants.py +49 -0
  38. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/teradata/utils/encryption_utils.py +75 -0
  39. apache_airflow_providers_teradata-3.2.3/src/airflow/providers/teradata/version_compat.py +38 -0
  40. apache_airflow_providers_teradata-3.2.3/tests/conftest.py +19 -0
  41. apache_airflow_providers_teradata-3.2.3/tests/system/__init__.py +17 -0
  42. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/__init__.py +16 -0
  43. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/create_ssl_table.sql +22 -0
  44. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/create_table.sql +22 -0
  45. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_azure_blob_to_teradata_transfer.py +217 -0
  46. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_bteq.py +272 -0
  47. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_remote_bteq.py +272 -0
  48. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_s3_to_teradata_transfer.py +218 -0
  49. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_ssl_teradata.py +133 -0
  50. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_teradata.py +176 -0
  51. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_teradata_call_sp.py +174 -0
  52. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_teradata_compute_cluster.py +158 -0
  53. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/example_teradata_to_teradata_transfer.py +160 -0
  54. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/script +15 -0
  55. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/script.bteq +15 -0
  56. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/script.sql +29 -0
  57. apache_airflow_providers_teradata-3.2.3/tests/system/teradata/script_utf16.bteq +0 -0
  58. apache_airflow_providers_teradata-3.2.3/tests/unit/__init__.py +17 -0
  59. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/__init__.py +16 -0
  60. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/hooks/__init__.py +17 -0
  61. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/hooks/test_bteq.py +393 -0
  62. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/hooks/test_teradata.py +307 -0
  63. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/hooks/test_ttu.py +136 -0
  64. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/operators/__init__.py +17 -0
  65. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/operators/test_bteq.py +294 -0
  66. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/operators/test_teradata.py +129 -0
  67. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/operators/test_teradata_compute_cluster.py +713 -0
  68. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/transfers/__init__.py +17 -0
  69. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/transfers/test_azure_blob_to_teradata.py +60 -0
  70. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/transfers/test_s3_to_teradata.py +79 -0
  71. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/transfers/test_teradata_to_teradata.py +117 -0
  72. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/triggers/__init__.py +17 -0
  73. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/triggers/test_teradata_compute_cluster.py +178 -0
  74. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/utils/__init__.py +17 -0
  75. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/utils/test_bteq_util.py +354 -0
  76. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/utils/test_constants.py +80 -0
  77. apache_airflow_providers_teradata-3.2.3/tests/unit/teradata/utils/test_encryption_utils.py +108 -0
  78. apache_airflow_providers_teradata-3.0.2rc1/src/airflow/providers/teradata/utils/constants.py +0 -46
  79. {apache_airflow_providers_teradata-3.0.2rc1/src/airflow/providers/teradata → apache_airflow_providers_teradata-3.2.3}/LICENSE +0 -0
  80. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/hooks/__init__.py +0 -0
  81. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/operators/__init__.py +0 -0
  82. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/transfers/__init__.py +0 -0
  83. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/triggers/__init__.py +0 -0
  84. {apache_airflow_providers_teradata-3.0.2rc1 → apache_airflow_providers_teradata-3.2.3}/src/airflow/providers/teradata/utils/__init__.py +0 -0
@@ -0,0 +1,5 @@
1
+ Apache Airflow
2
+ Copyright 2016-2025 The Apache Software Foundation
3
+
4
+ This product includes software developed at
5
+ The Apache Software Foundation (http://www.apache.org/).
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-teradata
3
- Version: 3.0.2rc1
3
+ Version: 3.2.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>
7
7
  Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
8
- Requires-Python: ~=3.9
8
+ Requires-Python: >=3.10
9
9
  Description-Content-Type: text/x-rst
10
+ License-Expression: Apache-2.0
10
11
  Classifier: Development Status :: 5 - Production/Stable
11
12
  Classifier: Environment :: Console
12
13
  Classifier: Environment :: Web Environment
@@ -14,27 +15,31 @@ Classifier: Intended Audience :: Developers
14
15
  Classifier: Intended Audience :: System Administrators
15
16
  Classifier: Framework :: Apache Airflow
16
17
  Classifier: Framework :: Apache Airflow :: Provider
17
- Classifier: License :: OSI Approved :: Apache Software License
18
- Classifier: Programming Language :: Python :: 3.9
19
18
  Classifier: Programming Language :: Python :: 3.10
20
19
  Classifier: Programming Language :: Python :: 3.11
21
20
  Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: System :: Monitoring
23
- Requires-Dist: apache-airflow>=2.9.0rc0
24
- Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
23
+ License-File: LICENSE
24
+ License-File: NOTICE
25
+ Requires-Dist: apache-airflow>=2.10.0
26
+ Requires-Dist: apache-airflow-providers-common-compat>=1.8.0
27
+ Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
25
28
  Requires-Dist: teradatasqlalchemy>=17.20.0.0
26
29
  Requires-Dist: teradatasql>=17.20.0.28
27
30
  Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
28
31
  Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft-azure"
32
+ Requires-Dist: apache-airflow-providers-ssh ; extra == "ssh"
29
33
  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
34
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.3/changelog.html
35
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.3
36
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
32
37
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
33
38
  Project-URL: Source Code, https://github.com/apache/airflow
34
- Project-URL: Twitter, https://x.com/ApacheAirflow
35
39
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
36
40
  Provides-Extra: amazon
37
41
  Provides-Extra: microsoft-azure
42
+ Provides-Extra: ssh
38
43
 
39
44
 
40
45
  .. Licensed to the Apache Software Foundation (ASF) under one
@@ -61,7 +66,7 @@ Provides-Extra: microsoft-azure
61
66
 
62
67
  Package ``apache-airflow-providers-teradata``
63
68
 
64
- Release: ``3.0.2``
69
+ Release: ``3.2.3``
65
70
 
66
71
 
67
72
  `Teradata <https://www.teradata.com/>`__
@@ -74,34 +79,35 @@ This is a provider package for ``teradata`` provider. All classes for this provi
74
79
  are in ``airflow.providers.teradata`` python package.
75
80
 
76
81
  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/>`_.
82
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.3/>`_.
78
83
 
79
84
  Installation
80
85
  ------------
81
86
 
82
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
87
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
83
88
  for the minimum Airflow version supported) via
84
89
  ``pip install apache-airflow-providers-teradata``
85
90
 
86
- The package supports the following python versions: 3.9,3.10,3.11,3.12
91
+ The package supports the following python versions: 3.10,3.11,3.12,3.13
87
92
 
88
93
  Requirements
89
94
  ------------
90
95
 
91
- ======================================= ==================
92
- PIP package Version required
93
- ======================================= ==================
94
- ``apache-airflow`` ``>=2.9.0``
95
- ``apache-airflow-providers-common-sql`` ``>=1.20.0``
96
- ``teradatasqlalchemy`` ``>=17.20.0.0``
97
- ``teradatasql`` ``>=17.20.0.28``
98
- ======================================= ==================
96
+ ========================================== ==================
97
+ PIP package Version required
98
+ ========================================== ==================
99
+ ``apache-airflow`` ``>=2.10.0``
100
+ ``apache-airflow-providers-common-compat`` ``>=1.8.0``
101
+ ``apache-airflow-providers-common-sql`` ``>=1.20.0``
102
+ ``teradatasqlalchemy`` ``>=17.20.0.0``
103
+ ``teradatasql`` ``>=17.20.0.28``
104
+ ========================================== ==================
99
105
 
100
106
  Cross provider package dependencies
101
107
  -----------------------------------
102
108
 
103
109
  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.
110
+ You need to install the specified providers in order to use them.
105
111
 
106
112
  You can install such cross-provider dependencies when installing from PyPI. For example:
107
113
 
@@ -114,10 +120,23 @@ You can install such cross-provider dependencies when installing from PyPI. For
114
120
  Dependent package Extra
115
121
  ====================================================================================================================== ===================
116
122
  `apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_ ``amazon``
123
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
117
124
  `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
118
125
  `apache-airflow-providers-microsoft-azure <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure>`_ ``microsoft.azure``
126
+ `apache-airflow-providers-ssh <https://airflow.apache.org/docs/apache-airflow-providers-ssh>`_ ``ssh``
119
127
  ====================================================================================================================== ===================
120
128
 
129
+ Optional dependencies
130
+ ----------------------
131
+
132
+ =================== ============================================
133
+ Extra Dependencies
134
+ =================== ============================================
135
+ ``microsoft.azure`` ``apache-airflow-providers-microsoft-azure``
136
+ ``amazon`` ``apache-airflow-providers-amazon``
137
+ ``ssh`` ``apache-airflow-providers-ssh``
138
+ =================== ============================================
139
+
121
140
  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>`_.
141
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.3/changelog.html>`_.
123
142
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-teradata``
25
25
 
26
- Release: ``3.0.2``
26
+ Release: ``3.2.3``
27
27
 
28
28
 
29
29
  `Teradata <https://www.teradata.com/>`__
@@ -36,34 +36,35 @@ 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.2.3/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
43
43
 
44
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
44
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
45
45
  for the minimum Airflow version supported) via
46
46
  ``pip install apache-airflow-providers-teradata``
47
47
 
48
- The package supports the following python versions: 3.9,3.10,3.11,3.12
48
+ The package supports the following python versions: 3.10,3.11,3.12,3.13
49
49
 
50
50
  Requirements
51
51
  ------------
52
52
 
53
- ======================================= ==================
54
- PIP package Version required
55
- ======================================= ==================
56
- ``apache-airflow`` ``>=2.9.0``
57
- ``apache-airflow-providers-common-sql`` ``>=1.20.0``
58
- ``teradatasqlalchemy`` ``>=17.20.0.0``
59
- ``teradatasql`` ``>=17.20.0.28``
60
- ======================================= ==================
53
+ ========================================== ==================
54
+ PIP package Version required
55
+ ========================================== ==================
56
+ ``apache-airflow`` ``>=2.10.0``
57
+ ``apache-airflow-providers-common-compat`` ``>=1.8.0``
58
+ ``apache-airflow-providers-common-sql`` ``>=1.20.0``
59
+ ``teradatasqlalchemy`` ``>=17.20.0.0``
60
+ ``teradatasql`` ``>=17.20.0.28``
61
+ ========================================== ==================
61
62
 
62
63
  Cross provider package dependencies
63
64
  -----------------------------------
64
65
 
65
66
  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.
67
+ You need to install the specified providers in order to use them.
67
68
 
68
69
  You can install such cross-provider dependencies when installing from PyPI. For example:
69
70
 
@@ -76,9 +77,22 @@ You can install such cross-provider dependencies when installing from PyPI. For
76
77
  Dependent package Extra
77
78
  ====================================================================================================================== ===================
78
79
  `apache-airflow-providers-amazon <https://airflow.apache.org/docs/apache-airflow-providers-amazon>`_ ``amazon``
80
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
79
81
  `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
80
82
  `apache-airflow-providers-microsoft-azure <https://airflow.apache.org/docs/apache-airflow-providers-microsoft-azure>`_ ``microsoft.azure``
83
+ `apache-airflow-providers-ssh <https://airflow.apache.org/docs/apache-airflow-providers-ssh>`_ ``ssh``
81
84
  ====================================================================================================================== ===================
82
85
 
86
+ Optional dependencies
87
+ ----------------------
88
+
89
+ =================== ============================================
90
+ Extra Dependencies
91
+ =================== ============================================
92
+ ``microsoft.azure`` ``apache-airflow-providers-microsoft-azure``
93
+ ``amazon`` ``apache-airflow-providers-amazon``
94
+ ``ssh`` ``apache-airflow-providers-ssh``
95
+ =================== ============================================
96
+
83
97
  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>`_.
98
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.2.3/changelog.html>`_.
@@ -0,0 +1 @@
1
+ 05960ac2ebb1fd9a74f3135e5e8fe5e28160d4b2
@@ -0,0 +1,326 @@
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.2.3
29
+ .....
30
+
31
+ Misc
32
+ ~~~~
33
+
34
+ * ``Convert all airflow distributions to be compliant with ASF requirements (#58138)``
35
+
36
+ .. Below changes are excluded from the changelog. Move them to
37
+ appropriate section above if needed. Do not delete the lines(!):
38
+ * ``Delete all unnecessary LICENSE Files (#58191)``
39
+ * ``Enable ruff PLW1509 rule (#57659)``
40
+ * ``Fix documentation/provider.yaml consistencies (#57283)``
41
+
42
+ 3.2.2
43
+ .....
44
+
45
+ Misc
46
+ ~~~~
47
+
48
+ * ``Fix mypy type errors in Teradata provider for SQLAlchemy 2 upgrade (#56861)``
49
+ * ``Improve error messages in Teradata provider (#56367)``
50
+ * ``Build correct SQLAlchemy URI in TeradataHook (#56305)``
51
+ * ``Migrate tableau, telegram, trino, teradata providers to ''common.compat'' (#57013)``
52
+
53
+ .. Below changes are excluded from the changelog. Move them to
54
+ appropriate section above if needed. Do not delete the lines(!):
55
+ * ``Prepare release for Sep 2025 1st wave of providers (#55203)``
56
+ * ``Fix Airflow 2 reference in README/index of providers (#55240)``
57
+ * ``Make term Dag consistent in providers docs (#55101)``
58
+ * ``Switch pre-commit to prek (#54258)``
59
+ * ``Remove placeholder Release Date in changelog and index files (#56056)``
60
+ * ``Prepare release for Sep 2025 2nd wave of providers (#55688)``
61
+
62
+ 3.2.1
63
+ .....
64
+
65
+ Misc
66
+ ~~~~
67
+
68
+ * ``Add Python 3.13 support for Airflow. (#46891)``
69
+ * ``Remove type ignore across codebase after mypy upgrade (#53243)``
70
+ * ``Cleanup type ignores in teradata provider where possible (#53254)``
71
+ * ``Make teradata provider compatible with mypy 1.16.1 (#53128)``
72
+ * ``Remove upper-binding for "python-requires" (#52980)``
73
+ * ``Temporarily switch to use >=,< pattern instead of '~=' (#52967)``
74
+ * ``Move all BaseHook usages to version_compat in teradata provider (#52858)``
75
+
76
+ .. Below changes are excluded from the changelog. Move them to
77
+ appropriate section above if needed. Do not delete the lines(!):
78
+
79
+ 3.2.0
80
+ .....
81
+
82
+ Features
83
+ ~~~~~~~~
84
+
85
+ * ``Add BteqOperator for Executing Teradata BTEQ Scripts in Airflow (#51807)``
86
+
87
+ Misc
88
+ ~~~~
89
+
90
+ * ``Move 'BaseHook' implementation to task SDK (#51873)``
91
+ * ``Replace 'models.BaseOperator' to Task SDK one for Tableau, Telegram, and Teradata (#52642)``
92
+ * ``Disable UP038 ruff rule and revert mandatory 'X | Y' in insintance checks (#52644)``
93
+ * ``Drop support for Python 3.9 (#52072)``
94
+ * ``Enhanced the BTEQ operator to ensure platform independence. (#52252)``
95
+
96
+ .. Below changes are excluded from the changelog. Move them to
97
+ appropriate section above if needed. Do not delete the lines(!):
98
+
99
+ 3.1.0
100
+ .....
101
+
102
+ .. note::
103
+ This release of provider is only available for Airflow 2.10+ as explained in the
104
+ Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
105
+
106
+ Misc
107
+ ~~~~
108
+
109
+ * ``Bump min Airflow version in providers to 2.10 (#49843)``
110
+
111
+ .. Below changes are excluded from the changelog. Move them to
112
+ appropriate section above if needed. Do not delete the lines(!):
113
+ * ``Update description of provider.yaml dependencies (#50231)``
114
+ * ``Avoid committing history for providers (#49907)``
115
+
116
+ 3.0.3
117
+ .....
118
+
119
+ Misc
120
+ ~~~~
121
+
122
+ * ``remove superfluous else block (#49199)``
123
+
124
+ .. Below changes are excluded from the changelog. Move them to
125
+ appropriate section above if needed. Do not delete the lines(!):
126
+ * ``Prepare docs for Apr 2nd wave of providers (#49051)``
127
+ * ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
128
+ * ``Remove fab from preinstalled providers (#48457)``
129
+ * ``Improve documentation building iteration (#48760)``
130
+ * ``Prepare docs for Apr 1st wave of providers (#48828)``
131
+ * ``Simplify tooling by switching completely to uv (#48223)``
132
+ * ``Upgrade ruff to latest version (#48553)``
133
+ * ``Prepare docs for Mar 2nd wave of providers (#48383)``
134
+ * ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
135
+ * ``Move airflow sources to airflow-core package (#47798)``
136
+ * ``Remove links to x/twitter.com (#47801)``
137
+
138
+ 3.0.2
139
+ .....
140
+
141
+ Bug Fixes
142
+ ~~~~~~~~~
143
+
144
+ * ``fIx deprecation warnings in common.sql (#47169)``
145
+
146
+ Misc
147
+ ~~~~
148
+
149
+ * ``Upgrade flit to 3.11.0 (#46938)``
150
+
151
+ .. Below changes are excluded from the changelog. Move them to
152
+ appropriate section above if needed. Do not delete the lines(!):
153
+ * ``Move tests_common package to devel-common project (#47281)``
154
+ * ``Improve documentation for updating provider dependencies (#47203)``
155
+ * ``Add legacy namespace packages to airflow.providers (#47064)``
156
+ * ``Remove extra whitespace in provider readme template (#46975)``
157
+
158
+ 3.0.1
159
+ .....
160
+
161
+ Misc
162
+ ~~~~
163
+
164
+ * ``AIP-72: Support better type-hinting for Context dict in SDK (#45583)``
165
+
166
+ .. Below changes are excluded from the changelog. Move them to
167
+ appropriate section above if needed. Do not delete the lines(!):
168
+ * ``Move provider_tests to unit folder in provider tests (#46800)``
169
+ * ``Removed the unused provider's distribution (#46608)``
170
+ * ``Move TERADATA provider to new structure (#46060)``
171
+
172
+ 3.0.0
173
+ .....
174
+
175
+ .. note::
176
+ This release of provider is only available for Airflow 2.9+ as explained in the
177
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
178
+
179
+ Breaking changes
180
+ ~~~~~~~~~~~~~~~~
181
+
182
+ .. warning::
183
+ All deprecated classes, parameters and features have been removed from the teradata provider package.
184
+ The following breaking changes were introduced:
185
+
186
+ * Removed deprecated ``bulk_insert_rows`` method from ``hooks``. Use ``insert_rows`` instead.
187
+
188
+ * ``Remove deprecations from Teradata Provider (#44746)``
189
+
190
+ Misc
191
+ ~~~~
192
+
193
+ * ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
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
+ * ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
199
+
200
+ 2.6.1
201
+ .....
202
+
203
+ Misc
204
+ ~~~~
205
+
206
+ * ``Add support for semicolon stripping to DbApiHook, PrestoHook, and TrinoHook (#41916)``
207
+
208
+
209
+ .. Below changes are excluded from the changelog. Move them to
210
+ appropriate section above if needed. Do not delete the lines(!):
211
+ * ``Start porting DAG definition code to the Task SDK (#43076)``
212
+ * ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
213
+
214
+ 2.6.0
215
+ .....
216
+
217
+ .. note::
218
+ This release of provider is only available for Airflow 2.8+ as explained in the
219
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
220
+
221
+ Misc
222
+ ~~~~
223
+
224
+ * ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
225
+
226
+
227
+ .. Below changes are excluded from the changelog. Move them to
228
+ appropriate section above if needed. Do not delete the lines(!):
229
+
230
+ 2.5.0
231
+ .....
232
+
233
+ Features
234
+ ~~~~~~~~
235
+
236
+ * ``Implemented Query Band Support for the Teradata provider (#40716)``
237
+
238
+ Misc
239
+ ~~~~
240
+
241
+ * ``Clean up remaining getattr connection DbApiHook (#40665)``
242
+
243
+
244
+ .. Below changes are excluded from the changelog. Move them to
245
+ appropriate section above if needed. Do not delete the lines(!):
246
+
247
+ 2.4.0
248
+ .....
249
+
250
+ Features
251
+ ~~~~~~~~
252
+
253
+ * ``Added support of Teradata Compute Cluster Provision, Decommission, Suspend and Resume operations (#40509)``
254
+
255
+ .. Below changes are excluded from the changelog. Move them to
256
+ appropriate section above if needed. Do not delete the lines(!):
257
+ * ``Enable enforcing pydocstyle rule D213 in ruff. (#40448)``
258
+
259
+ 2.3.0
260
+ .....
261
+
262
+ Features
263
+ ~~~~~~~~
264
+
265
+ * ``Updates to Teradata Provider (#40378)``
266
+
267
+ 2.2.0
268
+ .....
269
+
270
+ Features
271
+ ~~~~~~~~
272
+
273
+ .. note::
274
+ This release contains several new features including:
275
+ • Introduction of Stored Procedure Support in Teradata Hook
276
+ • Inclusion of the TeradataStoredProcedureOperator for executing stored procedures
277
+ • Integration of Azure Blob Storage to Teradata Transfer Operator
278
+ • Integration of Amazon S3 to Teradata Transfer Operator
279
+ • Provision of necessary documentation, along with unit and system tests, for the Teradata Provider modifications.
280
+
281
+ * ``Updates to Teradata Provider (#39217)``
282
+
283
+ 2.1.1
284
+ .....
285
+
286
+ Misc
287
+ ~~~~
288
+
289
+ * ``Faster 'airflow_version' imports (#39552)``
290
+ * ``Simplify 'airflow_version' imports (#39497)``
291
+
292
+ .. Below changes are excluded from the changelog. Move them to
293
+ appropriate section above if needed. Do not delete the lines(!):
294
+ * ``Reapply templates for all providers (#39554)``
295
+
296
+ 2.1.0
297
+ .....
298
+
299
+ .. note::
300
+ This release of provider is only available for Airflow 2.7+ as explained in the
301
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
302
+
303
+ Misc
304
+ ~~~~
305
+
306
+ * ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
307
+ * ``Always use the executemany method when inserting rows in DbApiHook as it's way much faster (#38715)``
308
+
309
+
310
+ .. Below changes are excluded from the changelog. Move them to
311
+ appropriate section above if needed. Do not delete the lines(!):
312
+ * ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
313
+ * ``Bump ruff to 0.3.3 (#38240)``
314
+
315
+ 2.0.0
316
+ .....
317
+
318
+ ``Initial version of the provider. (#36953)``
319
+
320
+ Breaking changes
321
+ ~~~~~~~~~~~~~~~~
322
+
323
+ Previous versions of this package were owned by ``Felipe Lolas`` under
324
+ https://github.com/flolas/apache-airflow-providers-teradata
325
+ These versions were not maintained by Apache-Airflow
326
+ If you are migrating from older version, it's recommended to read the docs and refactor your code
@@ -0,0 +1,35 @@
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
+ .. airflow-providers-commits::
@@ -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