apache-airflow-providers-hashicorp 3.7.0rc2__py3-none-any.whl → 3.7.1__py3-none-any.whl
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.
- airflow/providers/hashicorp/__init__.py +3 -6
- airflow/providers/hashicorp/_internal_client/vault_client.py +2 -0
- airflow/providers/hashicorp/get_provider_info.py +2 -1
- {apache_airflow_providers_hashicorp-3.7.0rc2.dist-info → apache_airflow_providers_hashicorp-3.7.1.dist-info}/METADATA +7 -7
- apache_airflow_providers_hashicorp-3.7.1.dist-info/RECORD +13 -0
- apache_airflow_providers_hashicorp-3.7.0rc2.dist-info/RECORD +0 -13
- {apache_airflow_providers_hashicorp-3.7.0rc2.dist-info → apache_airflow_providers_hashicorp-3.7.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_hashicorp-3.7.0rc2.dist-info → apache_airflow_providers_hashicorp-3.7.1.dist-info}/entry_points.txt +0 -0
|
@@ -25,14 +25,11 @@ from __future__ import annotations
|
|
|
25
25
|
|
|
26
26
|
import packaging.version
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
from airflow import __version__ as airflow_version
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
from airflow import __version__ as airflow_version
|
|
34
|
-
except ImportError:
|
|
35
|
-
from airflow.version import version as airflow_version
|
|
32
|
+
__version__ = "3.7.1"
|
|
36
33
|
|
|
37
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
38
35
|
"2.7.0"
|
|
@@ -212,6 +212,8 @@ class _VaultClient(LoggingMixin):
|
|
|
212
212
|
session = Session()
|
|
213
213
|
session.mount("http://", adapter)
|
|
214
214
|
session.mount("https://", adapter)
|
|
215
|
+
if self.kwargs and "verify" in self.kwargs:
|
|
216
|
+
session.verify = self.kwargs["verify"]
|
|
215
217
|
self.kwargs["session"] = session
|
|
216
218
|
|
|
217
219
|
_client = hvac.Client(url=self.url, **self.kwargs)
|
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
|
28
28
|
"name": "Hashicorp",
|
|
29
29
|
"description": "Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__\n",
|
|
30
30
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
31
|
+
"source-date-epoch": 1716287935,
|
|
32
32
|
"versions": [
|
|
33
|
+
"3.7.1",
|
|
33
34
|
"3.7.0",
|
|
34
35
|
"3.6.4",
|
|
35
36
|
"3.6.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-hashicorp
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.1
|
|
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>
|
|
@@ -21,13 +21,13 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
23
|
Classifier: Topic :: System :: Monitoring
|
|
24
|
-
Requires-Dist: apache-airflow>=2.7.
|
|
24
|
+
Requires-Dist: apache-airflow>=2.7.0
|
|
25
25
|
Requires-Dist: hvac>=1.1.0
|
|
26
26
|
Requires-Dist: boto3>=1.33.0 ; extra == "boto3"
|
|
27
27
|
Requires-Dist: apache-airflow-providers-google ; extra == "google"
|
|
28
28
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
29
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.
|
|
30
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.
|
|
29
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.1/changelog.html
|
|
30
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.1
|
|
31
31
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
32
32
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
33
33
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -79,7 +79,7 @@ Provides-Extra: google
|
|
|
79
79
|
|
|
80
80
|
Package ``apache-airflow-providers-hashicorp``
|
|
81
81
|
|
|
82
|
-
Release: ``3.7.
|
|
82
|
+
Release: ``3.7.1``
|
|
83
83
|
|
|
84
84
|
|
|
85
85
|
Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
|
|
@@ -92,7 +92,7 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov
|
|
|
92
92
|
are in ``airflow.providers.hashicorp`` python package.
|
|
93
93
|
|
|
94
94
|
You can find package information and changelog for the provider
|
|
95
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.
|
|
95
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.1/>`_.
|
|
96
96
|
|
|
97
97
|
Installation
|
|
98
98
|
------------
|
|
@@ -133,4 +133,4 @@ Dependent package
|
|
|
133
133
|
==================================================================================================== ==========
|
|
134
134
|
|
|
135
135
|
The changelog for the provider package can be found in the
|
|
136
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.
|
|
136
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.7.1/changelog.html>`_.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
airflow/providers/hashicorp/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
|
2
|
+
airflow/providers/hashicorp/__init__.py,sha256=qeaAs3cQCAoK6ZH_rkz1F-FoVE4b9lTpl0NyNC7ZsFU,1496
|
|
3
|
+
airflow/providers/hashicorp/get_provider_info.py,sha256=ecy9D83S3rCoCKapfN9gaoGEeNoOd3biCHWpANJtW_k,2908
|
|
4
|
+
airflow/providers/hashicorp/_internal_client/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
5
|
+
airflow/providers/hashicorp/_internal_client/vault_client.py,sha256=rRZXtnDOBNGlhLtaAqLv1v6jex6D5kvy3M9MYRemc00,22645
|
|
6
|
+
airflow/providers/hashicorp/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
7
|
+
airflow/providers/hashicorp/hooks/vault.py,sha256=FWz-aA2otpMox1jdoXCapY6yWqV-vYmC3ycnW5YYRwA,18790
|
|
8
|
+
airflow/providers/hashicorp/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
9
|
+
airflow/providers/hashicorp/secrets/vault.py,sha256=_jxZqLbHnqp047Rza5e5HA5cm7ZR2TRg7O1GKGWFpuA,12245
|
|
10
|
+
apache_airflow_providers_hashicorp-3.7.1.dist-info/entry_points.txt,sha256=M338G3KvFSRu5IqEFm5Qheg_myVuQbsN_2EbAwcgqk4,105
|
|
11
|
+
apache_airflow_providers_hashicorp-3.7.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
12
|
+
apache_airflow_providers_hashicorp-3.7.1.dist-info/METADATA,sha256=B4lns9l4RCKYDdpaXQFGvdy2cK5vyvMU1mtf_kqNTWk,5931
|
|
13
|
+
apache_airflow_providers_hashicorp-3.7.1.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
airflow/providers/hashicorp/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
|
2
|
-
airflow/providers/hashicorp/__init__.py,sha256=7tzswygZ8TCQhYXDblarFr8anGBhJOxGq5NpnXCxHWA,1584
|
|
3
|
-
airflow/providers/hashicorp/get_provider_info.py,sha256=cc57L-afbIWFV3nw_G1i-5XMo-lklVjplGR4Btm-xMA,2887
|
|
4
|
-
airflow/providers/hashicorp/_internal_client/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
5
|
-
airflow/providers/hashicorp/_internal_client/vault_client.py,sha256=-56JrdsuVmGRadQ2a4EudeIViFNbFfZtMSGC-Tn4IQA,22534
|
|
6
|
-
airflow/providers/hashicorp/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
7
|
-
airflow/providers/hashicorp/hooks/vault.py,sha256=FWz-aA2otpMox1jdoXCapY6yWqV-vYmC3ycnW5YYRwA,18790
|
|
8
|
-
airflow/providers/hashicorp/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
9
|
-
airflow/providers/hashicorp/secrets/vault.py,sha256=_jxZqLbHnqp047Rza5e5HA5cm7ZR2TRg7O1GKGWFpuA,12245
|
|
10
|
-
apache_airflow_providers_hashicorp-3.7.0rc2.dist-info/entry_points.txt,sha256=M338G3KvFSRu5IqEFm5Qheg_myVuQbsN_2EbAwcgqk4,105
|
|
11
|
-
apache_airflow_providers_hashicorp-3.7.0rc2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
12
|
-
apache_airflow_providers_hashicorp-3.7.0rc2.dist-info/METADATA,sha256=Ax3cwgZSVRxyPJYLHBwIoYY6iwZbPsiCDx70A9sKEuQ,5941
|
|
13
|
-
apache_airflow_providers_hashicorp-3.7.0rc2.dist-info/RECORD,,
|
|
File without changes
|