apache-airflow-providers-teradata 3.0.3rc1__tar.gz → 3.1.0rc1__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 (65) hide show
  1. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/PKG-INFO +9 -9
  2. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/README.rst +4 -4
  3. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/changelog.rst +17 -0
  4. apache_airflow_providers_teradata-3.1.0rc1/docs/commits.rst +35 -0
  5. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/index.rst +5 -5
  6. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/provider.yaml +6 -2
  7. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/pyproject.toml +5 -5
  8. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/__init__.py +3 -3
  9. apache_airflow_providers_teradata-3.0.3rc1/docs/commits.rst +0 -222
  10. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/.latest-doc-only-change.txt +0 -0
  11. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/conf.py +0 -0
  12. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/connections/teradata.rst +0 -0
  13. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/installing-providers-from-sources.rst +0 -0
  14. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/integration-logos/Teradata.png +0 -0
  15. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/operators/azure_blob_to_teradata.rst +0 -0
  16. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/operators/compute_cluster.rst +0 -0
  17. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/operators/index.rst +0 -0
  18. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/operators/s3_to_teradata.rst +0 -0
  19. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/operators/teradata.rst +0 -0
  20. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/operators/teradata_to_teradata.rst +0 -0
  21. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/docs/security.rst +0 -0
  22. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/__init__.py +0 -0
  23. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/__init__.py +0 -0
  24. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/LICENSE +0 -0
  25. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/get_provider_info.py +0 -0
  26. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/hooks/__init__.py +0 -0
  27. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/hooks/teradata.py +0 -0
  28. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/operators/__init__.py +0 -0
  29. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/operators/teradata.py +0 -0
  30. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/operators/teradata_compute_cluster.py +0 -0
  31. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/transfers/__init__.py +0 -0
  32. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/transfers/azure_blob_to_teradata.py +0 -0
  33. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/transfers/s3_to_teradata.py +0 -0
  34. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/transfers/teradata_to_teradata.py +0 -0
  35. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/triggers/__init__.py +0 -0
  36. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/triggers/teradata_compute_cluster.py +0 -0
  37. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/utils/__init__.py +0 -0
  38. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/src/airflow/providers/teradata/utils/constants.py +0 -0
  39. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/conftest.py +0 -0
  40. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/__init__.py +0 -0
  41. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/__init__.py +0 -0
  42. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/create_ssl_table.sql +0 -0
  43. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/create_table.sql +0 -0
  44. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/example_azure_blob_to_teradata_transfer.py +0 -0
  45. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/example_s3_to_teradata_transfer.py +0 -0
  46. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/example_ssl_teradata.py +0 -0
  47. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/example_teradata.py +0 -0
  48. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/example_teradata_call_sp.py +0 -0
  49. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/example_teradata_compute_cluster.py +0 -0
  50. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/system/teradata/example_teradata_to_teradata_transfer.py +0 -0
  51. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/__init__.py +0 -0
  52. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/__init__.py +0 -0
  53. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/hooks/__init__.py +0 -0
  54. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/hooks/test_teradata.py +0 -0
  55. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/operators/__init__.py +0 -0
  56. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/operators/test_teradata.py +0 -0
  57. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/operators/test_teradata_compute_cluster.py +0 -0
  58. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/transfers/__init__.py +0 -0
  59. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/transfers/test_azure_blob_to_teradata.py +0 -0
  60. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/transfers/test_s3_to_teradata.py +0 -0
  61. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/transfers/test_teradata_to_teradata.py +0 -0
  62. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/triggers/__init__.py +0 -0
  63. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/triggers/test_teradata_compute_cluster.py +0 -0
  64. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/utils/__init__.py +0 -0
  65. {apache_airflow_providers_teradata-3.0.3rc1 → apache_airflow_providers_teradata-3.1.0rc1}/tests/unit/teradata/utils/test_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.3rc1
3
+ Version: 3.1.0rc1
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>
@@ -20,15 +20,15 @@ Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Programming Language :: Python :: 3.11
21
21
  Classifier: Programming Language :: Python :: 3.12
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
+ Requires-Dist: apache-airflow>=2.10.0rc1
24
+ Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc1
25
25
  Requires-Dist: teradatasqlalchemy>=17.20.0.0
26
26
  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.3/changelog.html
31
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3
30
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-teradata/3.1.0/changelog.html
31
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-teradata/3.1.0
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
@@ -61,7 +61,7 @@ Provides-Extra: microsoft-azure
61
61
 
62
62
  Package ``apache-airflow-providers-teradata``
63
63
 
64
- Release: ``3.0.3``
64
+ Release: ``3.1.0``
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.3/>`_.
77
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.1.0/>`_.
78
78
 
79
79
  Installation
80
80
  ------------
@@ -91,7 +91,7 @@ Requirements
91
91
  ======================================= ==================
92
92
  PIP package Version required
93
93
  ======================================= ==================
94
- ``apache-airflow`` ``>=2.9.0``
94
+ ``apache-airflow`` ``>=2.10.0``
95
95
  ``apache-airflow-providers-common-sql`` ``>=1.20.0``
96
96
  ``teradatasqlalchemy`` ``>=17.20.0.0``
97
97
  ``teradatasql`` ``>=17.20.0.28``
@@ -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.3/changelog.html>`_.
122
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.1.0/changelog.html>`_.
123
123
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-teradata``
25
25
 
26
- Release: ``3.0.3``
26
+ Release: ``3.1.0``
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.3/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.1.0/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
@@ -53,7 +53,7 @@ Requirements
53
53
  ======================================= ==================
54
54
  PIP package Version required
55
55
  ======================================= ==================
56
- ``apache-airflow`` ``>=2.9.0``
56
+ ``apache-airflow`` ``>=2.10.0``
57
57
  ``apache-airflow-providers-common-sql`` ``>=1.20.0``
58
58
  ``teradatasqlalchemy`` ``>=17.20.0.0``
59
59
  ``teradatasql`` ``>=17.20.0.28``
@@ -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.3/changelog.html>`_.
84
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.1.0/changelog.html>`_.
@@ -25,6 +25,23 @@
25
25
  Changelog
26
26
  ---------
27
27
 
28
+ 3.1.0
29
+ .....
30
+
31
+ .. note::
32
+ This release of provider is only available for Airflow 2.10+ as explained in the
33
+ Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
34
+
35
+ Misc
36
+ ~~~~
37
+
38
+ * ``Bump min Airflow version in providers to 2.10 (#49843)``
39
+
40
+ .. Below changes are excluded from the changelog. Move them to
41
+ appropriate section above if needed. Do not delete the lines(!):
42
+ * ``Update description of provider.yaml dependencies (#50231)``
43
+ * ``Avoid committing history for providers (#49907)``
44
+
28
45
  3.0.3
29
46
  .....
30
47
 
@@ -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::
@@ -77,7 +77,7 @@ apache-airflow-providers-teradata package
77
77
  `Teradata <https://www.teradata.com/>`__
78
78
 
79
79
 
80
- Release: 3.0.3
80
+ Release: 3.1.0
81
81
 
82
82
  Provider package
83
83
  ----------------
@@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below.
95
95
  Requirements
96
96
  ------------
97
97
 
98
- The minimum Apache Airflow version supported by this provider distribution is ``2.9.0``.
98
+ The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``.
99
99
 
100
100
  ======================================= ==================
101
101
  PIP package Version required
102
102
  ======================================= ==================
103
- ``apache-airflow`` ``>=2.9.0``
103
+ ``apache-airflow`` ``>=2.10.0``
104
104
  ``apache-airflow-providers-common-sql`` ``>=1.20.0``
105
105
  ``teradatasqlalchemy`` ``>=17.20.0.0``
106
106
  ``teradatasql`` ``>=17.20.0.28``
@@ -133,5 +133,5 @@ Downloading official packages
133
133
  You can download officially released packages and verify their checksums and signatures from the
134
134
  `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
135
135
 
136
- * `The apache-airflow-providers-teradata 3.0.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.0.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.0.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.0.3.tar.gz.sha512>`__)
137
- * `The apache-airflow-providers-teradata 3.0.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.0.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.0.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.0.3-py3-none-any.whl.sha512>`__)
136
+ * `The apache-airflow-providers-teradata 3.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.1.0.tar.gz.sha512>`__)
137
+ * `The apache-airflow-providers-teradata 3.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_teradata-3.1.0-py3-none-any.whl.sha512>`__)
@@ -22,9 +22,13 @@ description: |
22
22
  `Teradata <https://www.teradata.com/>`__
23
23
 
24
24
  state: ready
25
- source-date-epoch: 1744792391
26
- # note that those versions are maintained by release manager - do not update them manually
25
+ source-date-epoch: 1747133947
26
+ # Note that those versions are maintained by release manager - do not update them manually
27
+ # with the exception of case where other provider in sources has >= new provider version.
28
+ # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
29
+ # to be done in the same PR
27
30
  versions:
31
+ - 3.1.0
28
32
  - 3.0.3
29
33
  - 3.0.2
30
34
  - 3.0.1
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
25
25
 
26
26
  [project]
27
27
  name = "apache-airflow-providers-teradata"
28
- version = "3.0.3.rc1"
28
+ version = "3.1.0rc1"
29
29
  description = "Provider package apache-airflow-providers-teradata for Apache Airflow"
30
30
  readme = "README.rst"
31
31
  authors = [
@@ -57,8 +57,8 @@ requires-python = "~=3.9"
57
57
  # Make sure to run ``breeze static-checks --type update-providers-dependencies --all-files``
58
58
  # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
59
59
  dependencies = [
60
- "apache-airflow>=2.9.0rc0",
61
- "apache-airflow-providers-common-sql>=1.20.0rc0",
60
+ "apache-airflow>=2.10.0rc1",
61
+ "apache-airflow-providers-common-sql>=1.20.0rc1",
62
62
  "teradatasqlalchemy>=17.20.0.0",
63
63
  "teradatasql>=17.20.0.28",
64
64
  ]
@@ -110,8 +110,8 @@ apache-airflow-providers-common-sql = {workspace = true}
110
110
  apache-airflow-providers-standard = {workspace = true}
111
111
 
112
112
  [project.urls]
113
- "Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3"
114
- "Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.3/changelog.html"
113
+ "Documentation" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-teradata/3.1.0"
114
+ "Changelog" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-teradata/3.1.0/changelog.html"
115
115
  "Bug Tracker" = "https://github.com/apache/airflow/issues"
116
116
  "Source Code" = "https://github.com/apache/airflow"
117
117
  "Slack Chat" = "https://s.apache.org/airflow-slack"
@@ -29,11 +29,11 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "3.0.3"
32
+ __version__ = "3.1.0"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
- "2.9.0"
35
+ "2.10.0"
36
36
  ):
37
37
  raise RuntimeError(
38
- f"The package `apache-airflow-providers-teradata:{__version__}` needs Apache Airflow 2.9.0+"
38
+ f"The package `apache-airflow-providers-teradata:{__version__}` needs Apache Airflow 2.10.0+"
39
39
  )
@@ -1,222 +0,0 @@
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
- ================================================================================================== =========== ====================================================================