apache-airflow-providers-hashicorp 4.1.0__tar.gz → 4.1.1rc1__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_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/PKG-INFO +9 -9
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/README.rst +4 -4
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/changelog.rst +550 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/commits.rst +586 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/conf.py +27 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/connections/vault.rst +96 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/index.rst +125 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/integration-logos/Hashicorp-Vault.png +0 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/redirects.txt +1 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/secrets-backends/hashicorp-vault.rst +260 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/docs/security.rst +18 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/provider.yaml +77 -0
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/pyproject.toml +22 -7
- apache_airflow_providers_hashicorp-4.1.1rc1/src/airflow/__init__.py +17 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/src/airflow/providers/__init__.py +17 -0
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/__init__.py +1 -1
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/_internal_client/vault_client.py +3 -6
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/get_provider_info.py +0 -38
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/secrets/vault.py +1 -2
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/conftest.py +19 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/__init__.py +17 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/hashicorp/__init__.py +16 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/hashicorp/_internal_client/__init__.py +16 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/hashicorp/_internal_client/test_vault_client.py +1264 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/hashicorp/hooks/__init__.py +16 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/hashicorp/hooks/test_vault.py +1341 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/hashicorp/secrets/__init__.py +16 -0
- apache_airflow_providers_hashicorp-4.1.1rc1/tests/unit/hashicorp/secrets/test_vault.py +414 -0
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/LICENSE +0 -0
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/_internal_client/__init__.py +0 -0
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/hooks/__init__.py +0 -0
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/hooks/vault.py +0 -0
- {apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/src/airflow/providers/hashicorp/secrets/__init__.py +0 -0
{apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-hashicorp
|
|
3
|
-
Version: 4.1.
|
|
3
|
+
Version: 4.1.1rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-hashicorp for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,hashicorp,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -20,16 +20,16 @@ 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.
|
|
23
|
+
Requires-Dist: apache-airflow>=2.9.0rc0
|
|
24
24
|
Requires-Dist: hvac>=1.1.0
|
|
25
25
|
Requires-Dist: boto3>=1.33.0 ; extra == "boto3"
|
|
26
26
|
Requires-Dist: apache-airflow-providers-google ; extra == "google"
|
|
27
27
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
28
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.
|
|
29
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.
|
|
28
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.1/changelog.html
|
|
29
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.1
|
|
30
|
+
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
30
31
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
31
32
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
32
|
-
Project-URL: Twitter, https://x.com/ApacheAirflow
|
|
33
33
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
34
34
|
Provides-Extra: boto3
|
|
35
35
|
Provides-Extra: google
|
|
@@ -59,7 +59,7 @@ Provides-Extra: google
|
|
|
59
59
|
|
|
60
60
|
Package ``apache-airflow-providers-hashicorp``
|
|
61
61
|
|
|
62
|
-
Release: ``4.1.
|
|
62
|
+
Release: ``4.1.1``
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
|
|
@@ -72,7 +72,7 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov
|
|
|
72
72
|
are in ``airflow.providers.hashicorp`` python package.
|
|
73
73
|
|
|
74
74
|
You can find package information and changelog for the provider
|
|
75
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.
|
|
75
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.1/>`_.
|
|
76
76
|
|
|
77
77
|
Installation
|
|
78
78
|
------------
|
|
@@ -97,7 +97,7 @@ Cross provider package dependencies
|
|
|
97
97
|
-----------------------------------
|
|
98
98
|
|
|
99
99
|
Those are dependencies that might be needed in order to use all the features of the package.
|
|
100
|
-
You need to install the specified
|
|
100
|
+
You need to install the specified providers in order to use them.
|
|
101
101
|
|
|
102
102
|
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
103
103
|
|
|
@@ -113,5 +113,5 @@ Dependent package
|
|
|
113
113
|
==================================================================================================== ==========
|
|
114
114
|
|
|
115
115
|
The changelog for the provider package can be found in the
|
|
116
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.
|
|
116
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.1/changelog.html>`_.
|
|
117
117
|
|
{apache_airflow_providers_hashicorp-4.1.0 → apache_airflow_providers_hashicorp-4.1.1rc1}/README.rst
RENAMED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-hashicorp``
|
|
25
25
|
|
|
26
|
-
Release: ``4.1.
|
|
26
|
+
Release: ``4.1.1``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
|
|
@@ -36,7 +36,7 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov
|
|
|
36
36
|
are in ``airflow.providers.hashicorp`` 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-hashicorp/4.1.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.1/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
@@ -61,7 +61,7 @@ Cross provider package dependencies
|
|
|
61
61
|
-----------------------------------
|
|
62
62
|
|
|
63
63
|
Those are dependencies that might be needed in order to use all the features of the package.
|
|
64
|
-
You need to install the specified
|
|
64
|
+
You need to install the specified providers in order to use them.
|
|
65
65
|
|
|
66
66
|
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
67
67
|
|
|
@@ -77,4 +77,4 @@ Dependent package
|
|
|
77
77
|
==================================================================================================== ==========
|
|
78
78
|
|
|
79
79
|
The changelog for the provider package can be found in the
|
|
80
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.
|
|
80
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.1.1/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f
|
|
@@ -0,0 +1,550 @@
|
|
|
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-hashicorp``
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
Changelog
|
|
28
|
+
---------
|
|
29
|
+
|
|
30
|
+
4.1.1
|
|
31
|
+
.....
|
|
32
|
+
|
|
33
|
+
Misc
|
|
34
|
+
~~~~
|
|
35
|
+
|
|
36
|
+
* ``remove superfluous else block (#49199)``
|
|
37
|
+
|
|
38
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
39
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
40
|
+
* ``Prepare docs for Apr 2nd wave of providers (#49051)``
|
|
41
|
+
* ``Remove unnecessary entries in get_provider_info and update the schema (#48849)``
|
|
42
|
+
* ``Remove fab from preinstalled providers (#48457)``
|
|
43
|
+
* ``Improve documentation building iteration (#48760)``
|
|
44
|
+
* ``Prepare docs for Apr 1st wave of providers (#48828)``
|
|
45
|
+
* ``Simplify tooling by switching completely to uv (#48223)``
|
|
46
|
+
* ``Upgrade ruff to latest version (#48553)``
|
|
47
|
+
* ``Prepare docs for Mar 2nd wave of providers (#48383)``
|
|
48
|
+
* ``Upgrade providers flit build requirements to 3.12.0 (#48362)``
|
|
49
|
+
* ``Move airflow sources to airflow-core package (#47798)``
|
|
50
|
+
* ``Remove links to x/twitter.com (#47801)``
|
|
51
|
+
|
|
52
|
+
4.1.0
|
|
53
|
+
.....
|
|
54
|
+
|
|
55
|
+
Features
|
|
56
|
+
~~~~~~~~
|
|
57
|
+
|
|
58
|
+
* ``Add custom AWS Region support for STS endpoint to 'hashicorp' provider (#47495)``
|
|
59
|
+
|
|
60
|
+
Misc
|
|
61
|
+
~~~~
|
|
62
|
+
|
|
63
|
+
* ``Upgrade flit to 3.11.0 (#46938)``
|
|
64
|
+
|
|
65
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
66
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
67
|
+
* ``Move tests_common package to devel-common project (#47281)``
|
|
68
|
+
* ``Improve documentation for updating provider dependencies (#47203)``
|
|
69
|
+
* ``Add legacy namespace packages to airflow.providers (#47064)``
|
|
70
|
+
* ``Remove extra whitespace in provider readme template (#46975)``
|
|
71
|
+
* ``Prepare docs for Feb 1st wave of providers (#46893)``
|
|
72
|
+
* ``Move provider_tests to unit folder in provider tests (#46800)``
|
|
73
|
+
* ``Removed the unused provider's distribution (#46608)``
|
|
74
|
+
* ``move hashicorp (#46087)``
|
|
75
|
+
|
|
76
|
+
4.0.0
|
|
77
|
+
.....
|
|
78
|
+
|
|
79
|
+
.. note::
|
|
80
|
+
This release of provider is only available for Airflow 2.9+ as explained in the
|
|
81
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
82
|
+
|
|
83
|
+
Breaking changes
|
|
84
|
+
~~~~~~~~~~~~~~~~
|
|
85
|
+
|
|
86
|
+
.. warning::
|
|
87
|
+
All deprecated classes, parameters and features have been removed from the hashicorp provider package.
|
|
88
|
+
The following breaking changes were introduced:
|
|
89
|
+
|
|
90
|
+
* The usage of role_id for AppRole authentication has been deprecated from airflow.providers.hashicorp.hook.vault .Please use connection login
|
|
91
|
+
* The usage of role_id in connection extra for AppRole authentication has been deprecated from airflow.providers.hashicorp.hook.vault. Please use connection login
|
|
92
|
+
* Removed role_id from get_connection_form_widgets
|
|
93
|
+
* Removed deprecated method ``VaultBackend.get_conn_uri`` from airflow.providers.hashicorp.secrets.vault
|
|
94
|
+
|
|
95
|
+
* ``Removed deprecated code from hashicorp provider (#44598)``
|
|
96
|
+
|
|
97
|
+
Misc
|
|
98
|
+
~~~~
|
|
99
|
+
|
|
100
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.9.0 (#44956)``
|
|
101
|
+
|
|
102
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
103
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
104
|
+
* ``Prepare docs for Nov 1st wave of providers (#44011)``
|
|
105
|
+
* ``Split providers out of the main "airflow/" tree into a UV workspace project (#42505)``
|
|
106
|
+
|
|
107
|
+
3.8.0
|
|
108
|
+
.....
|
|
109
|
+
|
|
110
|
+
.. note::
|
|
111
|
+
This release of provider is only available for Airflow 2.8+ as explained in the
|
|
112
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
113
|
+
|
|
114
|
+
Misc
|
|
115
|
+
~~~~
|
|
116
|
+
|
|
117
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.8.0 (#41396)``
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
121
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
122
|
+
|
|
123
|
+
3.7.1
|
|
124
|
+
.....
|
|
125
|
+
|
|
126
|
+
Bug Fixes
|
|
127
|
+
~~~~~~~~~
|
|
128
|
+
|
|
129
|
+
* ``inherit key "verify" from env into session so that kv_client can read it properly (#38614)``
|
|
130
|
+
|
|
131
|
+
Misc
|
|
132
|
+
~~~~
|
|
133
|
+
|
|
134
|
+
* ``Faster 'airflow_version' imports (#39552)``
|
|
135
|
+
* ``Simplify 'airflow_version' imports (#39497)``
|
|
136
|
+
|
|
137
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
138
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
139
|
+
* ``Reapply templates for all providers (#39554)``
|
|
140
|
+
|
|
141
|
+
3.7.0
|
|
142
|
+
.....
|
|
143
|
+
|
|
144
|
+
.. note::
|
|
145
|
+
This release of provider is only available for Airflow 2.7+ as explained in the
|
|
146
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
147
|
+
|
|
148
|
+
Features
|
|
149
|
+
~~~~~~~~
|
|
150
|
+
|
|
151
|
+
* ``Add assume_role_kwargs in hashicorp backend config (#39279)``
|
|
152
|
+
|
|
153
|
+
Bug Fixes
|
|
154
|
+
~~~~~~~~~
|
|
155
|
+
|
|
156
|
+
* ``Expose AWS IAM missing param in Hashicorp secret (#38536)``
|
|
157
|
+
|
|
158
|
+
Misc
|
|
159
|
+
~~~~
|
|
160
|
+
|
|
161
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.7.0 (#39240)``
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
165
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
166
|
+
* ``Prepare docs 1st wave (RC1) April 2024 (#38863)``
|
|
167
|
+
* ``Bump ruff to 0.3.3 (#38240)``
|
|
168
|
+
|
|
169
|
+
3.6.4
|
|
170
|
+
.....
|
|
171
|
+
|
|
172
|
+
Bug Fixes
|
|
173
|
+
~~~~~~~~~
|
|
174
|
+
|
|
175
|
+
* ``Fix unexpected keyword argument 'secret_path' in secrets.kv.v2 (#37626)``
|
|
176
|
+
|
|
177
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
178
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
179
|
+
* ``Add comment about versions updated by release manager (#37488)``
|
|
180
|
+
* ``Fix remaining D401 checks (#37434)``
|
|
181
|
+
|
|
182
|
+
3.6.3
|
|
183
|
+
.....
|
|
184
|
+
|
|
185
|
+
Bug Fixes
|
|
186
|
+
~~~~~~~~~
|
|
187
|
+
|
|
188
|
+
* ``fix(hashicorp): Fix 'VAULT_TOKEN' support (#37337)``
|
|
189
|
+
|
|
190
|
+
Misc
|
|
191
|
+
~~~~
|
|
192
|
+
|
|
193
|
+
* ``feat: Switch all class, functions, methods deprecations to decorators (#36876)``
|
|
194
|
+
|
|
195
|
+
3.6.2
|
|
196
|
+
.....
|
|
197
|
+
|
|
198
|
+
Misc
|
|
199
|
+
~~~~
|
|
200
|
+
|
|
201
|
+
* ``Explicitly passing 'raise_on_deleted_version=True' to 'read_secret_version' in Hashicorp operator (#36532)``
|
|
202
|
+
|
|
203
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
204
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
205
|
+
* ``Prepare docs 1st wave of Providers January 2024 (#36640)``
|
|
206
|
+
* ``Speed up autocompletion of Breeze by simplifying provider state (#36499)``
|
|
207
|
+
* ``Revert "Provide the logger_name param in providers hooks in order to override the logger name (#36675)" (#37015)``
|
|
208
|
+
* ``Prepare docs 2nd wave of Providers January 2024 (#36945)``
|
|
209
|
+
|
|
210
|
+
3.6.1
|
|
211
|
+
.....
|
|
212
|
+
|
|
213
|
+
Bug Fixes
|
|
214
|
+
~~~~~~~~~
|
|
215
|
+
|
|
216
|
+
* ``Follow BaseHook connection fields method signature in child classes (#36086)``
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
220
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
221
|
+
|
|
222
|
+
3.6.0
|
|
223
|
+
.....
|
|
224
|
+
|
|
225
|
+
.. note::
|
|
226
|
+
This release of provider is only available for Airflow 2.6+ as explained in the
|
|
227
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
228
|
+
|
|
229
|
+
Misc
|
|
230
|
+
~~~~
|
|
231
|
+
|
|
232
|
+
* ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
|
|
233
|
+
|
|
234
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
235
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
236
|
+
* ``Fix and reapply templates for provider documentation (#35686)``
|
|
237
|
+
* ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
|
|
238
|
+
* ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
|
|
239
|
+
* ``Use reproducible builds for providers (#35693)``
|
|
240
|
+
* ``Prepare docs 1st wave of Providers November 2023 (#35537)``
|
|
241
|
+
* ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
|
|
242
|
+
* ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
|
|
243
|
+
|
|
244
|
+
3.5.0
|
|
245
|
+
.....
|
|
246
|
+
|
|
247
|
+
.. note::
|
|
248
|
+
This release of provider is only available for Airflow 2.5+ as explained in the
|
|
249
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
250
|
+
|
|
251
|
+
Misc
|
|
252
|
+
~~~~
|
|
253
|
+
|
|
254
|
+
* ``Bump min airflow version of providers (#34728)``
|
|
255
|
+
|
|
256
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
257
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
258
|
+
* ``Refactor shorter defaults in providers (#34347)``
|
|
259
|
+
|
|
260
|
+
3.4.3
|
|
261
|
+
.....
|
|
262
|
+
|
|
263
|
+
Misc
|
|
264
|
+
~~~~~
|
|
265
|
+
|
|
266
|
+
* ``Improve modules import in Airflow providers by some of them into a type-checking block (#33754)``
|
|
267
|
+
|
|
268
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
269
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
270
|
+
* ``Prepare docs for Aug 2023 3rd wave of Providers (#33730)``
|
|
271
|
+
* ``Fix typos (double words and it's/its) (#33623)``
|
|
272
|
+
|
|
273
|
+
3.4.2
|
|
274
|
+
.....
|
|
275
|
+
|
|
276
|
+
Misc
|
|
277
|
+
~~~~
|
|
278
|
+
|
|
279
|
+
* ``Add default retry to hvac client requests (#31073)``
|
|
280
|
+
|
|
281
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
282
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
283
|
+
* ``Improve provider documentation and README structure (#32125)``
|
|
284
|
+
* ``Remove spurious headers for provider changelogs (#32373)``
|
|
285
|
+
* ``Prepare docs for July 2023 wave of Providers (#32298)``
|
|
286
|
+
* ``D205 Support - Providers: GRPC to Oracle (inclusive) (#32357)``
|
|
287
|
+
|
|
288
|
+
3.4.1
|
|
289
|
+
.....
|
|
290
|
+
|
|
291
|
+
.. note::
|
|
292
|
+
This release dropped support for Python 3.7
|
|
293
|
+
|
|
294
|
+
Bug Fixes
|
|
295
|
+
~~~~~~~~~
|
|
296
|
+
|
|
297
|
+
* ``Fix hashicorp some client authentication methods (#31593)``
|
|
298
|
+
|
|
299
|
+
Misc
|
|
300
|
+
~~~~
|
|
301
|
+
|
|
302
|
+
* ``Remove Python 3.7 support (#30963)``
|
|
303
|
+
|
|
304
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
305
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
306
|
+
* ``Add D400 pydocstyle check - Providers (#31427)``
|
|
307
|
+
* ``Add note about dropping Python 3.7 for providers (#32015)``
|
|
308
|
+
|
|
309
|
+
3.4.0
|
|
310
|
+
.....
|
|
311
|
+
|
|
312
|
+
.. note::
|
|
313
|
+
This release of provider is only available for Airflow 2.4+ as explained in the
|
|
314
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
315
|
+
|
|
316
|
+
Misc
|
|
317
|
+
~~~~
|
|
318
|
+
|
|
319
|
+
* ``Bump minimum Airflow version in providers (#30917)``
|
|
320
|
+
|
|
321
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
322
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
323
|
+
* ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)``
|
|
324
|
+
* ``Add full automation for min Airflow version for providers (#30994)``
|
|
325
|
+
* ``Add mechanism to suspend providers (#30422)``
|
|
326
|
+
* ``Use '__version__' in providers not 'version' (#31393)``
|
|
327
|
+
* ``Fixing circular import error in providers caused by airflow version check (#31379)``
|
|
328
|
+
* ``Prepare docs for May 2023 wave of Providers (#31252)``
|
|
329
|
+
|
|
330
|
+
3.3.1
|
|
331
|
+
.....
|
|
332
|
+
|
|
333
|
+
Bug Fixes
|
|
334
|
+
~~~~~~~~~
|
|
335
|
+
|
|
336
|
+
* ``Improve creating Vault connection from the UI and add documentation for this conn (#30057)``
|
|
337
|
+
* ``Remove required validations in Hashicorp Vault conn form (#30138)``
|
|
338
|
+
* ``remove unused key_id variable (#30055)``
|
|
339
|
+
* ``Simplify dict logic in Hashicorp Vault Hook (#30060)``
|
|
340
|
+
|
|
341
|
+
3.3.0
|
|
342
|
+
.....
|
|
343
|
+
|
|
344
|
+
Features
|
|
345
|
+
~~~~~~~~
|
|
346
|
+
* ``Support multiple mount points in Vault backend secret (#29734)``
|
|
347
|
+
|
|
348
|
+
Bug Fixes
|
|
349
|
+
~~~~~~~~~
|
|
350
|
+
|
|
351
|
+
* ``Fix empty paths in Vault secrets backend (#29908)``
|
|
352
|
+
|
|
353
|
+
.. Review and move the new changes to one of the sections above:
|
|
354
|
+
* ``Prepare docs for 03/2023 wave of Providers (#29878)``
|
|
355
|
+
|
|
356
|
+
3.2.0
|
|
357
|
+
.....
|
|
358
|
+
|
|
359
|
+
.. note::
|
|
360
|
+
This release of provider is only available for Airflow 2.3+ as explained in the
|
|
361
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
362
|
+
|
|
363
|
+
Misc
|
|
364
|
+
~~~~
|
|
365
|
+
|
|
366
|
+
* ``Move min airflow version to 2.3.0 for all providers (#27196)``
|
|
367
|
+
* ``Add Airflow specific warning classes (#25799)``
|
|
368
|
+
|
|
369
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
370
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
371
|
+
* ``Pass kwargs from vault hook to hvac client (#26680)``
|
|
372
|
+
* ``Update old style typing (#26872)``
|
|
373
|
+
* ``Enable string normalization in python formatting - providers (#27205)``
|
|
374
|
+
* ``Update docs for September Provider's release (#26731)``
|
|
375
|
+
* ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
|
|
376
|
+
|
|
377
|
+
3.1.0
|
|
378
|
+
.....
|
|
379
|
+
|
|
380
|
+
Features
|
|
381
|
+
~~~~~~~~
|
|
382
|
+
|
|
383
|
+
* ``Use newer kubernetes authentication method in internal vault client (#25351)``
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
3.0.1
|
|
387
|
+
.....
|
|
388
|
+
|
|
389
|
+
Bug Fixes
|
|
390
|
+
~~~~~~~~~
|
|
391
|
+
|
|
392
|
+
* ``Update providers to use functools compat for ''cached_property'' (#24582)``
|
|
393
|
+
|
|
394
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
395
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
396
|
+
* ``Move provider dependencies to inside provider folders (#24672)``
|
|
397
|
+
* ``Remove 'hook-class-names' from provider.yaml (#24702)``
|
|
398
|
+
|
|
399
|
+
3.0.0
|
|
400
|
+
.....
|
|
401
|
+
|
|
402
|
+
Breaking changes
|
|
403
|
+
~~~~~~~~~~~~~~~~
|
|
404
|
+
|
|
405
|
+
.. note::
|
|
406
|
+
This release of provider is only available for Airflow 2.2+ as explained in the
|
|
407
|
+
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
|
|
408
|
+
|
|
409
|
+
* ``Add explanatory note for contributors about updating Changelog (#24229)``
|
|
410
|
+
* ``Prepare provider documentation 2022.05.11 (#23631)``
|
|
411
|
+
* ``pydocstyle D202 added (#24221)``
|
|
412
|
+
* ``Prepare docs for May 2022 provider's release (#24231)``
|
|
413
|
+
|
|
414
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
415
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
416
|
+
* ``Update package description to remove double min-airflow specification (#24292)``
|
|
417
|
+
|
|
418
|
+
2.2.0
|
|
419
|
+
.....
|
|
420
|
+
|
|
421
|
+
Features
|
|
422
|
+
~~~~~~~~
|
|
423
|
+
|
|
424
|
+
* ``Update secrets backends to use get_conn_value instead of get_conn_uri (#22348)``
|
|
425
|
+
|
|
426
|
+
* ``Prepare mid-April provider documentation. (#22819)``
|
|
427
|
+
* ``Clean up in-line f-string concatenation (#23591)``
|
|
428
|
+
* ``Use new Breese for building, pulling and verifying the images. (#23104)``
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
2.1.4
|
|
432
|
+
.....
|
|
433
|
+
|
|
434
|
+
Bug Fixes
|
|
435
|
+
~~~~~~~~~
|
|
436
|
+
|
|
437
|
+
* ``Fix mistakenly added install_requires for all providers (#22382)``
|
|
438
|
+
|
|
439
|
+
2.1.3
|
|
440
|
+
.....
|
|
441
|
+
|
|
442
|
+
Misc
|
|
443
|
+
~~~~~
|
|
444
|
+
|
|
445
|
+
* ``Add Trove classifiers in PyPI (Framework :: Apache Airflow :: Provider)``
|
|
446
|
+
|
|
447
|
+
2.1.2
|
|
448
|
+
.....
|
|
449
|
+
|
|
450
|
+
Bug Fixes
|
|
451
|
+
~~~~~~~~~
|
|
452
|
+
|
|
453
|
+
* ``Fix Vault Hook default connection name (#20792)``
|
|
454
|
+
|
|
455
|
+
Misc
|
|
456
|
+
~~~~
|
|
457
|
+
|
|
458
|
+
* ``Support for Python 3.10``
|
|
459
|
+
|
|
460
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
461
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
462
|
+
* ``Fixed changelog for January 2022 (delayed) provider's release (#21439)``
|
|
463
|
+
* ``Fix K8S changelog to be PyPI-compatible (#20614)``
|
|
464
|
+
* ``Fix cached_property MyPy declaration and related MyPy errors (#20226)``
|
|
465
|
+
* ``Add documentation for January 2021 providers release (#21257)``
|
|
466
|
+
* ``Remove ':type' lines now sphinx-autoapi supports typehints (#20951)``
|
|
467
|
+
* ``Update documentation for provider December 2021 release (#20523)``
|
|
468
|
+
|
|
469
|
+
2.1.1
|
|
470
|
+
.....
|
|
471
|
+
|
|
472
|
+
Bug Fixes
|
|
473
|
+
~~~~~~~~~
|
|
474
|
+
|
|
475
|
+
* ``Fixing Vault AppRole authentication with CONN_URI (#18064)``
|
|
476
|
+
|
|
477
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
478
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
479
|
+
|
|
480
|
+
2.1.0
|
|
481
|
+
.....
|
|
482
|
+
|
|
483
|
+
Bug Fixes
|
|
484
|
+
~~~~~~~~~
|
|
485
|
+
|
|
486
|
+
* ``Fix instantiating Vault Secret Backend during configuration (#17935)``
|
|
487
|
+
|
|
488
|
+
Features
|
|
489
|
+
~~~~~~~~
|
|
490
|
+
|
|
491
|
+
* ``Invalidate Vault cached prop when not authenticated (#17387)``
|
|
492
|
+
* ``Enable Connection creation from Vault parameters (#15013)``
|
|
493
|
+
|
|
494
|
+
Misc
|
|
495
|
+
~~~~
|
|
496
|
+
|
|
497
|
+
* ``Optimise connection importing for Airflow 2.2.0``
|
|
498
|
+
* ``Adds secrets backend/logging/auth information to provider yaml (#17625)``
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
502
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
503
|
+
* ``Update description about the new ''connection-types'' provider meta-data (#17767)``
|
|
504
|
+
* ``Import Hooks lazily individually in providers manager (#17682)``
|
|
505
|
+
* ``Prepares docs for Rc2 release of July providers (#17116)``
|
|
506
|
+
* ``Prepare documentation for July release of providers. (#17015)``
|
|
507
|
+
* ``Removes pylint from our toolchain (#16682)``
|
|
508
|
+
* ``Add August 2021 Provider's documentation (#17890)``
|
|
509
|
+
|
|
510
|
+
2.0.0
|
|
511
|
+
.....
|
|
512
|
+
|
|
513
|
+
Breaking changes
|
|
514
|
+
~~~~~~~~~~~~~~~~
|
|
515
|
+
|
|
516
|
+
* ``Auto-apply apply_default decorator (#15667)``
|
|
517
|
+
|
|
518
|
+
.. warning:: Due to apply_default decorator removal, this version of the provider requires Airflow 2.1.0+.
|
|
519
|
+
If your Airflow version is < 2.1.0, and you want to install this provider version, first upgrade
|
|
520
|
+
Airflow to at least version 2.1.0. Otherwise your Airflow package version will be upgraded
|
|
521
|
+
automatically and you will have to manually run ``airflow upgrade db`` to complete the migration.
|
|
522
|
+
|
|
523
|
+
Bug Fixes
|
|
524
|
+
~~~~~~~~~
|
|
525
|
+
|
|
526
|
+
* ``Sanitize end of line character when loading token from a file (vault) (#16407)``
|
|
527
|
+
|
|
528
|
+
.. Below changes are excluded from the changelog. Move them to
|
|
529
|
+
appropriate section above if needed. Do not delete the lines(!):
|
|
530
|
+
* ``Updated documentation for June 2021 provider release (#16294)``
|
|
531
|
+
* ``More documentation update for June providers release (#16405)``
|
|
532
|
+
* ``Synchronizes updated changelog after buggfix release (#16464)``
|
|
533
|
+
|
|
534
|
+
1.0.2
|
|
535
|
+
.....
|
|
536
|
+
|
|
537
|
+
Bug Fixes
|
|
538
|
+
~~~~~~~~~
|
|
539
|
+
|
|
540
|
+
* ``Fix deprecated warning hvac auth (#15216)``
|
|
541
|
+
|
|
542
|
+
1.0.1
|
|
543
|
+
.....
|
|
544
|
+
|
|
545
|
+
Updated documentation and readme files.
|
|
546
|
+
|
|
547
|
+
1.0.0
|
|
548
|
+
.....
|
|
549
|
+
|
|
550
|
+
Initial version of the provider.
|