apache-airflow-providers-hashicorp 4.3.3rc1__py3-none-any.whl → 4.4.1rc1__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.
@@ -29,11 +29,11 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "4.3.3"
32
+ __version__ = "4.4.1"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
- "2.10.0"
35
+ "2.11.0"
36
36
  ):
37
37
  raise RuntimeError(
38
- f"The package `apache-airflow-providers-hashicorp:{__version__}` needs Apache Airflow 2.10.0+"
38
+ f"The package `apache-airflow-providers-hashicorp:{__version__}` needs Apache Airflow 2.11.0+"
39
39
  )
@@ -208,11 +208,12 @@ class VaultBackend(BaseSecretsBackend, LoggingMixin):
208
208
 
209
209
  return Connection(conn_id, **response)
210
210
 
211
- def get_variable(self, key: str) -> str | None:
211
+ def get_variable(self, key: str, team_name: str | None = None) -> str | None:
212
212
  """
213
213
  Get Airflow Variable.
214
214
 
215
215
  :param key: Variable Key
216
+ :param team_name: Team name associated to the task trying to access the variable (if any)
216
217
  :return: Variable Value retrieved from the vault
217
218
  """
218
219
  mount_point, variable_key = self._parse_path(key)
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-hashicorp
3
- Version: 4.3.3rc1
3
+ Version: 4.4.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>
7
7
  Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
8
8
  Requires-Python: >=3.10
9
9
  Description-Content-Type: text/x-rst
10
+ License-Expression: Apache-2.0
10
11
  Classifier: Development Status :: 5 - Production/Stable
11
12
  Classifier: Environment :: Console
12
13
  Classifier: Environment :: Web Environment
@@ -14,20 +15,21 @@ Classifier: Intended Audience :: Developers
14
15
  Classifier: Intended Audience :: System Administrators
15
16
  Classifier: Framework :: Apache Airflow
16
17
  Classifier: Framework :: Apache Airflow :: Provider
17
- Classifier: License :: OSI Approved :: Apache Software License
18
18
  Classifier: Programming Language :: Python :: 3.10
19
19
  Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: System :: Monitoring
23
- Requires-Dist: apache-airflow>=2.10.0rc1
23
+ License-File: LICENSE
24
+ License-File: NOTICE
25
+ Requires-Dist: apache-airflow>=2.11.0rc1
24
26
  Requires-Dist: apache-airflow-providers-common-compat>=1.8.0rc1
25
27
  Requires-Dist: hvac>=1.1.0
26
- Requires-Dist: boto3>=1.33.0 ; extra == "boto3"
28
+ Requires-Dist: boto3>=1.37.2 ; extra == "boto3"
27
29
  Requires-Dist: apache-airflow-providers-google ; extra == "google"
28
30
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
29
- Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/changelog.html
30
- Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3
31
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.4.1/changelog.html
32
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.4.1
31
33
  Project-URL: Mastodon, https://fosstodon.org/@airflow
32
34
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
33
35
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -60,7 +62,7 @@ Provides-Extra: google
60
62
 
61
63
  Package ``apache-airflow-providers-hashicorp``
62
64
 
63
- Release: ``4.3.3``
65
+ Release: ``4.4.1``
64
66
 
65
67
 
66
68
  Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
@@ -73,7 +75,7 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov
73
75
  are in ``airflow.providers.hashicorp`` python package.
74
76
 
75
77
  You can find package information and changelog for the provider
76
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/>`_.
78
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.4.1/>`_.
77
79
 
78
80
  Installation
79
81
  ------------
@@ -90,7 +92,7 @@ Requirements
90
92
  ========================================== ==================
91
93
  PIP package Version required
92
94
  ========================================== ==================
93
- ``apache-airflow`` ``>=2.10.0``
95
+ ``apache-airflow`` ``>=2.11.0``
94
96
  ``apache-airflow-providers-common-compat`` ``>=1.8.0``
95
97
  ``hvac`` ``>=1.1.0``
96
98
  ========================================== ==================
@@ -121,10 +123,10 @@ Optional dependencies
121
123
  ========== ===================================
122
124
  Extra Dependencies
123
125
  ========== ===================================
124
- ``boto3`` ``boto3>=1.33.0``
126
+ ``boto3`` ``boto3>=1.37.2``
125
127
  ``google`` ``apache-airflow-providers-google``
126
128
  ========== ===================================
127
129
 
128
130
  The changelog for the provider package can be found in the
129
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/changelog.html>`_.
131
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.4.1/changelog.html>`_.
130
132
 
@@ -1,5 +1,4 @@
1
- airflow/providers/hashicorp/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/hashicorp/__init__.py,sha256=S6-Lf-NCxMqVPiZU-ieMUWXJ1QOhYXw-pW4Jgt3xFek,1498
1
+ airflow/providers/hashicorp/__init__.py,sha256=75AUU4VIJdK9VexBc4J-qV_MQQmS1k3AQwH2MHghxLY,1498
3
2
  airflow/providers/hashicorp/get_provider_info.py,sha256=AFQ7VdRDobAK4-p5A0R9kv4vseR3xtxm7HASrLHThG8,2038
4
3
  airflow/providers/hashicorp/version_compat.py,sha256=NMlSRFNSPBEq8-HTJEeIest-4a3o1kxJEIR3Wv69yBE,1285
5
4
  airflow/providers/hashicorp/_internal_client/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
@@ -7,8 +6,10 @@ airflow/providers/hashicorp/_internal_client/vault_client.py,sha256=9kcavdjUL_SL
7
6
  airflow/providers/hashicorp/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
8
7
  airflow/providers/hashicorp/hooks/vault.py,sha256=xwSg_zM-mCSwqQR64U3wm3_jqKPttx04Ze_OjCTYM5s,18089
9
8
  airflow/providers/hashicorp/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
10
- airflow/providers/hashicorp/secrets/vault.py,sha256=GqiIIbA4dedrr1yHv1q0eVpqT5u9TL8oUynL76tYurQ,11378
11
- apache_airflow_providers_hashicorp-4.3.3rc1.dist-info/entry_points.txt,sha256=M338G3KvFSRu5IqEFm5Qheg_myVuQbsN_2EbAwcgqk4,105
12
- apache_airflow_providers_hashicorp-4.3.3rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
13
- apache_airflow_providers_hashicorp-4.3.3rc1.dist-info/METADATA,sha256=mfUdwAih3qAfdWYyCNzrVZ099CNkBwq-gyGTwkm5700,5841
14
- apache_airflow_providers_hashicorp-4.3.3rc1.dist-info/RECORD,,
9
+ airflow/providers/hashicorp/secrets/vault.py,sha256=k7jJZoMlTluKseWB3mBARtRq27hUhLzwbHRaiLAueTg,11506
10
+ apache_airflow_providers_hashicorp-4.4.1rc1.dist-info/entry_points.txt,sha256=M338G3KvFSRu5IqEFm5Qheg_myVuQbsN_2EbAwcgqk4,105
11
+ apache_airflow_providers_hashicorp-4.4.1rc1.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
12
+ apache_airflow_providers_hashicorp-4.4.1rc1.dist-info/licenses/NOTICE,sha256=E3-_E02gwwSEFzeeWPKmnIjOoos3hW28CLISV6sYrbQ,168
13
+ apache_airflow_providers_hashicorp-4.4.1rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
14
+ apache_airflow_providers_hashicorp-4.4.1rc1.dist-info/METADATA,sha256=i6HwByOkegZBlzUdfwMI7K2zsQBtruosdYFgRHGDmw0,5852
15
+ apache_airflow_providers_hashicorp-4.4.1rc1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Apache Airflow
2
+ Copyright 2016-2025 The Apache Software Foundation
3
+
4
+ This product includes software developed at
5
+ The Apache Software Foundation (http://www.apache.org/).