apache-airflow-providers-fab 1.1.0rc1__py3-none-any.whl → 1.1.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/fab/__init__.py +3 -6
- airflow/providers/fab/auth_manager/fab_auth_manager.py +1 -4
- airflow/providers/fab/get_provider_info.py +3 -2
- {apache_airflow_providers_fab-1.1.0rc1.dist-info → apache_airflow_providers_fab-1.1.1.dist-info}/METADATA +9 -7
- {apache_airflow_providers_fab-1.1.0rc1.dist-info → apache_airflow_providers_fab-1.1.1.dist-info}/RECORD +7 -7
- {apache_airflow_providers_fab-1.1.0rc1.dist-info → apache_airflow_providers_fab-1.1.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_fab-1.1.0rc1.dist-info → apache_airflow_providers_fab-1.1.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__ = "1.1.1"
|
36
33
|
|
37
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
38
35
|
"2.9.0"
|
@@ -272,10 +272,7 @@ class FabAuthManager(BaseAuthManager):
|
|
272
272
|
):
|
273
273
|
if not user:
|
274
274
|
user = self.get_user()
|
275
|
-
|
276
|
-
fab_action_name = get_fab_action_from_method_map()[method]
|
277
|
-
else:
|
278
|
-
fab_action_name = method
|
275
|
+
fab_action_name = get_fab_action_from_method_map().get(method, method)
|
279
276
|
return (fab_action_name, resource_name) in self._get_user_permissions(user)
|
280
277
|
|
281
278
|
@provide_session
|
@@ -28,14 +28,15 @@ def get_provider_info():
|
|
28
28
|
"name": "Fab",
|
29
29
|
"description": "`Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__\n",
|
30
30
|
"state": "ready",
|
31
|
-
"source-date-epoch":
|
32
|
-
"versions": ["1.1.0", "1.0.4", "1.0.3", "1.0.2", "1.0.1", "1.0.0"],
|
31
|
+
"source-date-epoch": 1716287750,
|
32
|
+
"versions": ["1.1.1", "1.1.0", "1.0.4", "1.0.3", "1.0.2", "1.0.1", "1.0.0"],
|
33
33
|
"dependencies": [
|
34
34
|
"apache-airflow>=2.9.0",
|
35
35
|
"flask>=2.2,<2.3",
|
36
36
|
"flask-appbuilder==4.4.1",
|
37
37
|
"flask-login>=0.6.2",
|
38
38
|
"google-re2>=1.0",
|
39
|
+
"jmespath",
|
39
40
|
],
|
40
41
|
"config": {
|
41
42
|
"fab": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: apache-airflow-providers-fab
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.1
|
4
4
|
Summary: Provider package apache-airflow-providers-fab for Apache Airflow
|
5
5
|
Keywords: airflow-provider,fab,airflow,integration
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
@@ -21,14 +21,15 @@ 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.9.
|
24
|
+
Requires-Dist: apache-airflow>=2.9.0
|
25
25
|
Requires-Dist: flask-appbuilder==4.4.1
|
26
26
|
Requires-Dist: flask-login>=0.6.2
|
27
27
|
Requires-Dist: flask>=2.2,<2.3
|
28
28
|
Requires-Dist: google-re2>=1.0
|
29
|
+
Requires-Dist: jmespath
|
29
30
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
30
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.
|
31
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.1/changelog.html
|
32
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.1
|
32
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
33
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
34
35
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
@@ -78,7 +79,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
78
79
|
|
79
80
|
Package ``apache-airflow-providers-fab``
|
80
81
|
|
81
|
-
Release: ``1.1.
|
82
|
+
Release: ``1.1.1``
|
82
83
|
|
83
84
|
|
84
85
|
`Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__
|
@@ -91,7 +92,7 @@ This is a provider package for ``fab`` provider. All classes for this provider p
|
|
91
92
|
are in ``airflow.providers.fab`` python package.
|
92
93
|
|
93
94
|
You can find package information and changelog for the provider
|
94
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.
|
95
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.1/>`_.
|
95
96
|
|
96
97
|
Installation
|
97
98
|
------------
|
@@ -113,7 +114,8 @@ PIP package Version required
|
|
113
114
|
``flask-appbuilder`` ``==4.4.1``
|
114
115
|
``flask-login`` ``>=0.6.2``
|
115
116
|
``google-re2`` ``>=1.0``
|
117
|
+
``jmespath``
|
116
118
|
==================== ==================
|
117
119
|
|
118
120
|
The changelog for the provider package can be found in the
|
119
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.
|
121
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/1.1.1/changelog.html>`_.
|
@@ -1,8 +1,8 @@
|
|
1
1
|
airflow/providers/fab/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
2
|
-
airflow/providers/fab/__init__.py,sha256=
|
3
|
-
airflow/providers/fab/get_provider_info.py,sha256=
|
2
|
+
airflow/providers/fab/__init__.py,sha256=6B0Eqe9IKo8RaQmjpa7rNVaosH6z3C4qM1fvck4u2sM,1490
|
3
|
+
airflow/providers/fab/get_provider_info.py,sha256=beJeVL0exMWNCC-p6WggUA3G_jR-Xx014Z0G-8FvBoM,3004
|
4
4
|
airflow/providers/fab/auth_manager/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
-
airflow/providers/fab/auth_manager/fab_auth_manager.py,sha256=
|
5
|
+
airflow/providers/fab/auth_manager/fab_auth_manager.py,sha256=j_jAOd4iHPY5ZM6Uadi89zfYNndwlskPxBDSP14ieX4,19581
|
6
6
|
airflow/providers/fab/auth_manager/api/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
7
7
|
airflow/providers/fab/auth_manager/api/auth/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
8
8
|
airflow/providers/fab/auth_manager/api/auth/backend/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
@@ -32,7 +32,7 @@ airflow/providers/fab/auth_manager/views/roles_list.py,sha256=o_VqnLbQa4sisKxLwy
|
|
32
32
|
airflow/providers/fab/auth_manager/views/user.py,sha256=KaBWeBMy5j8o9qwe0RDHhtToO4aC6pH_m7N9IcIj1xM,5995
|
33
33
|
airflow/providers/fab/auth_manager/views/user_edit.py,sha256=d8wQ_8Rk8Ce95sCElZIXN7ATwbXrT2Tauqn5uTwuo2E,2140
|
34
34
|
airflow/providers/fab/auth_manager/views/user_stats.py,sha256=zP2eX6e40rpEohJcvnvri4Khu3Q4ULLxjz1zOWvOr8A,1300
|
35
|
-
apache_airflow_providers_fab-1.1.
|
36
|
-
apache_airflow_providers_fab-1.1.
|
37
|
-
apache_airflow_providers_fab-1.1.
|
38
|
-
apache_airflow_providers_fab-1.1.
|
35
|
+
apache_airflow_providers_fab-1.1.1.dist-info/entry_points.txt,sha256=m05kASp7vFi0ZmQ--CFp7GeJpPL7UT2RQF8EEP5XRX8,99
|
36
|
+
apache_airflow_providers_fab-1.1.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
37
|
+
apache_airflow_providers_fab-1.1.1.dist-info/METADATA,sha256=ls2qdx5pk3tKczVl0ugTDo-C0aUixfTjdybQsc-qv84,4984
|
38
|
+
apache_airflow_providers_fab-1.1.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|