apache-airflow-providers-vertica 4.0.1__tar.gz → 4.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.
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/PKG-INFO +12 -12
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/README.rst +6 -6
- apache_airflow_providers_vertica-4.1.0rc1/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/changelog.rst +479 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/commits.rst +35 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/conf.py +27 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/connections/vertica.rst +83 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/index.rst +135 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/integration-logos/Vertica.png +0 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/operators.rst +76 -0
- apache_airflow_providers_vertica-4.1.0rc1/docs/security.rst +18 -0
- apache_airflow_providers_vertica-4.1.0rc1/provider.yaml +75 -0
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/pyproject.toml +24 -8
- apache_airflow_providers_vertica-4.1.0rc1/src/airflow/__init__.py +17 -0
- apache_airflow_providers_vertica-4.1.0rc1/src/airflow/providers/__init__.py +17 -0
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/src/airflow/providers/vertica/__init__.py +3 -3
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/src/airflow/providers/vertica/get_provider_info.py +0 -39
- apache_airflow_providers_vertica-4.1.0rc1/tests/conftest.py +19 -0
- apache_airflow_providers_vertica-4.1.0rc1/tests/system/__init__.py +17 -0
- apache_airflow_providers_vertica-4.1.0rc1/tests/system/vertica/__init__.py +16 -0
- apache_airflow_providers_vertica-4.1.0rc1/tests/system/vertica/example_vertica.py +91 -0
- apache_airflow_providers_vertica-4.1.0rc1/tests/unit/__init__.py +17 -0
- apache_airflow_providers_vertica-4.1.0rc1/tests/unit/vertica/__init__.py +17 -0
- apache_airflow_providers_vertica-4.1.0rc1/tests/unit/vertica/hooks/__init__.py +17 -0
- apache_airflow_providers_vertica-4.1.0rc1/tests/unit/vertica/hooks/test_vertica.py +199 -0
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/src/airflow/providers/vertica/LICENSE +0 -0
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/src/airflow/providers/vertica/hooks/__init__.py +0 -0
- {apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/src/airflow/providers/vertica/hooks/vertica.py +0 -0
{apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: apache-airflow-providers-vertica
|
3
|
-
Version: 4.
|
3
|
+
Version: 4.1.0rc1
|
4
4
|
Summary: Provider package apache-airflow-providers-vertica for Apache Airflow
|
5
5
|
Keywords: airflow-provider,vertica,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.
|
24
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.
|
23
|
+
Requires-Dist: apache-airflow>=2.10.0rc1
|
24
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.26.0rc1
|
25
25
|
Requires-Dist: vertica-python>=0.6.0
|
26
26
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
27
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.0
|
28
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.0
|
27
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-vertica/4.1.0/changelog.html
|
28
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-vertica/4.1.0
|
29
|
+
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
29
30
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
30
31
|
Project-URL: Source Code, https://github.com/apache/airflow
|
31
|
-
Project-URL: Twitter, https://x.com/ApacheAirflow
|
32
32
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
33
33
|
|
34
34
|
|
@@ -56,7 +56,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
56
56
|
|
57
57
|
Package ``apache-airflow-providers-vertica``
|
58
58
|
|
59
|
-
Release: ``4.0
|
59
|
+
Release: ``4.1.0``
|
60
60
|
|
61
61
|
|
62
62
|
`Vertica <https://www.vertica.com/>`__
|
@@ -69,7 +69,7 @@ This is a provider package for ``vertica`` provider. All classes for this provid
|
|
69
69
|
are in ``airflow.providers.vertica`` python package.
|
70
70
|
|
71
71
|
You can find package information and changelog for the provider
|
72
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.0
|
72
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.1.0/>`_.
|
73
73
|
|
74
74
|
Installation
|
75
75
|
------------
|
@@ -86,8 +86,8 @@ Requirements
|
|
86
86
|
======================================= ==================
|
87
87
|
PIP package Version required
|
88
88
|
======================================= ==================
|
89
|
-
``apache-airflow`` ``>=2.
|
90
|
-
``apache-airflow-providers-common-sql`` ``>=1.
|
89
|
+
``apache-airflow`` ``>=2.10.0``
|
90
|
+
``apache-airflow-providers-common-sql`` ``>=1.26.0``
|
91
91
|
``vertica-python`` ``>=0.6.0``
|
92
92
|
======================================= ==================
|
93
93
|
|
@@ -95,7 +95,7 @@ Cross provider package dependencies
|
|
95
95
|
-----------------------------------
|
96
96
|
|
97
97
|
Those are dependencies that might be needed in order to use all the features of the package.
|
98
|
-
You need to install the specified
|
98
|
+
You need to install the specified providers in order to use them.
|
99
99
|
|
100
100
|
You can install such cross-provider dependencies when installing from PyPI. For example:
|
101
101
|
|
@@ -111,5 +111,5 @@ Dependent package
|
|
111
111
|
============================================================================================================ ==============
|
112
112
|
|
113
113
|
The changelog for the provider package can be found in the
|
114
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.0
|
114
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.1.0/changelog.html>`_.
|
115
115
|
|
{apache_airflow_providers_vertica-4.0.1 → apache_airflow_providers_vertica-4.1.0rc1}/README.rst
RENAMED
@@ -23,7 +23,7 @@
|
|
23
23
|
|
24
24
|
Package ``apache-airflow-providers-vertica``
|
25
25
|
|
26
|
-
Release: ``4.0
|
26
|
+
Release: ``4.1.0``
|
27
27
|
|
28
28
|
|
29
29
|
`Vertica <https://www.vertica.com/>`__
|
@@ -36,7 +36,7 @@ This is a provider package for ``vertica`` provider. All classes for this provid
|
|
36
36
|
are in ``airflow.providers.vertica`` 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-vertica/4.0
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.1.0/>`_.
|
40
40
|
|
41
41
|
Installation
|
42
42
|
------------
|
@@ -53,8 +53,8 @@ Requirements
|
|
53
53
|
======================================= ==================
|
54
54
|
PIP package Version required
|
55
55
|
======================================= ==================
|
56
|
-
``apache-airflow`` ``>=2.
|
57
|
-
``apache-airflow-providers-common-sql`` ``>=1.
|
56
|
+
``apache-airflow`` ``>=2.10.0``
|
57
|
+
``apache-airflow-providers-common-sql`` ``>=1.26.0``
|
58
58
|
``vertica-python`` ``>=0.6.0``
|
59
59
|
======================================= ==================
|
60
60
|
|
@@ -62,7 +62,7 @@ Cross provider package dependencies
|
|
62
62
|
-----------------------------------
|
63
63
|
|
64
64
|
Those are dependencies that might be needed in order to use all the features of the package.
|
65
|
-
You need to install the specified
|
65
|
+
You need to install the specified providers in order to use them.
|
66
66
|
|
67
67
|
You can install such cross-provider dependencies when installing from PyPI. For example:
|
68
68
|
|
@@ -78,4 +78,4 @@ Dependent package
|
|
78
78
|
============================================================================================================ ==============
|
79
79
|
|
80
80
|
The changelog for the provider package can be found in the
|
81
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.0
|
81
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-vertica/4.1.0/changelog.html>`_.
|
@@ -0,0 +1 @@
|
|
1
|
+
7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f
|
@@ -0,0 +1,479 @@
|
|
1
|
+
.. Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
or more contributor license agreements. See the NOTICE file
|
3
|
+
distributed with this work for additional information
|
4
|
+
regarding copyright ownership. The ASF licenses this file
|
5
|
+
to you under the Apache License, Version 2.0 (the
|
6
|
+
"License"); you may not use this file except in compliance
|
7
|
+
with the License. You may obtain a copy of the License at
|
8
|
+
|
9
|
+
.. http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
|
11
|
+
.. Unless required by applicable law or agreed to in writing,
|
12
|
+
software distributed under the License is distributed on an
|
13
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
KIND, either express or implied. See the License for the
|
15
|
+
specific language governing permissions and limitations
|
16
|
+
under the License.
|
17
|
+
|
18
|
+
|
19
|
+
.. NOTE TO CONTRIBUTORS:
|
20
|
+
Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
|
21
|
+
and you want to add an explanation to the users on how they are supposed to deal with them.
|
22
|
+
The changelog is updated and maintained semi-automatically by release manager.
|
23
|
+
|
24
|
+
``apache-airflow-providers-vertica``
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
Changelog
|
29
|
+
---------
|
30
|
+
|
31
|
+
4.1.0
|
32
|
+
.....
|
33
|
+
|
34
|
+
.. note::
|
35
|
+
This release of provider is only available for Airflow 2.10+ as explained in the
|
36
|
+
Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>_.
|
37
|
+
|
38
|
+
Misc
|
39
|
+
~~~~
|
40
|
+
|
41
|
+
* ``Bump min Airflow version in providers to 2.10 (#49843)``
|
42
|
+
|
43
|
+
.. Below changes are excluded from the changelog. Move them to
|
44
|
+
appropriate section above if needed. Do not delete the lines(!):
|
45
|
+
* ``Update description of provider.yaml dependencies (#50231)``
|
46
|
+
* ``Avoid committing history for providers (#49907)``
|
47
|
+
* ``test: migrate 'get_pandas_df' to 'get_df' in 'provider' test (#49339)``
|
48
|
+
* ``Prepare docs for Apr 2nd wave of providers (#49051)``
|
49
|
+
* ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
50
|
+
* ``Remove fab from preinstalled providers (#48457)``
|
51
|
+
* ``Improve documentation building iteration (#48760)``
|
52
|
+
* ``Prepare docs for Apr 1st wave of providers (#48828)``
|
53
|
+
* ``Simplify tooling by switching completely to uv (#48223)``
|
54
|
+
* ``Prepare docs for Mar 2nd wave of providers (#48383)``
|
55
|
+
* ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
56
|
+
* ``Move airflow sources to airflow-core package (#47798)``
|
57
|
+
* ``Remove links to x/twitter.com (#47801)``
|
58
|
+
|
59
|
+
4.0.1
|
60
|
+
.....
|
61
|
+
|
62
|
+
Bug Fixes
|
63
|
+
~~~~~~~~~
|
64
|
+
|
65
|
+
* ``fIx deprecation warnings in common.sql (#47169)``
|
66
|
+
|
67
|
+
Misc
|
68
|
+
~~~~
|
69
|
+
|
70
|
+
* ``Upgrade flit to 3.11.0 (#46938)``
|
71
|
+
|
72
|
+
.. Below changes are excluded from the changelog. Move them to
|
73
|
+
appropriate section above if needed. Do not delete the lines(!):
|
74
|
+
* ``Move tests_common package to devel-common project (#47281)``
|
75
|
+
* ``Improve documentation for updating provider dependencies (#47203)``
|
76
|
+
* ``Add legacy namespace packages to airflow.providers (#47064)``
|
77
|
+
* ``Remove extra whitespace in provider readme template (#46975)``
|
78
|
+
* ``Prepare docs for Feb 1st wave of providers (#46893)``
|
79
|
+
* ``Move provider_tests to unit folder in provider tests (#46800)``
|
80
|
+
* ``Removed the unused provider's distribution (#46608)``
|
81
|
+
* ``Fix doc issues found with recent moves (#46372)``
|
82
|
+
* ``Revert "Improve example docs around SQLExecuteQueryOperator in Postgres/Oracle/Presto/Vertica/ODBC (#46352)" (#46368)``
|
83
|
+
* ``Improve example docs around SQLExecuteQueryOperator in Postgres/Oracle/Presto/Vertica/ODBC (#46352)``
|
84
|
+
* ``Move Vertica provider to new structure (#46116)``
|
85
|
+
|
86
|
+
4.0.0
|
87
|
+
.....
|
88
|
+
|
89
|
+
.. note::
|
90
|
+
This release of provider is only available for Airflow 2.9+ as explained in the
|
91
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
92
|
+
|
93
|
+
Breaking changes
|
94
|
+
~~~~~~~~~~~~~~~~
|
95
|
+
|
96
|
+
.. warning::
|
97
|
+
All deprecated classes, parameters and features have been removed from the Vertica provider package.
|
98
|
+
The following breaking changes were introduced:
|
99
|
+
|
100
|
+
* Operators
|
101
|
+
* Remove ``airflow.providers.vertica.operators.vertica.VerticaOperator``. Please use ``airflow.providers.common.sql.operators.sql.SQLExecuteQueryOperator``.
|
102
|
+
|
103
|
+
* ``Remove Provider Deprecations in Vertica (#44748)``
|
104
|
+
|
105
|
+
Misc
|
106
|
+
~~~~
|
107
|
+
|
108
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
|
109
|
+
|
110
|
+
|
111
|
+
.. Below changes are excluded from the changelog. Move them to
|
112
|
+
appropriate section above if needed. Do not delete the lines(!):
|
113
|
+
* ``Use Python 3.9 as target version for Ruff & Black rules (#44298)``
|
114
|
+
|
115
|
+
3.9.1
|
116
|
+
.....
|
117
|
+
|
118
|
+
Misc
|
119
|
+
~~~~
|
120
|
+
|
121
|
+
* ``Add support for semicolon stripping to DbApiHook, PrestoHook, and TrinoHook (#41916)``
|
122
|
+
|
123
|
+
|
124
|
+
.. Below changes are excluded from the changelog. Move them to
|
125
|
+
appropriate section above if needed. Do not delete the lines(!):
|
126
|
+
* ``Start porting DAG definition code to the Task SDK (#43076)``
|
127
|
+
* ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
|
128
|
+
|
129
|
+
3.9.0
|
130
|
+
.....
|
131
|
+
|
132
|
+
.. note::
|
133
|
+
This release of provider is only available for Airflow 2.8+ as explained in the
|
134
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
135
|
+
|
136
|
+
Misc
|
137
|
+
~~~~
|
138
|
+
|
139
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
|
140
|
+
|
141
|
+
|
142
|
+
.. Below changes are excluded from the changelog. Move them to
|
143
|
+
appropriate section above if needed. Do not delete the lines(!):
|
144
|
+
|
145
|
+
3.8.2
|
146
|
+
.....
|
147
|
+
|
148
|
+
Misc
|
149
|
+
~~~~
|
150
|
+
|
151
|
+
* ``implement per-provider tests with lowest-direct dependency resolution (#39946)``
|
152
|
+
|
153
|
+
3.8.1
|
154
|
+
.....
|
155
|
+
|
156
|
+
Misc
|
157
|
+
~~~~
|
158
|
+
|
159
|
+
* ``Faster 'airflow_version' imports (#39552)``
|
160
|
+
* ``Simplify 'airflow_version' imports (#39497)``
|
161
|
+
|
162
|
+
.. Below changes are excluded from the changelog. Move them to
|
163
|
+
appropriate section above if needed. Do not delete the lines(!):
|
164
|
+
* ``Reapply templates for all providers (#39554)``
|
165
|
+
|
166
|
+
3.8.0
|
167
|
+
.....
|
168
|
+
|
169
|
+
.. note::
|
170
|
+
This release of provider is only available for Airflow 2.7+ as explained in the
|
171
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
172
|
+
|
173
|
+
Misc
|
174
|
+
~~~~
|
175
|
+
|
176
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
|
177
|
+
|
178
|
+
.. Below changes are excluded from the changelog. Move them to
|
179
|
+
appropriate section above if needed. Do not delete the lines(!):
|
180
|
+
* ``Add comment about versions updated by release manager (#37488)``
|
181
|
+
* ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
|
182
|
+
* ``Bump ruff to 0.3.3 (#38240)``
|
183
|
+
* ``Prepare docs 1st wave (RC1) March 2024 (#37876)``
|
184
|
+
|
185
|
+
3.7.1
|
186
|
+
.....
|
187
|
+
|
188
|
+
Misc
|
189
|
+
~~~~
|
190
|
+
|
191
|
+
* ``feat: Switch all class, functions, methods deprecations to decorators (#36876)``
|
192
|
+
|
193
|
+
.. Below changes are excluded from the changelog. Move them to
|
194
|
+
appropriate section above if needed. Do not delete the lines(!):
|
195
|
+
* ``Add docs for RC2 wave of providers for 2nd round of Jan 2024 (#37019)``
|
196
|
+
* ``Prepare docs 2nd wave of Providers January 2024 (#36945)``
|
197
|
+
* ``Run mypy checks for full packages in CI (#36638)``
|
198
|
+
* ``Prepare docs 1st wave of Providers January 2024 (#36640)``
|
199
|
+
* ``Speed up autocompletion of Breeze by simplifying provider state (#36499)``
|
200
|
+
* ``Add documentation for 3rd wave of providers in Deember (#36464)``
|
201
|
+
* ``Re-apply updated version numbers to 2nd wave of providers in December (#36380)``
|
202
|
+
|
203
|
+
3.7.0
|
204
|
+
.....
|
205
|
+
|
206
|
+
.. note::
|
207
|
+
This release of provider is only available for Airflow 2.6+ as explained in the
|
208
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
209
|
+
|
210
|
+
Misc
|
211
|
+
~~~~
|
212
|
+
|
213
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
|
214
|
+
|
215
|
+
.. Below changes are excluded from the changelog. Move them to
|
216
|
+
appropriate section above if needed. Do not delete the lines(!):
|
217
|
+
* ``Fix and reapply templates for provider documentation (#35686)``
|
218
|
+
* ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
|
219
|
+
* ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
|
220
|
+
* ``Use reproducible builds for providers (#35693)``
|
221
|
+
* ``Prepare docs 1st wave of Providers November 2023 (#35537)``
|
222
|
+
* ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
|
223
|
+
* ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
|
224
|
+
|
225
|
+
3.6.0
|
226
|
+
.....
|
227
|
+
|
228
|
+
.. note::
|
229
|
+
This release of provider is only available for Airflow 2.5+ as explained in the
|
230
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
231
|
+
|
232
|
+
Misc
|
233
|
+
~~~~
|
234
|
+
|
235
|
+
* ``Bump min airflow version of providers (#34728)``
|
236
|
+
|
237
|
+
3.5.2
|
238
|
+
.....
|
239
|
+
|
240
|
+
Misc
|
241
|
+
~~~~
|
242
|
+
|
243
|
+
* ``Custom fetch all handler for vertica to not miss errors (#34041)``
|
244
|
+
|
245
|
+
3.5.1
|
246
|
+
.....
|
247
|
+
|
248
|
+
Misc
|
249
|
+
~~~~
|
250
|
+
|
251
|
+
* ``Add deprecation info to the providers modules and classes docstring (#32536)``
|
252
|
+
|
253
|
+
3.5.0
|
254
|
+
.....
|
255
|
+
|
256
|
+
Features
|
257
|
+
~~~~~~~~
|
258
|
+
|
259
|
+
* ``Add various Vertica connection parameters (#32089)``
|
260
|
+
|
261
|
+
.. Below changes are excluded from the changelog. Move them to
|
262
|
+
appropriate section above if needed. Do not delete the lines(!):
|
263
|
+
* ``Improve provider documentation and README structure (#32125)``
|
264
|
+
* ``Remove spurious headers for provider changelogs (#32373)``
|
265
|
+
* ``Prepare docs for July 2023 wave of Providers (#32298)``
|
266
|
+
|
267
|
+
3.4.1
|
268
|
+
.....
|
269
|
+
|
270
|
+
.. note::
|
271
|
+
This release dropped support for Python 3.7
|
272
|
+
|
273
|
+
Misc
|
274
|
+
~~~~
|
275
|
+
|
276
|
+
* ``Add note about dropping Python 3.7 for providers (#32015)``
|
277
|
+
|
278
|
+
.. Below changes are excluded from the changelog. Move them to
|
279
|
+
appropriate section above if needed. Do not delete the lines(!):
|
280
|
+
* ``Add D400 pydocstyle check - Providers (#31427)``
|
281
|
+
|
282
|
+
3.4.0
|
283
|
+
.....
|
284
|
+
|
285
|
+
.. note::
|
286
|
+
This release of provider is only available for Airflow 2.4+ as explained in the
|
287
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
288
|
+
|
289
|
+
Misc
|
290
|
+
~~~~
|
291
|
+
|
292
|
+
* ``Bump minimum Airflow version in providers (#30917)``
|
293
|
+
|
294
|
+
.. Below changes are excluded from the changelog. Move them to
|
295
|
+
appropriate section above if needed. Do not delete the lines(!):
|
296
|
+
* ``Add full automation for min Airflow version for providers (#30994)``
|
297
|
+
* ``Add mechanism to suspend providers (#30422)``
|
298
|
+
* ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)``
|
299
|
+
* ``Use '__version__' in providers not 'version' (#31393)``
|
300
|
+
* ``Fixing circular import error in providers caused by airflow version check (#31379)``
|
301
|
+
* ``Prepare docs for May 2023 wave of Providers (#31252)``
|
302
|
+
|
303
|
+
3.3.1
|
304
|
+
.....
|
305
|
+
|
306
|
+
Bug Fixes
|
307
|
+
~~~~~~~~~
|
308
|
+
|
309
|
+
* ``Bump common.sql provider to 1.3.1 (#27888)``
|
310
|
+
|
311
|
+
.. Below changes are excluded from the changelog. Move them to
|
312
|
+
appropriate section above if needed. Do not delete the lines(!):
|
313
|
+
* ``Prepare for follow-up release for November providers (#27774)``
|
314
|
+
|
315
|
+
3.3.0
|
316
|
+
.....
|
317
|
+
|
318
|
+
.. note::
|
319
|
+
This release of provider is only available for Airflow 2.3+ as explained in the
|
320
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
321
|
+
|
322
|
+
Misc
|
323
|
+
~~~~
|
324
|
+
|
325
|
+
* ``Move min airflow version to 2.3.0 for all providers (#27196)``
|
326
|
+
|
327
|
+
Features
|
328
|
+
~~~~~~~~
|
329
|
+
|
330
|
+
* ``Add SQLExecuteQueryOperator (#25717)``
|
331
|
+
|
332
|
+
.. Below changes are excluded from the changelog. Move them to
|
333
|
+
appropriate section above if needed. Do not delete the lines(!):
|
334
|
+
* ``Enable string normalization in python formatting - providers (#27205)``
|
335
|
+
|
336
|
+
3.2.1
|
337
|
+
.....
|
338
|
+
|
339
|
+
Misc
|
340
|
+
~~~~
|
341
|
+
|
342
|
+
* ``Add common-sql lower bound for common-sql (#25789)``
|
343
|
+
|
344
|
+
.. Below changes are excluded from the changelog. Move them to
|
345
|
+
appropriate section above if needed. Do not delete the lines(!):
|
346
|
+
* ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
|
347
|
+
|
348
|
+
3.2.0
|
349
|
+
.....
|
350
|
+
|
351
|
+
Features
|
352
|
+
~~~~~~~~
|
353
|
+
|
354
|
+
* ``Optimize log when using VerticaOperator (#25566)``
|
355
|
+
* ``Unify DbApiHook.run() method with the methods which override it (#23971)``
|
356
|
+
|
357
|
+
3.1.0
|
358
|
+
.....
|
359
|
+
|
360
|
+
Features
|
361
|
+
~~~~~~~~
|
362
|
+
|
363
|
+
* ``Move all SQL classes to common-sql provider (#24836)``
|
364
|
+
|
365
|
+
|
366
|
+
.. Below changes are excluded from the changelog. Move them to
|
367
|
+
appropriate section above if needed. Do not delete the lines(!):
|
368
|
+
* ``Move provider dependencies to inside provider folders (#24672)``
|
369
|
+
* ``Remove 'hook-class-names' from provider.yaml (#24702)``
|
370
|
+
|
371
|
+
3.0.0
|
372
|
+
.....
|
373
|
+
|
374
|
+
Breaking changes
|
375
|
+
~~~~~~~~~~~~~~~~
|
376
|
+
|
377
|
+
.. note::
|
378
|
+
This release of provider is only available for Airflow 2.2+ as explained in the
|
379
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
380
|
+
|
381
|
+
.. Below changes are excluded from the changelog. Move them to
|
382
|
+
appropriate section above if needed. Do not delete the lines(!):
|
383
|
+
* ``Add explanatory note for contributors about updating Changelog (#24229)``
|
384
|
+
* ``Prepare docs for May 2022 provider's release (#24231)``
|
385
|
+
* ``Update package description to remove double min-airflow specification (#24292)``
|
386
|
+
|
387
|
+
2.1.3
|
388
|
+
.....
|
389
|
+
|
390
|
+
Bug Fixes
|
391
|
+
~~~~~~~~~
|
392
|
+
|
393
|
+
* ``Fix mistakenly added install_requires for all providers (#22382)``
|
394
|
+
|
395
|
+
2.1.2
|
396
|
+
.....
|
397
|
+
|
398
|
+
Misc
|
399
|
+
~~~~~
|
400
|
+
|
401
|
+
* ``Add Trove classifiers in PyPI (Framework :: Apache Airflow :: Provider)``
|
402
|
+
|
403
|
+
2.1.1
|
404
|
+
.....
|
405
|
+
|
406
|
+
Misc
|
407
|
+
~~~~
|
408
|
+
|
409
|
+
* ``Support for Python 3.10``
|
410
|
+
|
411
|
+
.. Below changes are excluded from the changelog. Move them to
|
412
|
+
appropriate section above if needed. Do not delete the lines(!):
|
413
|
+
|
414
|
+
2.1.0
|
415
|
+
.....
|
416
|
+
|
417
|
+
Features
|
418
|
+
~~~~~~~~
|
419
|
+
|
420
|
+
* ``Add more SQL template fields renderers (#21237)``
|
421
|
+
|
422
|
+
.. Below changes are excluded from the changelog. Move them to
|
423
|
+
appropriate section above if needed. Do not delete the lines(!):
|
424
|
+
* ``Fix K8S changelog to be PyPI-compatible (#20614)``
|
425
|
+
* ``Fix template_fields type to have MyPy friendly Sequence type (#20571)``
|
426
|
+
* ``Remove ':type' lines now sphinx-autoapi supports typehints (#20951)``
|
427
|
+
* ``Update documentation for provider December 2021 release (#20523)``
|
428
|
+
* ``Even more typing in operators (template_fields/ext) (#20608)``
|
429
|
+
* ``Use typed Context EVERYWHERE (#20565)``
|
430
|
+
* ``Add documentation for January 2021 providers release (#21257)``
|
431
|
+
|
432
|
+
2.0.1
|
433
|
+
.....
|
434
|
+
|
435
|
+
Misc
|
436
|
+
~~~~
|
437
|
+
|
438
|
+
* ``Optimise connection importing for Airflow 2.2.0``
|
439
|
+
|
440
|
+
.. Below changes are excluded from the changelog. Move them to
|
441
|
+
appropriate section above if needed. Do not delete the lines(!):
|
442
|
+
* ``Update description about the new ''connection-types'' provider meta-data (#17767)``
|
443
|
+
* ``Import Hooks lazily individually in providers manager (#17682)``
|
444
|
+
* ``Prepares docs for Rc2 release of July providers (#17116)``
|
445
|
+
* ``Prepare documentation for July release of providers. (#17015)``
|
446
|
+
* ``Removes pylint from our toolchain (#16682)``
|
447
|
+
|
448
|
+
2.0.0
|
449
|
+
.....
|
450
|
+
|
451
|
+
Breaking changes
|
452
|
+
~~~~~~~~~~~~~~~~
|
453
|
+
|
454
|
+
* ``Auto-apply apply_default decorator (#15667)``
|
455
|
+
|
456
|
+
.. warning:: Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
|
457
|
+
If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
|
458
|
+
Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
|
459
|
+
automatically and you will have to manually run ``airflow upgrade db`` to complete the migration.
|
460
|
+
|
461
|
+
.. Below changes are excluded from the changelog. Move them to
|
462
|
+
appropriate section above if needed. Do not delete the lines(!):
|
463
|
+
* ``Adds interactivity when generating provider documentation. (#15518)``
|
464
|
+
* ``Prepares provider release after PIP 21 compatibility (#15576)``
|
465
|
+
* ``Remove Backport Providers (#14886)``
|
466
|
+
* ``Update documentation for broken package releases (#14734)``
|
467
|
+
* ``Updated documentation for June 2021 provider release (#16294)``
|
468
|
+
* ``More documentation update for June providers release (#16405)``
|
469
|
+
* ``Synchronizes updated changelog after buggfix release (#16464)``
|
470
|
+
|
471
|
+
1.0.1
|
472
|
+
.....
|
473
|
+
|
474
|
+
Updated documentation and readme files.
|
475
|
+
|
476
|
+
1.0.0
|
477
|
+
.....
|
478
|
+
|
479
|
+
Initial version of the provider.
|
@@ -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-vertica
|
27
|
+
------------------------------------------------------
|
28
|
+
|
29
|
+
`Vertica <https://www.vertica.com/>`__
|
30
|
+
|
31
|
+
|
32
|
+
This is detailed commit list of changes for versions provider package: ``vertica``.
|
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-vertica"
|
26
|
+
|
27
|
+
from docs.provider_conf import * # noqa: F403
|