apache-airflow-providers-hashicorp 4.3.2rc1__tar.gz → 4.3.3rc1__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.
Files changed (37) hide show
  1. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/PKG-INFO +32 -20
  2. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/README.rst +28 -17
  3. apache_airflow_providers_hashicorp-4.3.3rc1/docs/.latest-doc-only-change.txt +1 -0
  4. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/changelog.rst +21 -0
  5. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/index.rst +18 -18
  6. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/secrets-backends/hashicorp-vault.rst +1 -1
  7. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/provider.yaml +2 -1
  8. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/pyproject.toml +6 -4
  9. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/__init__.py +1 -1
  10. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/hooks/vault.py +1 -1
  11. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/version_compat.py +1 -6
  12. apache_airflow_providers_hashicorp-4.3.2rc1/docs/.latest-doc-only-change.txt +0 -1
  13. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/commits.rst +0 -0
  14. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/conf.py +0 -0
  15. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/connections/vault.rst +0 -0
  16. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/installing-providers-from-sources.rst +0 -0
  17. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/integration-logos/Hashicorp-Vault.png +0 -0
  18. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/redirects.txt +0 -0
  19. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/docs/security.rst +0 -0
  20. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/__init__.py +0 -0
  21. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/__init__.py +0 -0
  22. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/LICENSE +0 -0
  23. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/_internal_client/__init__.py +0 -0
  24. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/_internal_client/vault_client.py +0 -0
  25. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/get_provider_info.py +0 -0
  26. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/hooks/__init__.py +0 -0
  27. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/secrets/__init__.py +0 -0
  28. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/src/airflow/providers/hashicorp/secrets/vault.py +0 -0
  29. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/conftest.py +0 -0
  30. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/__init__.py +0 -0
  31. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/hashicorp/__init__.py +0 -0
  32. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/hashicorp/_internal_client/__init__.py +0 -0
  33. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/hashicorp/_internal_client/test_vault_client.py +0 -0
  34. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/hashicorp/hooks/__init__.py +0 -0
  35. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/hashicorp/hooks/test_vault.py +0 -0
  36. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/hashicorp/secrets/__init__.py +0 -0
  37. {apache_airflow_providers_hashicorp-4.3.2rc1 → apache_airflow_providers_hashicorp-4.3.3rc1}/tests/unit/hashicorp/secrets/test_vault.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-hashicorp
3
- Version: 4.3.2rc1
3
+ Version: 4.3.3rc1
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,12 +21,13 @@ Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: System :: Monitoring
23
23
  Requires-Dist: apache-airflow>=2.10.0rc1
24
+ Requires-Dist: apache-airflow-providers-common-compat>=1.8.0rc1
24
25
  Requires-Dist: hvac>=1.1.0
25
26
  Requires-Dist: boto3>=1.33.0 ; extra == "boto3"
26
27
  Requires-Dist: apache-airflow-providers-google ; extra == "google"
27
28
  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.3.2/changelog.html
29
- Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.2
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
30
31
  Project-URL: Mastodon, https://fosstodon.org/@airflow
31
32
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
33
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -59,9 +60,8 @@ Provides-Extra: google
59
60
 
60
61
  Package ``apache-airflow-providers-hashicorp``
61
62
 
62
- Release: ``4.3.2``
63
+ Release: ``4.3.3``
63
64
 
64
- Release Date: ``|PypiReleaseDate|``
65
65
 
66
66
  Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
67
67
 
@@ -73,12 +73,12 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov
73
73
  are in ``airflow.providers.hashicorp`` python package.
74
74
 
75
75
  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.2/>`_.
76
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/>`_.
77
77
 
78
78
  Installation
79
79
  ------------
80
80
 
81
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
81
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
82
82
  for the minimum Airflow version supported) via
83
83
  ``pip install apache-airflow-providers-hashicorp``
84
84
 
@@ -87,12 +87,13 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
87
87
  Requirements
88
88
  ------------
89
89
 
90
- ================== ==================
91
- PIP package Version required
92
- ================== ==================
93
- ``apache-airflow`` ``>=2.10.0``
94
- ``hvac`` ``>=1.1.0``
95
- ================== ==================
90
+ ========================================== ==================
91
+ PIP package Version required
92
+ ========================================== ==================
93
+ ``apache-airflow`` ``>=2.10.0``
94
+ ``apache-airflow-providers-common-compat`` ``>=1.8.0``
95
+ ``hvac`` ``>=1.1.0``
96
+ ========================================== ==================
96
97
 
97
98
  Cross provider package dependencies
98
99
  -----------------------------------
@@ -104,15 +105,26 @@ You can install such cross-provider dependencies when installing from PyPI. For
104
105
 
105
106
  .. code-block:: bash
106
107
 
107
- pip install apache-airflow-providers-hashicorp[google]
108
+ pip install apache-airflow-providers-hashicorp[common.compat]
108
109
 
109
110
 
110
- ==================================================================================================== ==========
111
- Dependent package Extra
112
- ==================================================================================================== ==========
113
- `apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google``
114
- ==================================================================================================== ==========
111
+ ================================================================================================================== =================
112
+ Dependent package Extra
113
+ ================================================================================================================== =================
114
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
115
+ `apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google``
116
+ ================================================================================================================== =================
117
+
118
+ Optional dependencies
119
+ ----------------------
120
+
121
+ ========== ===================================
122
+ Extra Dependencies
123
+ ========== ===================================
124
+ ``boto3`` ``boto3>=1.33.0``
125
+ ``google`` ``apache-airflow-providers-google``
126
+ ========== ===================================
115
127
 
116
128
  The changelog for the provider package can be found in the
117
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.2/changelog.html>`_.
129
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/changelog.html>`_.
118
130
 
@@ -23,9 +23,8 @@
23
23
 
24
24
  Package ``apache-airflow-providers-hashicorp``
25
25
 
26
- Release: ``4.3.2``
26
+ Release: ``4.3.3``
27
27
 
28
- Release Date: ``|PypiReleaseDate|``
29
28
 
30
29
  Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
31
30
 
@@ -37,12 +36,12 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov
37
36
  are in ``airflow.providers.hashicorp`` python package.
38
37
 
39
38
  You can find package information and changelog for the provider
40
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.2/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/>`_.
41
40
 
42
41
  Installation
43
42
  ------------
44
43
 
45
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
44
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
46
45
  for the minimum Airflow version supported) via
47
46
  ``pip install apache-airflow-providers-hashicorp``
48
47
 
@@ -51,12 +50,13 @@ The package supports the following python versions: 3.10,3.11,3.12,3.13
51
50
  Requirements
52
51
  ------------
53
52
 
54
- ================== ==================
55
- PIP package Version required
56
- ================== ==================
57
- ``apache-airflow`` ``>=2.10.0``
58
- ``hvac`` ``>=1.1.0``
59
- ================== ==================
53
+ ========================================== ==================
54
+ PIP package Version required
55
+ ========================================== ==================
56
+ ``apache-airflow`` ``>=2.10.0``
57
+ ``apache-airflow-providers-common-compat`` ``>=1.8.0``
58
+ ``hvac`` ``>=1.1.0``
59
+ ========================================== ==================
60
60
 
61
61
  Cross provider package dependencies
62
62
  -----------------------------------
@@ -68,14 +68,25 @@ You can install such cross-provider dependencies when installing from PyPI. For
68
68
 
69
69
  .. code-block:: bash
70
70
 
71
- pip install apache-airflow-providers-hashicorp[google]
71
+ pip install apache-airflow-providers-hashicorp[common.compat]
72
72
 
73
73
 
74
- ==================================================================================================== ==========
75
- Dependent package Extra
76
- ==================================================================================================== ==========
77
- `apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google``
78
- ==================================================================================================== ==========
74
+ ================================================================================================================== =================
75
+ Dependent package Extra
76
+ ================================================================================================================== =================
77
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
78
+ `apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google``
79
+ ================================================================================================================== =================
80
+
81
+ Optional dependencies
82
+ ----------------------
83
+
84
+ ========== ===================================
85
+ Extra Dependencies
86
+ ========== ===================================
87
+ ``boto3`` ``boto3>=1.33.0``
88
+ ``google`` ``apache-airflow-providers-google``
89
+ ========== ===================================
79
90
 
80
91
  The changelog for the provider package can be found in the
81
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.2/changelog.html>`_.
92
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/changelog.html>`_.
@@ -0,0 +1 @@
1
+ 05960ac2ebb1fd9a74f3135e5e8fe5e28160d4b2
@@ -27,6 +27,27 @@
27
27
  Changelog
28
28
  ---------
29
29
 
30
+ 4.3.3
31
+ .....
32
+
33
+ Misc
34
+ ~~~~
35
+
36
+ * ``Migrate hashicorp provider to common.compat (#57015)``
37
+
38
+ Doc-only
39
+ ~~~~~~~~
40
+
41
+ * ``Remove placeholder Release Date in changelog and index files (#56056)``
42
+
43
+ .. Below changes are excluded from the changelog. Move them to
44
+ appropriate section above if needed. Do not delete the lines(!):
45
+ * ``Prepare release for Sep 2025 2nd wave of providers (#55688)``
46
+ * ``Prepare release for Sep 2025 1st wave of providers (#55203)``
47
+ * ``Fix Airflow 2 reference in README/index of providers (#55240)``
48
+ * ``Make term Dag consistent in providers docs (#55101)``
49
+ * ``Switch pre-commit to prek (#54258)``
50
+
30
51
  4.3.2
31
52
  .....
32
53
 
@@ -69,9 +69,7 @@ apache-airflow-providers-hashicorp package
69
69
  Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
70
70
 
71
71
 
72
- Release: 4.3.2
73
-
74
- Release Date: ``|PypiReleaseDate|``
72
+ Release: 4.3.3
75
73
 
76
74
  Provider package
77
75
  ----------------
@@ -82,7 +80,7 @@ All classes for this package are included in the ``airflow.providers.hashicorp``
82
80
  Installation
83
81
  ------------
84
82
 
85
- You can install this package on top of an existing Airflow 2 installation via
83
+ You can install this package on top of an existing Airflow installation via
86
84
  ``pip install apache-airflow-providers-hashicorp``.
87
85
  For the minimum Airflow version supported, see ``Requirements`` below.
88
86
 
@@ -91,12 +89,13 @@ Requirements
91
89
 
92
90
  The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``.
93
91
 
94
- ================== ==================
95
- PIP package Version required
96
- ================== ==================
97
- ``apache-airflow`` ``>=2.10.0``
98
- ``hvac`` ``>=1.1.0``
99
- ================== ==================
92
+ ========================================== ==================
93
+ PIP package Version required
94
+ ========================================== ==================
95
+ ``apache-airflow`` ``>=2.10.0``
96
+ ``apache-airflow-providers-common-compat`` ``>=1.8.0``
97
+ ``hvac`` ``>=1.1.0``
98
+ ========================================== ==================
100
99
 
101
100
  Cross provider package dependencies
102
101
  -----------------------------------
@@ -108,14 +107,15 @@ You can install such cross-provider dependencies when installing from PyPI. For
108
107
 
109
108
  .. code-block:: bash
110
109
 
111
- pip install apache-airflow-providers-hashicorp[google]
110
+ pip install apache-airflow-providers-hashicorp[common.compat]
112
111
 
113
112
 
114
- ==================================================================================================== ==========
115
- Dependent package Extra
116
- ==================================================================================================== ==========
117
- `apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google``
118
- ==================================================================================================== ==========
113
+ ================================================================================================================== =================
114
+ Dependent package Extra
115
+ ================================================================================================================== =================
116
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
117
+ `apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google``
118
+ ================================================================================================================== =================
119
119
 
120
120
  Downloading official packages
121
121
  -----------------------------
@@ -123,5 +123,5 @@ Downloading official packages
123
123
  You can download officially released packages and verify their checksums and signatures from the
124
124
  `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
125
125
 
126
- * `The apache-airflow-providers-hashicorp 4.3.2 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.2.tar.gz.sha512>`__)
127
- * `The apache-airflow-providers-hashicorp 4.3.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.2-py3-none-any.whl.sha512>`__)
126
+ * `The apache-airflow-providers-hashicorp 4.3.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.3.tar.gz.sha512>`__)
127
+ * `The apache-airflow-providers-hashicorp 4.3.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.3-py3-none-any.whl.sha512>`__)
@@ -235,7 +235,7 @@ Using multiple mount points
235
235
 
236
236
  You can use multiple mount points to store your secrets. For example, you might want to store the Airflow instance configurations
237
237
  in one Vault KV engine only accessible by your Airflow deployment tools, while storing the variables and connections in another KV engine
238
- available to your DAGs, in order to grant them more specific Vault ACLs.
238
+ available to your Dags, in order to grant them more specific Vault ACLs.
239
239
 
240
240
  In order to do this, you will need to setup you configuration this way:
241
241
 
@@ -22,12 +22,13 @@ description: |
22
22
  Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
23
23
 
24
24
  state: ready
25
- source-date-epoch: 1753691391
25
+ source-date-epoch: 1761116950
26
26
  # Note that those versions are maintained by release manager - do not update them manually
27
27
  # with the exception of case where other provider in sources has >= new provider version.
28
28
  # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have
29
29
  # to be done in the same PR
30
30
  versions:
31
+ - 4.3.3
31
32
  - 4.3.2
32
33
  - 4.3.1
33
34
  - 4.3.0
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
25
25
 
26
26
  [project]
27
27
  name = "apache-airflow-providers-hashicorp"
28
- version = "4.3.2rc1"
28
+ version = "4.3.3rc1"
29
29
  description = "Provider package apache-airflow-providers-hashicorp for Apache Airflow"
30
30
  readme = "README.rst"
31
31
  authors = [
@@ -54,10 +54,11 @@ requires-python = ">=3.10"
54
54
 
55
55
  # The dependencies should be modified in place in the generated file.
56
56
  # Any change in the dependencies is preserved when the file is regenerated
57
- # Make sure to run ``breeze static-checks --type update-providers-dependencies --all-files``
57
+ # Make sure to run ``prek update-providers-dependencies --all-files``
58
58
  # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
59
59
  dependencies = [
60
60
  "apache-airflow>=2.10.0rc1",
61
+ "apache-airflow-providers-common-compat>=1.8.0rc1",
61
62
  "hvac>=1.1.0",
62
63
  ]
63
64
 
@@ -77,6 +78,7 @@ dev = [
77
78
  "apache-airflow",
78
79
  "apache-airflow-task-sdk",
79
80
  "apache-airflow-devel-common",
81
+ "apache-airflow-providers-common-compat",
80
82
  "apache-airflow-providers-google",
81
83
  # Additional devel dependencies (do not remove this line and add extra development dependencies)
82
84
  ]
@@ -107,8 +109,8 @@ apache-airflow-providers-common-sql = {workspace = true}
107
109
  apache-airflow-providers-standard = {workspace = true}
108
110
 
109
111
  [project.urls]
110
- "Documentation" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.2"
111
- "Changelog" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.2/changelog.html"
112
+ "Documentation" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3"
113
+ "Changelog" = "https://airflow.staged.apache.org/docs/apache-airflow-providers-hashicorp/4.3.3/changelog.html"
112
114
  "Bug Tracker" = "https://github.com/apache/airflow/issues"
113
115
  "Source Code" = "https://github.com/apache/airflow"
114
116
  "Slack Chat" = "https://s.apache.org/airflow-slack"
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "4.3.2"
32
+ __version__ = "4.3.3"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.10.0"
@@ -23,12 +23,12 @@ from typing import TYPE_CHECKING, Any
23
23
 
24
24
  from hvac.exceptions import VaultError
25
25
 
26
+ from airflow.providers.common.compat.sdk import BaseHook
26
27
  from airflow.providers.hashicorp._internal_client.vault_client import (
27
28
  DEFAULT_KUBERNETES_JWT_PATH,
28
29
  DEFAULT_KV_ENGINE_VERSION,
29
30
  _VaultClient,
30
31
  )
31
- from airflow.providers.hashicorp.version_compat import BaseHook
32
32
  from airflow.utils.helpers import merge_dicts
33
33
 
34
34
  if TYPE_CHECKING:
@@ -30,9 +30,4 @@ def get_base_airflow_version_tuple() -> tuple[int, int, int]:
30
30
  AIRFLOW_V_3_0_PLUS = get_base_airflow_version_tuple() >= (3, 0, 0)
31
31
  AIRFLOW_V_3_1_PLUS: bool = get_base_airflow_version_tuple() >= (3, 1, 0)
32
32
 
33
- if AIRFLOW_V_3_1_PLUS:
34
- from airflow.sdk import BaseHook
35
- else:
36
- from airflow.hooks.base import BaseHook # type: ignore[attr-defined,no-redef]
37
-
38
- __all__ = ["BaseHook"]
33
+ __all__ = ["AIRFLOW_V_3_0_PLUS", "AIRFLOW_V_3_1_PLUS"]
@@ -1 +0,0 @@
1
- 7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f