apache-airflow-providers-hashicorp 4.2.0rc1__py3-none-any.whl → 4.3.0rc1__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,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "4.2.0"
32
+ __version__ = "4.3.0"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.10.0"
@@ -215,8 +215,10 @@ class _VaultClient(LoggingMixin):
215
215
  session = Session()
216
216
  session.mount("http://", adapter)
217
217
  session.mount("https://", adapter)
218
- if self.kwargs and "verify" in self.kwargs:
219
- session.verify = self.kwargs["verify"]
218
+
219
+ session.verify = self.kwargs.get("verify", session.verify)
220
+ session.cert = self.kwargs.get("cert", session.cert)
221
+ session.proxies = self.kwargs.get("proxies", session.proxies)
220
222
  self.kwargs["session"] = session
221
223
 
222
224
  _client = hvac.Client(url=self.url, **self.kwargs)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-hashicorp
3
- Version: 4.2.0rc1
3
+ Version: 4.3.0rc1
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>
@@ -25,8 +25,8 @@ 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.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.2.0/changelog.html
29
- Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.2.0
28
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.0/changelog.html
29
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.0
30
30
  Project-URL: Mastodon, https://fosstodon.org/@airflow
31
31
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
32
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -59,7 +59,7 @@ Provides-Extra: google
59
59
 
60
60
  Package ``apache-airflow-providers-hashicorp``
61
61
 
62
- Release: ``4.2.0``
62
+ Release: ``4.3.0``
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.2.0/>`_.
75
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.0/>`_.
76
76
 
77
77
  Installation
78
78
  ------------
@@ -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.2.0/changelog.html>`_.
116
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.0/changelog.html>`_.
117
117
 
@@ -1,13 +1,13 @@
1
1
  airflow/providers/hashicorp/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/hashicorp/__init__.py,sha256=YdDvcigYqLyv5byg5On6BhUJcGYBYYuSRt4XcBDhAKQ,1498
2
+ airflow/providers/hashicorp/__init__.py,sha256=K0ztj8UCaPmneYnujTPAC0J370BreCfw-bQqdCG1awI,1498
3
3
  airflow/providers/hashicorp/get_provider_info.py,sha256=AFQ7VdRDobAK4-p5A0R9kv4vseR3xtxm7HASrLHThG8,2038
4
4
  airflow/providers/hashicorp/_internal_client/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
- airflow/providers/hashicorp/_internal_client/vault_client.py,sha256=OMp5TDqv33WlnPcKKMtuCF-Mx-FDBLSndJZ0Ii7eecE,23012
5
+ airflow/providers/hashicorp/_internal_client/vault_client.py,sha256=MzPl1e54F1eJoZ2PEGU9t5EY6rAzySCpysoALzxYGP0,23112
6
6
  airflow/providers/hashicorp/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
7
7
  airflow/providers/hashicorp/hooks/vault.py,sha256=CUo8jUf0mwzLXrJI4EmrDAxehk5dtDljiU83E-xz8ag,18072
8
8
  airflow/providers/hashicorp/secrets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
9
9
  airflow/providers/hashicorp/secrets/vault.py,sha256=_7zhXwHZJZb5HqLq1PttcJUz2KshnTygsNx96sUVXD4,11553
10
- apache_airflow_providers_hashicorp-4.2.0rc1.dist-info/entry_points.txt,sha256=M338G3KvFSRu5IqEFm5Qheg_myVuQbsN_2EbAwcgqk4,105
11
- apache_airflow_providers_hashicorp-4.2.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
12
- apache_airflow_providers_hashicorp-4.2.0rc1.dist-info/METADATA,sha256=ro3I7kftuvJHmlnEkjfYeoxNjQKbuXvezYKE730I32c,5050
13
- apache_airflow_providers_hashicorp-4.2.0rc1.dist-info/RECORD,,
10
+ apache_airflow_providers_hashicorp-4.3.0rc1.dist-info/entry_points.txt,sha256=M338G3KvFSRu5IqEFm5Qheg_myVuQbsN_2EbAwcgqk4,105
11
+ apache_airflow_providers_hashicorp-4.3.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
12
+ apache_airflow_providers_hashicorp-4.3.0rc1.dist-info/METADATA,sha256=dAARRgOtkK1sH3KUKcehT3wlQBupbMioI_CsLiraa6Y,5050
13
+ apache_airflow_providers_hashicorp-4.3.0rc1.dist-info/RECORD,,