apache-airflow-providers-hashicorp 3.6.1rc1__py3-none-any.whl → 3.6.2rc1__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.
Potentially problematic release.
This version of apache-airflow-providers-hashicorp might be problematic. Click here for more details.
- airflow/providers/hashicorp/__init__.py +1 -1
- airflow/providers/hashicorp/_internal_client/vault_client.py +8 -2
- airflow/providers/hashicorp/get_provider_info.py +4 -3
- {apache_airflow_providers_hashicorp-3.6.1rc1.dist-info → apache_airflow_providers_hashicorp-3.6.2rc1.dist-info}/METADATA +8 -8
- {apache_airflow_providers_hashicorp-3.6.1rc1.dist-info → apache_airflow_providers_hashicorp-3.6.2rc1.dist-info}/RECORD +7 -7
- {apache_airflow_providers_hashicorp-3.6.1rc1.dist-info → apache_airflow_providers_hashicorp-3.6.2rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_hashicorp-3.6.1rc1.dist-info → apache_airflow_providers_hashicorp-3.6.2rc1.dist-info}/entry_points.txt +0 -0
|
@@ -373,7 +373,10 @@ class _VaultClient(LoggingMixin):
|
|
|
373
373
|
response = self.client.secrets.kv.v1.read_secret(path=secret_path, mount_point=mount_point)
|
|
374
374
|
else:
|
|
375
375
|
response = self.client.secrets.kv.v2.read_secret_version(
|
|
376
|
-
path=secret_path,
|
|
376
|
+
path=secret_path,
|
|
377
|
+
mount_point=mount_point,
|
|
378
|
+
version=secret_version,
|
|
379
|
+
raise_on_deleted_version=True,
|
|
377
380
|
)
|
|
378
381
|
except InvalidPath:
|
|
379
382
|
self.log.debug("Secret not found %s with mount point %s", secret_path, mount_point)
|
|
@@ -422,7 +425,10 @@ class _VaultClient(LoggingMixin):
|
|
|
422
425
|
try:
|
|
423
426
|
mount_point, secret_path = self._parse_secret_path(secret_path)
|
|
424
427
|
return self.client.secrets.kv.v2.read_secret_version(
|
|
425
|
-
path=secret_path,
|
|
428
|
+
path=secret_path,
|
|
429
|
+
mount_point=mount_point,
|
|
430
|
+
version=secret_version,
|
|
431
|
+
raise_on_deleted_version=True,
|
|
426
432
|
)
|
|
427
433
|
except InvalidPath:
|
|
428
434
|
self.log.debug(
|
|
@@ -27,9 +27,10 @@ def get_provider_info():
|
|
|
27
27
|
"package-name": "apache-airflow-providers-hashicorp",
|
|
28
28
|
"name": "Hashicorp",
|
|
29
29
|
"description": "Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__\n",
|
|
30
|
-
"
|
|
31
|
-
"source-date-epoch":
|
|
30
|
+
"state": "ready",
|
|
31
|
+
"source-date-epoch": 1705912121,
|
|
32
32
|
"versions": [
|
|
33
|
+
"3.6.2",
|
|
33
34
|
"3.6.1",
|
|
34
35
|
"3.6.0",
|
|
35
36
|
"3.5.0",
|
|
@@ -54,7 +55,7 @@ def get_provider_info():
|
|
|
54
55
|
"1.0.1",
|
|
55
56
|
"1.0.0",
|
|
56
57
|
],
|
|
57
|
-
"dependencies": ["apache-airflow>=2.6.0", "hvac>=0
|
|
58
|
+
"dependencies": ["apache-airflow>=2.6.0", "hvac>=1.1.0"],
|
|
58
59
|
"integrations": [
|
|
59
60
|
{
|
|
60
61
|
"integration-name": "Hashicorp Vault",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-hashicorp
|
|
3
|
-
Version: 3.6.
|
|
3
|
+
Version: 3.6.2rc1
|
|
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,11 +21,11 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
23
|
Requires-Dist: apache-airflow>=2.6.0.dev0
|
|
24
|
-
Requires-Dist: hvac>=0
|
|
24
|
+
Requires-Dist: hvac>=1.1.0
|
|
25
25
|
Requires-Dist: apache-airflow-providers-google ; extra == "google"
|
|
26
26
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
27
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.
|
|
28
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.
|
|
27
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.2/changelog.html
|
|
28
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.2
|
|
29
29
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
30
30
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
31
31
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -76,7 +76,7 @@ Provides-Extra: google
|
|
|
76
76
|
|
|
77
77
|
Package ``apache-airflow-providers-hashicorp``
|
|
78
78
|
|
|
79
|
-
Release: ``3.6.
|
|
79
|
+
Release: ``3.6.2.rc1``
|
|
80
80
|
|
|
81
81
|
|
|
82
82
|
Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
|
|
@@ -89,7 +89,7 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov
|
|
|
89
89
|
are in ``airflow.providers.hashicorp`` python package.
|
|
90
90
|
|
|
91
91
|
You can find package information and changelog for the provider
|
|
92
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.
|
|
92
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.2/>`_.
|
|
93
93
|
|
|
94
94
|
Installation
|
|
95
95
|
------------
|
|
@@ -107,7 +107,7 @@ Requirements
|
|
|
107
107
|
PIP package Version required
|
|
108
108
|
================== ==================
|
|
109
109
|
``apache-airflow`` ``>=2.6.0``
|
|
110
|
-
``hvac`` ``>=0
|
|
110
|
+
``hvac`` ``>=1.1.0``
|
|
111
111
|
================== ==================
|
|
112
112
|
|
|
113
113
|
Cross provider package dependencies
|
|
@@ -130,4 +130,4 @@ Dependent package
|
|
|
130
130
|
==================================================================================================== ==========
|
|
131
131
|
|
|
132
132
|
The changelog for the provider package can be found in the
|
|
133
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.
|
|
133
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/3.6.2/changelog.html>`_.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
airflow/providers/hashicorp/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
|
2
|
-
airflow/providers/hashicorp/__init__.py,sha256=
|
|
3
|
-
airflow/providers/hashicorp/get_provider_info.py,sha256=
|
|
2
|
+
airflow/providers/hashicorp/__init__.py,sha256=ydWF8tP4dMbpbKtUsI30kbWutBKyKTwazmZMktiDAjU,1584
|
|
3
|
+
airflow/providers/hashicorp/get_provider_info.py,sha256=cW5hjY4Z9BnT5A1f2dq4wZ8Bpl3-J5X1S6V3NA8GXcE,2739
|
|
4
4
|
airflow/providers/hashicorp/_internal_client/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
5
|
-
airflow/providers/hashicorp/_internal_client/vault_client.py,sha256=
|
|
5
|
+
airflow/providers/hashicorp/_internal_client/vault_client.py,sha256=Jbhv3vBsfb9qCK_3oT9WQRzRJq2FIAGYX2a39xie4pk,21372
|
|
6
6
|
airflow/providers/hashicorp/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
7
7
|
airflow/providers/hashicorp/hooks/vault.py,sha256=ZYs4DmwCHeMXcVbct0AYl4k-Ahyb7KJNgaV7y14AN0k,18795
|
|
8
8
|
airflow/providers/hashicorp/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
9
9
|
airflow/providers/hashicorp/secrets/vault.py,sha256=Z9b-A2gk4bgFijBlYmNWvUcf1RUTXnH7m82x2sORU_Q,11992
|
|
10
|
-
apache_airflow_providers_hashicorp-3.6.
|
|
11
|
-
apache_airflow_providers_hashicorp-3.6.
|
|
12
|
-
apache_airflow_providers_hashicorp-3.6.
|
|
13
|
-
apache_airflow_providers_hashicorp-3.6.
|
|
10
|
+
apache_airflow_providers_hashicorp-3.6.2rc1.dist-info/entry_points.txt,sha256=M338G3KvFSRu5IqEFm5Qheg_myVuQbsN_2EbAwcgqk4,105
|
|
11
|
+
apache_airflow_providers_hashicorp-3.6.2rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
12
|
+
apache_airflow_providers_hashicorp-3.6.2rc1.dist-info/METADATA,sha256=2vFTpB7yr44JYOXg36HzTzXvjzrc-_YroWbRcxr3fnw,5817
|
|
13
|
+
apache_airflow_providers_hashicorp-3.6.2rc1.dist-info/RECORD,,
|
|
File without changes
|