apache-airflow-providers-fab 2.3.0rc1__py3-none-any.whl → 2.3.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 +1 -1
- airflow/providers/fab/auth_manager/fab_auth_manager.py +9 -3
- airflow/providers/fab/auth_manager/security_manager/override.py +5 -2
- airflow/providers/fab/www/auth.py +18 -35
- airflow/providers/fab/www/extensions/init_jinja_globals.py +5 -2
- airflow/providers/fab/www/package-lock.json +199 -219
- airflow/providers/fab/www/package.json +7 -7
- airflow/providers/fab/www/utils.py +7 -2
- {apache_airflow_providers_fab-2.3.0rc1.dist-info → apache_airflow_providers_fab-2.3.1.dist-info}/METADATA +34 -33
- {apache_airflow_providers_fab-2.3.0rc1.dist-info → apache_airflow_providers_fab-2.3.1.dist-info}/RECORD +14 -14
- {apache_airflow_providers_fab-2.3.0rc1.dist-info → apache_airflow_providers_fab-2.3.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_fab-2.3.0rc1.dist-info → apache_airflow_providers_fab-2.3.1.dist-info}/entry_points.txt +0 -0
- {apache_airflow_providers_fab-2.3.0rc1.dist-info → apache_airflow_providers_fab-2.3.1.dist-info}/licenses/3rd-party-licenses/LICENSES-ui.txt +0 -0
- {apache_airflow_providers_fab-2.3.0rc1.dist-info → apache_airflow_providers_fab-2.3.1.dist-info}/licenses/NOTICE +0 -0
@@ -39,16 +39,16 @@
|
|
39
39
|
]
|
40
40
|
},
|
41
41
|
"devDependencies": {
|
42
|
-
"@babel/core": "^7.
|
43
|
-
"@babel/eslint-parser": "^7.
|
44
|
-
"@babel/plugin-transform-runtime": "^7.
|
45
|
-
"@babel/preset-env": "^7.
|
42
|
+
"@babel/core": "^7.28.0",
|
43
|
+
"@babel/eslint-parser": "^7.28.0",
|
44
|
+
"@babel/plugin-transform-runtime": "^7.28.0",
|
45
|
+
"@babel/preset-env": "^7.28.0",
|
46
46
|
"babel-loader": "^10.0.0",
|
47
47
|
"clean-webpack-plugin": "^4.0.0",
|
48
48
|
"copy-webpack-plugin": "^13.0.0",
|
49
49
|
"css-loader": "7.1.2",
|
50
50
|
"css-minimizer-webpack-plugin": "^7.0.2",
|
51
|
-
"eslint": "^9.
|
51
|
+
"eslint": "^9.30.1",
|
52
52
|
"eslint-config-prettier": "^10.1.5",
|
53
53
|
"eslint-plugin-html": "^8.1.3",
|
54
54
|
"eslint-plugin-import": "^2.32.0",
|
@@ -58,8 +58,8 @@
|
|
58
58
|
"mini-css-extract-plugin": "^2.9.2",
|
59
59
|
"moment": "^2.29.4",
|
60
60
|
"moment-locales-webpack-plugin": "^1.2.0",
|
61
|
-
"prettier": "^3.6.
|
62
|
-
"stylelint": "^16.21.
|
61
|
+
"prettier": "^3.6.2",
|
62
|
+
"stylelint": "^16.21.1",
|
63
63
|
"terser-webpack-plugin": "<6.0.0",
|
64
64
|
"url-loader": "4.1.1",
|
65
65
|
"webpack": "^5.99.9",
|
@@ -42,11 +42,16 @@ from airflow.utils import timezone
|
|
42
42
|
if TYPE_CHECKING:
|
43
43
|
from sqlalchemy.orm.session import Session
|
44
44
|
|
45
|
-
|
45
|
+
try:
|
46
|
+
from airflow.api_fastapi.auth.managers.base_auth_manager import ExtendedResourceMethod
|
47
|
+
except ImportError:
|
48
|
+
from airflow.api_fastapi.auth.managers.base_auth_manager import (
|
49
|
+
ResourceMethod as ExtendedResourceMethod,
|
50
|
+
)
|
46
51
|
from airflow.providers.fab.auth_manager.fab_auth_manager import FabAuthManager
|
47
52
|
|
48
53
|
# Convert methods to FAB action name
|
49
|
-
_MAP_METHOD_NAME_TO_FAB_ACTION_NAME: dict[
|
54
|
+
_MAP_METHOD_NAME_TO_FAB_ACTION_NAME: dict[ExtendedResourceMethod, str] = {
|
50
55
|
"POST": ACTION_CAN_CREATE,
|
51
56
|
"GET": ACTION_CAN_READ,
|
52
57
|
"PUT": ACTION_CAN_EDIT,
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: apache-airflow-providers-fab
|
3
|
-
Version: 2.3.
|
3
|
+
Version: 2.3.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>
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
8
|
-
Requires-Python:
|
8
|
+
Requires-Python: >=3.10,!=3.13
|
9
9
|
Description-Content-Type: text/x-rst
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: Environment :: Console
|
@@ -21,22 +21,22 @@ Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Topic :: System :: Monitoring
|
22
22
|
License-File: 3rd-party-licenses/LICENSES-ui.txt
|
23
23
|
License-File: NOTICE
|
24
|
-
Requires-Dist: apache-airflow>=3.0.
|
25
|
-
Requires-Dist: apache-airflow-providers-common-compat>=1.2.
|
26
|
-
Requires-Dist: blinker>=1.6.2
|
27
|
-
Requires-Dist: flask>=2.2.1,<2.3
|
28
|
-
Requires-Dist: flask-appbuilder==4.6.3
|
29
|
-
Requires-Dist: flask-login>=0.6.2
|
30
|
-
Requires-Dist: flask-session>=0.4.0,<0.6
|
31
|
-
Requires-Dist: flask-wtf>=1.1.0
|
32
|
-
Requires-Dist: connexion[flask]>=2.14.2,<3.0
|
33
|
-
Requires-Dist: jmespath>=0.7.0
|
34
|
-
Requires-Dist: werkzeug>=2.2,<4
|
35
|
-
Requires-Dist: wtforms>=3.0,<4
|
36
|
-
Requires-Dist: kerberos>=1.3.0 ; extra == "kerberos"
|
24
|
+
Requires-Dist: apache-airflow>=3.0.2
|
25
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.2.1
|
26
|
+
Requires-Dist: blinker>=1.6.2; python_version < '3.13'
|
27
|
+
Requires-Dist: flask>=2.2.1,<2.3; python_version < '3.13'
|
28
|
+
Requires-Dist: flask-appbuilder==4.6.3; python_version < '3.13'
|
29
|
+
Requires-Dist: flask-login>=0.6.2; python_version < '3.13'
|
30
|
+
Requires-Dist: flask-session>=0.4.0,<0.6; python_version < '3.13'
|
31
|
+
Requires-Dist: flask-wtf>=1.1.0; python_version < '3.13'
|
32
|
+
Requires-Dist: connexion[flask]>=2.14.2,<3.0; python_version < '3.13'
|
33
|
+
Requires-Dist: jmespath>=0.7.0; python_version < '3.13'
|
34
|
+
Requires-Dist: werkzeug>=2.2,<4; python_version < '3.13'
|
35
|
+
Requires-Dist: wtforms>=3.0,<4; python_version < '3.13'
|
36
|
+
Requires-Dist: kerberos>=1.3.0 ; extra == "kerberos" and ( python_version < '3.13')
|
37
37
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
38
|
-
Project-URL: Changelog, https://airflow.
|
39
|
-
Project-URL: Documentation, https://airflow.
|
38
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-fab/2.3.1/changelog.html
|
39
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-fab/2.3.1
|
40
40
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
41
41
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
42
42
|
Project-URL: Source Code, https://github.com/apache/airflow
|
@@ -68,8 +68,9 @@ Provides-Extra: kerberos
|
|
68
68
|
|
69
69
|
Package ``apache-airflow-providers-fab``
|
70
70
|
|
71
|
-
Release: ``2.3.
|
71
|
+
Release: ``2.3.1``
|
72
72
|
|
73
|
+
Release Date: ``|PypiReleaseDate|``
|
73
74
|
|
74
75
|
`Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__
|
75
76
|
|
@@ -81,7 +82,7 @@ This is a provider package for ``fab`` provider. All classes for this provider p
|
|
81
82
|
are in ``airflow.providers.fab`` python package.
|
82
83
|
|
83
84
|
You can find package information and changelog for the provider
|
84
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.3.
|
85
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.3.1/>`_.
|
85
86
|
|
86
87
|
Installation
|
87
88
|
------------
|
@@ -95,22 +96,22 @@ The package supports the following python versions: 3.10,3.11,3.12
|
|
95
96
|
Requirements
|
96
97
|
------------
|
97
98
|
|
98
|
-
==========================================
|
99
|
+
========================================== ==========================================
|
99
100
|
PIP package Version required
|
100
|
-
==========================================
|
101
|
+
========================================== ==========================================
|
101
102
|
``apache-airflow`` ``>=3.0.2``
|
102
103
|
``apache-airflow-providers-common-compat`` ``>=1.2.1``
|
103
|
-
``blinker`` ``>=1.6.2``
|
104
|
-
``flask`` ``>=2.2.1,<2.3``
|
105
|
-
``flask-appbuilder`` ``==4.6.3``
|
106
|
-
``flask-login`` ``>=0.6.2``
|
107
|
-
``flask-session`` ``>=0.4.0,<0.6``
|
108
|
-
``flask-wtf`` ``>=1.1.0``
|
109
|
-
``connexion[flask]`` ``>=2.14.2,<3.0``
|
110
|
-
``jmespath`` ``>=0.7.0``
|
111
|
-
``werkzeug`` ``>=2.2,<4``
|
112
|
-
``wtforms`` ``>=3.0,<4``
|
113
|
-
==========================================
|
104
|
+
``blinker`` ``>=1.6.2; python_version < "3.13"``
|
105
|
+
``flask`` ``>=2.2.1,<2.3; python_version < "3.13"``
|
106
|
+
``flask-appbuilder`` ``==4.6.3; python_version < "3.13"``
|
107
|
+
``flask-login`` ``>=0.6.2; python_version < "3.13"``
|
108
|
+
``flask-session`` ``>=0.4.0,<0.6; python_version < "3.13"``
|
109
|
+
``flask-wtf`` ``>=1.1.0; python_version < "3.13"``
|
110
|
+
``connexion[flask]`` ``>=2.14.2,<3.0; python_version < "3.13"``
|
111
|
+
``jmespath`` ``>=0.7.0; python_version < "3.13"``
|
112
|
+
``werkzeug`` ``>=2.2,<4; python_version < "3.13"``
|
113
|
+
``wtforms`` ``>=3.0,<4; python_version < "3.13"``
|
114
|
+
========================================== ==========================================
|
114
115
|
|
115
116
|
Cross provider package dependencies
|
116
117
|
-----------------------------------
|
@@ -132,5 +133,5 @@ Dependent package
|
|
132
133
|
================================================================================================================== =================
|
133
134
|
|
134
135
|
The changelog for the provider package can be found in the
|
135
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.3.
|
136
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.3.1/changelog.html>`_.
|
136
137
|
|
@@ -1,10 +1,10 @@
|
|
1
1
|
airflow/providers/fab/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
2
|
-
airflow/providers/fab/__init__.py,sha256=
|
2
|
+
airflow/providers/fab/__init__.py,sha256=rRM2hoib-Wyt6Cj0qyHQT6pRAs8tFSagFZ-SLyuulus,1490
|
3
3
|
airflow/providers/fab/alembic.ini,sha256=_1SvObfjMAkuD7DN5VR2S6Rd7_F81pORZT-w7GJldIA,4461
|
4
4
|
airflow/providers/fab/get_provider_info.py,sha256=7O205F5MMZZ2v7Z6jb-dqWfiUlHlMwDNWZ0ZSjIJCPU,9910
|
5
5
|
airflow/providers/fab/version_compat.py,sha256=1qJhqKH0Bi4HG-pJW6npWYkLx76DBuXP-6A-cgGe77Y,1536
|
6
6
|
airflow/providers/fab/auth_manager/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
7
|
-
airflow/providers/fab/auth_manager/fab_auth_manager.py,sha256=
|
7
|
+
airflow/providers/fab/auth_manager/fab_auth_manager.py,sha256=PVcXdqSgYGQ9Ia7D1ZlBxOZs5HNiAuP3e5t2NviutMg,25031
|
8
8
|
airflow/providers/fab/auth_manager/api/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
9
9
|
airflow/providers/fab/auth_manager/api/auth/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
10
10
|
airflow/providers/fab/auth_manager/api/auth/backend/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
@@ -40,7 +40,7 @@ airflow/providers/fab/auth_manager/schemas/role_and_permission_schema.py,sha256=
|
|
40
40
|
airflow/providers/fab/auth_manager/schemas/user_schema.py,sha256=MLnZotQqAg_BFvJunrSwbwur5CaTjk1ww3eCI3aPT6Y,2401
|
41
41
|
airflow/providers/fab/auth_manager/security_manager/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
42
42
|
airflow/providers/fab/auth_manager/security_manager/constants.py,sha256=x1Sjl_Mu3wmaSy3NFZlHxK2z-juzWmMs1SrzJ0aiBBQ,907
|
43
|
-
airflow/providers/fab/auth_manager/security_manager/override.py,sha256=
|
43
|
+
airflow/providers/fab/auth_manager/security_manager/override.py,sha256=U_Rc6nWRJ0Jh5uGKZY0I9byuxR9SlgkqhZD7sfxdmlk,98569
|
44
44
|
airflow/providers/fab/auth_manager/views/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
45
45
|
airflow/providers/fab/auth_manager/views/permissions.py,sha256=CT6jMCDHtirs0Qe4Penb6VwQq1yZeZ1lOLZITIlVqm4,2904
|
46
46
|
airflow/providers/fab/auth_manager/views/roles_list.py,sha256=DwJ1iOCfpbxsWTEFWjW5_Jo3fmrZwxj1rPeflTaSg7A,1512
|
@@ -56,14 +56,14 @@ airflow/providers/fab/migrations/versions/__init__.py,sha256=9hdXHABrVpkbpjZgUft
|
|
56
56
|
airflow/providers/fab/www/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
57
57
|
airflow/providers/fab/www/airflow_flask_app.py,sha256=-JPQ-mS1kKEj5adENnoVSD4LaFrh36l1THnVhFYF8d4,1057
|
58
58
|
airflow/providers/fab/www/app.py,sha256=fylYtrLAJ6gT0WCnchJ-qAfGu_4Tlayf8rVbjVUIahI,5011
|
59
|
-
airflow/providers/fab/www/auth.py,sha256=
|
59
|
+
airflow/providers/fab/www/auth.py,sha256=KfxXu5Gnawdukifnay9QRz46iOgMWIaKjHuYyp_aXKc,11881
|
60
60
|
airflow/providers/fab/www/constants.py,sha256=UaDdEt_JsqcMYAMn0s9VBvVTKnRoLrvc2Ii59iOg5iQ,1346
|
61
|
-
airflow/providers/fab/www/package-lock.json,sha256=
|
62
|
-
airflow/providers/fab/www/package.json,sha256=
|
61
|
+
airflow/providers/fab/www/package-lock.json,sha256=gdAGRV3R9sf5c9IJdNiNYw6vGi0O7WA0QdmQKvKUNKk,330907
|
62
|
+
airflow/providers/fab/www/package.json,sha256=IUHmlT4ZBJ17Un2tJHz0Iyt8FpHSYYz3ZFnEHVABVB4,2354
|
63
63
|
airflow/providers/fab/www/security_appless.py,sha256=J0OJGRPq6NK2vY6qfMRvyMUEc-E59vXucquQdjgsndY,1655
|
64
64
|
airflow/providers/fab/www/security_manager.py,sha256=7YCUYuQufEaxPNnIK5OUrdcx9Gmz4FNpy50rxCKisN4,4859
|
65
65
|
airflow/providers/fab/www/session.py,sha256=qyy8ipXLe4qH7D52tH3aKY6hyJNJ5tUfHel7_1S4BGg,1741
|
66
|
-
airflow/providers/fab/www/utils.py,sha256=
|
66
|
+
airflow/providers/fab/www/utils.py,sha256=iUJQww7Tkb5WJNrMW0y8tPoUhdgHQOoX0iY3wVyr3a0,10173
|
67
67
|
airflow/providers/fab/www/views.py,sha256=tVQ9PTcafyoTdMQ5mvmp0kjlVrkC6Zof4yfB9nlz8tE,4758
|
68
68
|
airflow/providers/fab/www/webpack.config.js,sha256=Mruz3274gaNjDslgk-xHODnPrYZmz8x-7wLYksN4piY,6262
|
69
69
|
airflow/providers/fab/www/api_connexion/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
@@ -73,7 +73,7 @@ airflow/providers/fab/www/api_connexion/security.py,sha256=_bzEgIr4r5VHYxHd0FgWz
|
|
73
73
|
airflow/providers/fab/www/api_connexion/types.py,sha256=h0qOz8C4-vE2-vvJyhULNL9xPsGAz3HVh_8ODiHvsmg,1092
|
74
74
|
airflow/providers/fab/www/extensions/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
75
75
|
airflow/providers/fab/www/extensions/init_appbuilder.py,sha256=ElsCbzUpPycQUtf3EZB__wbWSgYVye5Oq2dREUK2mmg,22358
|
76
|
-
airflow/providers/fab/www/extensions/init_jinja_globals.py,sha256=
|
76
|
+
airflow/providers/fab/www/extensions/init_jinja_globals.py,sha256=vSqaURrIeO4olKLqw1cTrJSMcFDWwGPVMtXfInwCVxA,2688
|
77
77
|
airflow/providers/fab/www/extensions/init_manifest_files.py,sha256=DLeAcH2zMGbT-eDLYdXztP7HJG7H-e1jmSTolimZeAI,2125
|
78
78
|
airflow/providers/fab/www/extensions/init_security.py,sha256=VghP4880gP5qQrF26SKW6O65Rc-DK5Tka5L31XQhgug,1556
|
79
79
|
airflow/providers/fab/www/extensions/init_session.py,sha256=y8zUVSngawNhkO4egEkhrQ_2v03wCeDjm8LUaNY0sZ8,2637
|
@@ -125,9 +125,9 @@ airflow/providers/fab/www/templates/appbuilder/index.html,sha256=ZaZsNdD8fCENqdn
|
|
125
125
|
airflow/providers/fab/www/templates/appbuilder/navbar.html,sha256=1Q8u90aONY_PKTBtApwyp0EeudSsJyysW2UYo9Fa1cc,10215
|
126
126
|
airflow/providers/fab/www/templates/appbuilder/navbar_menu.html,sha256=WWQ-_QLMqcW4Cpx_1_yulaQO-soD6ztnY2zfmBAUAGI,2034
|
127
127
|
airflow/providers/fab/www/templates/appbuilder/navbar_right.html,sha256=qrwZDBbzLi4yhLrfai842MJDdQ4C31Xz9hJ3NoG5mo0,2488
|
128
|
-
apache_airflow_providers_fab-2.3.
|
129
|
-
apache_airflow_providers_fab-2.3.
|
130
|
-
apache_airflow_providers_fab-2.3.
|
131
|
-
apache_airflow_providers_fab-2.3.
|
132
|
-
apache_airflow_providers_fab-2.3.
|
133
|
-
apache_airflow_providers_fab-2.3.
|
128
|
+
apache_airflow_providers_fab-2.3.1.dist-info/entry_points.txt,sha256=m05kASp7vFi0ZmQ--CFp7GeJpPL7UT2RQF8EEP5XRX8,99
|
129
|
+
apache_airflow_providers_fab-2.3.1.dist-info/licenses/3rd-party-licenses/LICENSES-ui.txt,sha256=C9vBr_KiUhI3jjCS754n_SPi-ylD8SiJgXlOWuNOO98,3688
|
130
|
+
apache_airflow_providers_fab-2.3.1.dist-info/licenses/NOTICE,sha256=GrKwLaFNGIn3J86ucRfNIExRSCD6-7nty84-84F2ad4,448
|
131
|
+
apache_airflow_providers_fab-2.3.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
132
|
+
apache_airflow_providers_fab-2.3.1.dist-info/METADATA,sha256=hM5bEri0qnWSugETsizYO8Q_qzy5XyLLeBZFXFYIWEM,6740
|
133
|
+
apache_airflow_providers_fab-2.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|