apache-airflow-providers-fab 2.3.1__py3-none-any.whl → 2.4.0__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 -0
- airflow/providers/fab/auth_manager/security_manager/override.py +4 -1
- airflow/providers/fab/www/app.py +6 -0
- airflow/providers/fab/www/package-lock.json +90 -149
- airflow/providers/fab/www/package.json +4 -4
- airflow/providers/fab/www/security/permissions.py +1 -0
- {apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/METADATA +6 -6
- {apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/RECORD +13 -13
- {apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/entry_points.txt +0 -0
- {apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/licenses/3rd-party-licenses/LICENSES-ui.txt +0 -0
- {apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/licenses/NOTICE +0 -0
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
29
29
|
|
30
30
|
__all__ = ["__version__"]
|
31
31
|
|
32
|
-
__version__ = "2.
|
32
|
+
__version__ = "2.4.0"
|
33
33
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
35
35
|
"3.0.2"
|
@@ -66,6 +66,7 @@ from airflow.providers.fab.auth_manager.cli_commands.definition import (
|
|
66
66
|
)
|
67
67
|
from airflow.providers.fab.auth_manager.models import Permission, Role, User
|
68
68
|
from airflow.providers.fab.auth_manager.models.anonymous_user import AnonymousUser
|
69
|
+
from airflow.providers.fab.version_compat import AIRFLOW_V_3_1_PLUS
|
69
70
|
from airflow.providers.fab.www.app import create_app
|
70
71
|
from airflow.providers.fab.www.constants import SWAGGER_BUNDLE, SWAGGER_ENABLED
|
71
72
|
from airflow.providers.fab.www.extensions.init_views import (
|
@@ -158,6 +159,7 @@ _MAP_ACCESS_VIEW_TO_FAB_RESOURCE_TYPE = {
|
|
158
159
|
_MAP_MENU_ITEM_TO_FAB_RESOURCE_TYPE = {
|
159
160
|
MenuItem.ASSETS: RESOURCE_ASSET,
|
160
161
|
MenuItem.AUDIT_LOG: RESOURCE_AUDIT_LOG,
|
162
|
+
MenuItem.CONFIG: RESOURCE_CONFIG,
|
161
163
|
MenuItem.CONNECTIONS: RESOURCE_CONNECTION,
|
162
164
|
MenuItem.DAGS: RESOURCE_DAG,
|
163
165
|
MenuItem.DOCS: RESOURCE_DOCS,
|
@@ -169,6 +171,13 @@ _MAP_MENU_ITEM_TO_FAB_RESOURCE_TYPE = {
|
|
169
171
|
}
|
170
172
|
|
171
173
|
|
174
|
+
if AIRFLOW_V_3_1_PLUS:
|
175
|
+
from airflow.providers.fab.www.security.permissions import RESOURCE_HITL_DETAIL
|
176
|
+
|
177
|
+
_MAP_MENU_ITEM_TO_FAB_RESOURCE_TYPE[MenuItem.REQUIRED_ACTIONS] = RESOURCE_HITL_DETAIL
|
178
|
+
_MAP_DAG_ACCESS_ENTITY_TO_FAB_RESOURCE_TYPE[DagAccessEntity.HITL_DETAIL] = (RESOURCE_HITL_DETAIL,)
|
179
|
+
|
180
|
+
|
172
181
|
class FabAuthManager(BaseAuthManager[User]):
|
173
182
|
"""
|
174
183
|
Flask-AppBuilder auth manager.
|
@@ -222,7 +222,6 @@ class FabAirflowSecurityManagerOverride(AirflowSecurityManagerV2):
|
|
222
222
|
(permissions.ACTION_CAN_READ, RESOURCE_ASSET_ALIAS),
|
223
223
|
(permissions.ACTION_CAN_READ, RESOURCE_BACKFILL),
|
224
224
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_CLUSTER_ACTIVITY),
|
225
|
-
(permissions.ACTION_CAN_READ, permissions.RESOURCE_CONFIG),
|
226
225
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_POOL),
|
227
226
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_IMPORT_ERROR),
|
228
227
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_JOB),
|
@@ -234,6 +233,7 @@ class FabAirflowSecurityManagerOverride(AirflowSecurityManagerV2):
|
|
234
233
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_TASK_INSTANCE),
|
235
234
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_TASK_LOG),
|
236
235
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_XCOM),
|
236
|
+
(permissions.ACTION_CAN_READ, permissions.RESOURCE_HITL_DETAIL),
|
237
237
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_WEBSITE),
|
238
238
|
(permissions.ACTION_CAN_ACCESS_MENU, permissions.RESOURCE_BROWSE_MENU),
|
239
239
|
(permissions.ACTION_CAN_ACCESS_MENU, permissions.RESOURCE_DAG),
|
@@ -259,6 +259,7 @@ class FabAirflowSecurityManagerOverride(AirflowSecurityManagerV2):
|
|
259
259
|
(permissions.ACTION_CAN_CREATE, permissions.RESOURCE_DAG_RUN),
|
260
260
|
(permissions.ACTION_CAN_EDIT, permissions.RESOURCE_DAG_RUN),
|
261
261
|
(permissions.ACTION_CAN_DELETE, permissions.RESOURCE_DAG_RUN),
|
262
|
+
(permissions.ACTION_CAN_EDIT, permissions.RESOURCE_HITL_DETAIL),
|
262
263
|
(permissions.ACTION_CAN_CREATE, RESOURCE_ASSET),
|
263
264
|
]
|
264
265
|
# [END security_user_perms]
|
@@ -273,6 +274,8 @@ class FabAirflowSecurityManagerOverride(AirflowSecurityManagerV2):
|
|
273
274
|
(permissions.ACTION_CAN_ACCESS_MENU, permissions.RESOURCE_VARIABLE),
|
274
275
|
(permissions.ACTION_CAN_ACCESS_MENU, permissions.RESOURCE_PROVIDER),
|
275
276
|
(permissions.ACTION_CAN_ACCESS_MENU, permissions.RESOURCE_XCOM),
|
277
|
+
(permissions.ACTION_CAN_ACCESS_MENU, permissions.RESOURCE_HITL_DETAIL),
|
278
|
+
(permissions.ACTION_CAN_READ, permissions.RESOURCE_CONFIG),
|
276
279
|
(permissions.ACTION_CAN_CREATE, permissions.RESOURCE_CONNECTION),
|
277
280
|
(permissions.ACTION_CAN_READ, permissions.RESOURCE_CONNECTION),
|
278
281
|
(permissions.ACTION_CAN_EDIT, permissions.RESOURCE_CONNECTION),
|
airflow/providers/fab/www/app.py
CHANGED
@@ -61,6 +61,12 @@ def create_app(enable_plugins: bool):
|
|
61
61
|
flask_app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
|
62
62
|
flask_app.config["PERMANENT_SESSION_LIFETIME"] = timedelta(minutes=get_session_lifetime_config())
|
63
63
|
|
64
|
+
flask_app.config["SESSION_COOKIE_HTTPONLY"] = True
|
65
|
+
if conf.has_option("fab", "COOKIE_SECURE"):
|
66
|
+
flask_app.config["SESSION_COOKIE_SECURE"] = conf.getboolean("fab", "COOKIE_SECURE")
|
67
|
+
if conf.has_option("fab", "COOKIE_SAMESITE"):
|
68
|
+
flask_app.config["SESSION_COOKIE_SAMESITE"] = conf.get("fab", "COOKIE_SAMESITE")
|
69
|
+
|
64
70
|
webserver_config = conf.get_mandatory_value("fab", "config_file")
|
65
71
|
# Enable customizations in webserver_config.py to be applied via Flask.current_app.
|
66
72
|
with flask_app.app_context():
|
@@ -22,8 +22,8 @@
|
|
22
22
|
"copy-webpack-plugin": "^13.0.0",
|
23
23
|
"css-loader": "7.1.2",
|
24
24
|
"css-minimizer-webpack-plugin": "^7.0.2",
|
25
|
-
"eslint": "^9.
|
26
|
-
"eslint-config-prettier": "^10.1.
|
25
|
+
"eslint": "^9.32.0",
|
26
|
+
"eslint-config-prettier": "^10.1.8",
|
27
27
|
"eslint-plugin-html": "^8.1.3",
|
28
28
|
"eslint-plugin-import": "^2.32.0",
|
29
29
|
"eslint-plugin-node": "^11.1.0",
|
@@ -33,10 +33,10 @@
|
|
33
33
|
"moment": "^2.29.4",
|
34
34
|
"moment-locales-webpack-plugin": "^1.2.0",
|
35
35
|
"prettier": "^3.6.2",
|
36
|
-
"stylelint": "^16.
|
36
|
+
"stylelint": "^16.23.0",
|
37
37
|
"terser-webpack-plugin": "<6.0.0",
|
38
38
|
"url-loader": "4.1.1",
|
39
|
-
"webpack": "^5.
|
39
|
+
"webpack": "^5.101.0",
|
40
40
|
"webpack-cli": "^6.0.1",
|
41
41
|
"webpack-license-plugin": "^4.2.1",
|
42
42
|
"webpack-manifest-plugin": "^5.0.1"
|
@@ -1736,9 +1736,9 @@
|
|
1736
1736
|
}
|
1737
1737
|
},
|
1738
1738
|
"node_modules/@eslint/core": {
|
1739
|
-
"version": "0.
|
1740
|
-
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.
|
1741
|
-
"integrity": "sha512-
|
1739
|
+
"version": "0.15.1",
|
1740
|
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.1.tgz",
|
1741
|
+
"integrity": "sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==",
|
1742
1742
|
"dev": true,
|
1743
1743
|
"license": "Apache-2.0",
|
1744
1744
|
"dependencies": {
|
@@ -1806,10 +1806,11 @@
|
|
1806
1806
|
}
|
1807
1807
|
},
|
1808
1808
|
"node_modules/@eslint/js": {
|
1809
|
-
"version": "9.
|
1810
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.
|
1811
|
-
"integrity": "sha512-
|
1809
|
+
"version": "9.32.0",
|
1810
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.32.0.tgz",
|
1811
|
+
"integrity": "sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==",
|
1812
1812
|
"dev": true,
|
1813
|
+
"license": "MIT",
|
1813
1814
|
"engines": {
|
1814
1815
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
1815
1816
|
},
|
@@ -1827,13 +1828,13 @@
|
|
1827
1828
|
}
|
1828
1829
|
},
|
1829
1830
|
"node_modules/@eslint/plugin-kit": {
|
1830
|
-
"version": "0.3.
|
1831
|
-
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.
|
1832
|
-
"integrity": "sha512-
|
1831
|
+
"version": "0.3.4",
|
1832
|
+
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.4.tgz",
|
1833
|
+
"integrity": "sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==",
|
1833
1834
|
"dev": true,
|
1834
1835
|
"license": "Apache-2.0",
|
1835
1836
|
"dependencies": {
|
1836
|
-
"@eslint/core": "^0.
|
1837
|
+
"@eslint/core": "^0.15.1",
|
1837
1838
|
"levn": "^0.4.1"
|
1838
1839
|
},
|
1839
1840
|
"engines": {
|
@@ -1981,14 +1982,11 @@
|
|
1981
1982
|
}
|
1982
1983
|
},
|
1983
1984
|
"node_modules/@keyv/serialize": {
|
1984
|
-
"version": "1.0
|
1985
|
-
"resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.
|
1986
|
-
"integrity": "sha512-
|
1985
|
+
"version": "1.1.0",
|
1986
|
+
"resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.1.0.tgz",
|
1987
|
+
"integrity": "sha512-RlDgexML7Z63Q8BSaqhXdCYNBy/JQnqYIwxofUrNLGCblOMHp+xux2Q8nLMLlPpgHQPoU0Do8Z6btCpRBEqZ8g==",
|
1987
1988
|
"dev": true,
|
1988
|
-
"license": "MIT"
|
1989
|
-
"dependencies": {
|
1990
|
-
"buffer": "^6.0.3"
|
1991
|
-
}
|
1989
|
+
"license": "MIT"
|
1992
1990
|
},
|
1993
1991
|
"node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
|
1994
1992
|
"version": "5.1.1-v1",
|
@@ -2077,10 +2075,11 @@
|
|
2077
2075
|
}
|
2078
2076
|
},
|
2079
2077
|
"node_modules/@types/estree": {
|
2080
|
-
"version": "1.0.
|
2081
|
-
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.
|
2082
|
-
"integrity": "sha512-
|
2083
|
-
"dev": true
|
2078
|
+
"version": "1.0.8",
|
2079
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
2080
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
2081
|
+
"dev": true,
|
2082
|
+
"license": "MIT"
|
2084
2083
|
},
|
2085
2084
|
"node_modules/@types/glob": {
|
2086
2085
|
"version": "7.2.0",
|
@@ -2378,6 +2377,19 @@
|
|
2378
2377
|
"node": ">=0.4.0"
|
2379
2378
|
}
|
2380
2379
|
},
|
2380
|
+
"node_modules/acorn-import-phases": {
|
2381
|
+
"version": "1.0.4",
|
2382
|
+
"resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz",
|
2383
|
+
"integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==",
|
2384
|
+
"dev": true,
|
2385
|
+
"license": "MIT",
|
2386
|
+
"engines": {
|
2387
|
+
"node": ">=10.13.0"
|
2388
|
+
},
|
2389
|
+
"peerDependencies": {
|
2390
|
+
"acorn": "^8.14.0"
|
2391
|
+
}
|
2392
|
+
},
|
2381
2393
|
"node_modules/acorn-jsx": {
|
2382
2394
|
"version": "5.3.2",
|
2383
2395
|
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
|
@@ -2772,27 +2784,6 @@
|
|
2772
2784
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
2773
2785
|
"dev": true
|
2774
2786
|
},
|
2775
|
-
"node_modules/base64-js": {
|
2776
|
-
"version": "1.5.1",
|
2777
|
-
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
2778
|
-
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
2779
|
-
"dev": true,
|
2780
|
-
"funding": [
|
2781
|
-
{
|
2782
|
-
"type": "github",
|
2783
|
-
"url": "https://github.com/sponsors/feross"
|
2784
|
-
},
|
2785
|
-
{
|
2786
|
-
"type": "patreon",
|
2787
|
-
"url": "https://www.patreon.com/feross"
|
2788
|
-
},
|
2789
|
-
{
|
2790
|
-
"type": "consulting",
|
2791
|
-
"url": "https://feross.org/support"
|
2792
|
-
}
|
2793
|
-
],
|
2794
|
-
"license": "MIT"
|
2795
|
-
},
|
2796
2787
|
"node_modules/big.js": {
|
2797
2788
|
"version": "5.2.2",
|
2798
2789
|
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
|
@@ -2863,31 +2854,6 @@
|
|
2863
2854
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
2864
2855
|
}
|
2865
2856
|
},
|
2866
|
-
"node_modules/buffer": {
|
2867
|
-
"version": "6.0.3",
|
2868
|
-
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
2869
|
-
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
2870
|
-
"dev": true,
|
2871
|
-
"funding": [
|
2872
|
-
{
|
2873
|
-
"type": "github",
|
2874
|
-
"url": "https://github.com/sponsors/feross"
|
2875
|
-
},
|
2876
|
-
{
|
2877
|
-
"type": "patreon",
|
2878
|
-
"url": "https://www.patreon.com/feross"
|
2879
|
-
},
|
2880
|
-
{
|
2881
|
-
"type": "consulting",
|
2882
|
-
"url": "https://feross.org/support"
|
2883
|
-
}
|
2884
|
-
],
|
2885
|
-
"license": "MIT",
|
2886
|
-
"dependencies": {
|
2887
|
-
"base64-js": "^1.3.1",
|
2888
|
-
"ieee754": "^1.2.1"
|
2889
|
-
}
|
2890
|
-
},
|
2891
2857
|
"node_modules/buffer-from": {
|
2892
2858
|
"version": "1.1.2",
|
2893
2859
|
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
|
@@ -2895,24 +2861,24 @@
|
|
2895
2861
|
"dev": true
|
2896
2862
|
},
|
2897
2863
|
"node_modules/cacheable": {
|
2898
|
-
"version": "1.10.
|
2899
|
-
"resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.10.
|
2900
|
-
"integrity": "sha512-
|
2864
|
+
"version": "1.10.3",
|
2865
|
+
"resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.10.3.tgz",
|
2866
|
+
"integrity": "sha512-M6p10iJ/VT0wT7TLIGUnm958oVrU2cUK8pQAVU21Zu7h8rbk/PeRtRWrvHJBql97Bhzk3g1N6+2VKC+Rjxna9Q==",
|
2901
2867
|
"dev": true,
|
2902
2868
|
"license": "MIT",
|
2903
2869
|
"dependencies": {
|
2904
|
-
"hookified": "^1.
|
2905
|
-
"keyv": "^5.
|
2870
|
+
"hookified": "^1.10.0",
|
2871
|
+
"keyv": "^5.4.0"
|
2906
2872
|
}
|
2907
2873
|
},
|
2908
2874
|
"node_modules/cacheable/node_modules/keyv": {
|
2909
|
-
"version": "5.
|
2910
|
-
"resolved": "https://registry.npmjs.org/keyv/-/keyv-5.
|
2911
|
-
"integrity": "sha512-
|
2875
|
+
"version": "5.4.0",
|
2876
|
+
"resolved": "https://registry.npmjs.org/keyv/-/keyv-5.4.0.tgz",
|
2877
|
+
"integrity": "sha512-TMckyVjEoacG5IteUpUrOBsFORtheqziVyyY2dLUwg1jwTb8u48LX4TgmtogkNl9Y9unaEJ1luj10fGyjMGFOQ==",
|
2912
2878
|
"dev": true,
|
2913
2879
|
"license": "MIT",
|
2914
2880
|
"dependencies": {
|
2915
|
-
"@keyv/serialize": "^1.0
|
2881
|
+
"@keyv/serialize": "^1.1.0"
|
2916
2882
|
}
|
2917
2883
|
},
|
2918
2884
|
"node_modules/call-bind": {
|
@@ -3790,10 +3756,11 @@
|
|
3790
3756
|
}
|
3791
3757
|
},
|
3792
3758
|
"node_modules/enhanced-resolve": {
|
3793
|
-
"version": "5.
|
3794
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.
|
3795
|
-
"integrity": "sha512-
|
3759
|
+
"version": "5.18.2",
|
3760
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz",
|
3761
|
+
"integrity": "sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==",
|
3796
3762
|
"dev": true,
|
3763
|
+
"license": "MIT",
|
3797
3764
|
"dependencies": {
|
3798
3765
|
"graceful-fs": "^4.2.4",
|
3799
3766
|
"tapable": "^2.2.0"
|
@@ -4019,19 +3986,20 @@
|
|
4019
3986
|
}
|
4020
3987
|
},
|
4021
3988
|
"node_modules/eslint": {
|
4022
|
-
"version": "9.
|
4023
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.
|
4024
|
-
"integrity": "sha512-
|
3989
|
+
"version": "9.32.0",
|
3990
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.32.0.tgz",
|
3991
|
+
"integrity": "sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==",
|
4025
3992
|
"dev": true,
|
3993
|
+
"license": "MIT",
|
4026
3994
|
"dependencies": {
|
4027
3995
|
"@eslint-community/eslint-utils": "^4.2.0",
|
4028
3996
|
"@eslint-community/regexpp": "^4.12.1",
|
4029
3997
|
"@eslint/config-array": "^0.21.0",
|
4030
3998
|
"@eslint/config-helpers": "^0.3.0",
|
4031
|
-
"@eslint/core": "^0.
|
3999
|
+
"@eslint/core": "^0.15.0",
|
4032
4000
|
"@eslint/eslintrc": "^3.3.1",
|
4033
|
-
"@eslint/js": "9.
|
4034
|
-
"@eslint/plugin-kit": "^0.3.
|
4001
|
+
"@eslint/js": "9.32.0",
|
4002
|
+
"@eslint/plugin-kit": "^0.3.4",
|
4035
4003
|
"@humanfs/node": "^0.16.6",
|
4036
4004
|
"@humanwhocodes/module-importer": "^1.0.1",
|
4037
4005
|
"@humanwhocodes/retry": "^0.4.2",
|
@@ -4079,9 +4047,9 @@
|
|
4079
4047
|
}
|
4080
4048
|
},
|
4081
4049
|
"node_modules/eslint-config-prettier": {
|
4082
|
-
"version": "10.1.
|
4083
|
-
"resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.
|
4084
|
-
"integrity": "sha512-
|
4050
|
+
"version": "10.1.8",
|
4051
|
+
"resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz",
|
4052
|
+
"integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==",
|
4085
4053
|
"dev": true,
|
4086
4054
|
"license": "MIT",
|
4087
4055
|
"bin": {
|
@@ -4673,15 +4641,15 @@
|
|
4673
4641
|
}
|
4674
4642
|
},
|
4675
4643
|
"node_modules/flat-cache": {
|
4676
|
-
"version": "6.1.
|
4677
|
-
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.
|
4678
|
-
"integrity": "sha512-
|
4644
|
+
"version": "6.1.12",
|
4645
|
+
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.12.tgz",
|
4646
|
+
"integrity": "sha512-U+HqqpZPPXP5d24bWuRzjGqVqUcw64k4nZAbruniDwdRg0H10tvN7H6ku1tjhA4rg5B9GS3siEvwO2qjJJ6f8Q==",
|
4679
4647
|
"dev": true,
|
4680
4648
|
"license": "MIT",
|
4681
4649
|
"dependencies": {
|
4682
|
-
"cacheable": "^1.10.
|
4650
|
+
"cacheable": "^1.10.3",
|
4683
4651
|
"flatted": "^3.3.3",
|
4684
|
-
"hookified": "^1.
|
4652
|
+
"hookified": "^1.10.0"
|
4685
4653
|
}
|
4686
4654
|
},
|
4687
4655
|
"node_modules/flatted": {
|
@@ -5037,9 +5005,9 @@
|
|
5037
5005
|
}
|
5038
5006
|
},
|
5039
5007
|
"node_modules/hookified": {
|
5040
|
-
"version": "1.
|
5041
|
-
"resolved": "https://registry.npmjs.org/hookified/-/hookified-1.
|
5042
|
-
"integrity": "sha512-
|
5008
|
+
"version": "1.11.0",
|
5009
|
+
"resolved": "https://registry.npmjs.org/hookified/-/hookified-1.11.0.tgz",
|
5010
|
+
"integrity": "sha512-aDdIN3GyU5I6wextPplYdfmWCo+aLmjjVbntmX6HLD5RCi/xKsivYEBhnRD+d9224zFf008ZpLMPlWF0ZodYZw==",
|
5043
5011
|
"dev": true,
|
5044
5012
|
"license": "MIT"
|
5045
5013
|
},
|
@@ -5112,27 +5080,6 @@
|
|
5112
5080
|
"postcss": "^8.1.0"
|
5113
5081
|
}
|
5114
5082
|
},
|
5115
|
-
"node_modules/ieee754": {
|
5116
|
-
"version": "1.2.1",
|
5117
|
-
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
5118
|
-
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
5119
|
-
"dev": true,
|
5120
|
-
"funding": [
|
5121
|
-
{
|
5122
|
-
"type": "github",
|
5123
|
-
"url": "https://github.com/sponsors/feross"
|
5124
|
-
},
|
5125
|
-
{
|
5126
|
-
"type": "patreon",
|
5127
|
-
"url": "https://www.patreon.com/feross"
|
5128
|
-
},
|
5129
|
-
{
|
5130
|
-
"type": "consulting",
|
5131
|
-
"url": "https://feross.org/support"
|
5132
|
-
}
|
5133
|
-
],
|
5134
|
-
"license": "BSD-3-Clause"
|
5135
|
-
},
|
5136
5083
|
"node_modules/ignore": {
|
5137
5084
|
"version": "5.3.2",
|
5138
5085
|
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
|
@@ -7974,9 +7921,9 @@
|
|
7974
7921
|
}
|
7975
7922
|
},
|
7976
7923
|
"node_modules/stylelint": {
|
7977
|
-
"version": "16.
|
7978
|
-
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.
|
7979
|
-
"integrity": "sha512-
|
7924
|
+
"version": "16.23.0",
|
7925
|
+
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.23.0.tgz",
|
7926
|
+
"integrity": "sha512-69T5aS2LUY306ekt1Q1oaSPwz/jaG9HjyMix3UMrai1iEbuOafBe2Dh8xlyczrxFAy89qcKyZWWtc42XLx3Bbw==",
|
7980
7927
|
"dev": true,
|
7981
7928
|
"funding": [
|
7982
7929
|
{
|
@@ -7988,6 +7935,7 @@
|
|
7988
7935
|
"url": "https://github.com/sponsors/stylelint"
|
7989
7936
|
}
|
7990
7937
|
],
|
7938
|
+
"license": "MIT",
|
7991
7939
|
"dependencies": {
|
7992
7940
|
"@csstools/css-parser-algorithms": "^3.0.5",
|
7993
7941
|
"@csstools/css-tokenizer": "^3.0.4",
|
@@ -8002,7 +7950,7 @@
|
|
8002
7950
|
"debug": "^4.4.1",
|
8003
7951
|
"fast-glob": "^3.3.3",
|
8004
7952
|
"fastest-levenshtein": "^1.0.16",
|
8005
|
-
"file-entry-cache": "^10.1.
|
7953
|
+
"file-entry-cache": "^10.1.3",
|
8006
7954
|
"global-modules": "^2.0.0",
|
8007
7955
|
"globby": "^11.1.0",
|
8008
7956
|
"globjoin": "^0.1.4",
|
@@ -8079,13 +8027,13 @@
|
|
8079
8027
|
}
|
8080
8028
|
},
|
8081
8029
|
"node_modules/stylelint/node_modules/file-entry-cache": {
|
8082
|
-
"version": "10.1.
|
8083
|
-
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.1.
|
8084
|
-
"integrity": "sha512-
|
8030
|
+
"version": "10.1.3",
|
8031
|
+
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.1.3.tgz",
|
8032
|
+
"integrity": "sha512-D+w75Ub8T55yor7fPgN06rkCAUbAYw2vpxJmmjv/GDAcvCnv9g7IvHhIZoxzRZThrXPFI2maeY24pPbtyYU7Lg==",
|
8085
8033
|
"dev": true,
|
8086
8034
|
"license": "MIT",
|
8087
8035
|
"dependencies": {
|
8088
|
-
"flat-cache": "^6.1.
|
8036
|
+
"flat-cache": "^6.1.12"
|
8089
8037
|
}
|
8090
8038
|
},
|
8091
8039
|
"node_modules/stylelint/node_modules/ignore": {
|
@@ -8694,22 +8642,23 @@
|
|
8694
8642
|
}
|
8695
8643
|
},
|
8696
8644
|
"node_modules/webpack": {
|
8697
|
-
"version": "5.
|
8698
|
-
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.
|
8699
|
-
"integrity": "sha512-
|
8645
|
+
"version": "5.101.0",
|
8646
|
+
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.101.0.tgz",
|
8647
|
+
"integrity": "sha512-B4t+nJqytPeuZlHuIKTbalhljIFXeNRqrUGAQgTGlfOl2lXXKXw+yZu6bicycP+PUlM44CxBjCFD6aciKFT3LQ==",
|
8700
8648
|
"dev": true,
|
8701
8649
|
"license": "MIT",
|
8702
8650
|
"dependencies": {
|
8703
8651
|
"@types/eslint-scope": "^3.7.7",
|
8704
|
-
"@types/estree": "^1.0.
|
8652
|
+
"@types/estree": "^1.0.8",
|
8705
8653
|
"@types/json-schema": "^7.0.15",
|
8706
8654
|
"@webassemblyjs/ast": "^1.14.1",
|
8707
8655
|
"@webassemblyjs/wasm-edit": "^1.14.1",
|
8708
8656
|
"@webassemblyjs/wasm-parser": "^1.14.1",
|
8709
|
-
"acorn": "^8.
|
8657
|
+
"acorn": "^8.15.0",
|
8658
|
+
"acorn-import-phases": "^1.0.3",
|
8710
8659
|
"browserslist": "^4.24.0",
|
8711
8660
|
"chrome-trace-event": "^1.0.2",
|
8712
|
-
"enhanced-resolve": "^5.17.
|
8661
|
+
"enhanced-resolve": "^5.17.2",
|
8713
8662
|
"es-module-lexer": "^1.2.1",
|
8714
8663
|
"eslint-scope": "5.1.1",
|
8715
8664
|
"events": "^3.2.0",
|
@@ -8723,7 +8672,7 @@
|
|
8723
8672
|
"tapable": "^2.1.1",
|
8724
8673
|
"terser-webpack-plugin": "^5.3.11",
|
8725
8674
|
"watchpack": "^2.4.1",
|
8726
|
-
"webpack-sources": "^3.
|
8675
|
+
"webpack-sources": "^3.3.3"
|
8727
8676
|
},
|
8728
8677
|
"bin": {
|
8729
8678
|
"webpack": "bin/webpack.js"
|
@@ -8825,15 +8774,6 @@
|
|
8825
8774
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
8826
8775
|
}
|
8827
8776
|
},
|
8828
|
-
"node_modules/webpack-license-plugin/node_modules/webpack-sources": {
|
8829
|
-
"version": "3.2.3",
|
8830
|
-
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
|
8831
|
-
"integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
|
8832
|
-
"dev": true,
|
8833
|
-
"engines": {
|
8834
|
-
"node": ">=10.13.0"
|
8835
|
-
}
|
8836
|
-
},
|
8837
8777
|
"node_modules/webpack-manifest-plugin": {
|
8838
8778
|
"version": "5.0.1",
|
8839
8779
|
"resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-5.0.1.tgz",
|
@@ -8879,11 +8819,12 @@
|
|
8879
8819
|
"node": ">=18.0.0"
|
8880
8820
|
}
|
8881
8821
|
},
|
8882
|
-
"node_modules/webpack
|
8883
|
-
"version": "3.
|
8884
|
-
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.
|
8885
|
-
"integrity": "sha512
|
8822
|
+
"node_modules/webpack-sources": {
|
8823
|
+
"version": "3.3.3",
|
8824
|
+
"resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz",
|
8825
|
+
"integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==",
|
8886
8826
|
"dev": true,
|
8827
|
+
"license": "MIT",
|
8887
8828
|
"engines": {
|
8888
8829
|
"node": ">=10.13.0"
|
8889
8830
|
}
|
@@ -48,8 +48,8 @@
|
|
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.
|
52
|
-
"eslint-config-prettier": "^10.1.
|
51
|
+
"eslint": "^9.32.0",
|
52
|
+
"eslint-config-prettier": "^10.1.8",
|
53
53
|
"eslint-plugin-html": "^8.1.3",
|
54
54
|
"eslint-plugin-import": "^2.32.0",
|
55
55
|
"eslint-plugin-node": "^11.1.0",
|
@@ -59,10 +59,10 @@
|
|
59
59
|
"moment": "^2.29.4",
|
60
60
|
"moment-locales-webpack-plugin": "^1.2.0",
|
61
61
|
"prettier": "^3.6.2",
|
62
|
-
"stylelint": "^16.
|
62
|
+
"stylelint": "^16.23.0",
|
63
63
|
"terser-webpack-plugin": "<6.0.0",
|
64
64
|
"url-loader": "4.1.1",
|
65
|
-
"webpack": "^5.
|
65
|
+
"webpack": "^5.101.0",
|
66
66
|
"webpack-cli": "^6.0.1",
|
67
67
|
"webpack-license-plugin": "^4.2.1",
|
68
68
|
"webpack-manifest-plugin": "^5.0.1"
|
@@ -39,6 +39,7 @@ RESOURCE_ASSET = "Assets"
|
|
39
39
|
RESOURCE_ASSET_ALIAS = "Asset Aliases"
|
40
40
|
RESOURCE_DOCS = "Documentation"
|
41
41
|
RESOURCE_DOCS_MENU = "Docs"
|
42
|
+
RESOURCE_HITL_DETAIL = "HITL Detail"
|
42
43
|
RESOURCE_IMPORT_ERROR = "ImportError"
|
43
44
|
RESOURCE_JOB = "Jobs"
|
44
45
|
RESOURCE_MY_PASSWORD = "My Password"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: apache-airflow-providers-fab
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.4.0
|
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>
|
@@ -35,8 +35,8 @@ Requires-Dist: werkzeug>=2.2,<4; python_version < '3.13'
|
|
35
35
|
Requires-Dist: wtforms>=3.0,<4; python_version < '3.13'
|
36
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.apache.org/docs/apache-airflow-providers-fab/2.
|
39
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-fab/2.
|
38
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-fab/2.4.0/changelog.html
|
39
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-fab/2.4.0
|
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,7 +68,7 @@ Provides-Extra: kerberos
|
|
68
68
|
|
69
69
|
Package ``apache-airflow-providers-fab``
|
70
70
|
|
71
|
-
Release: ``2.
|
71
|
+
Release: ``2.4.0``
|
72
72
|
|
73
73
|
Release Date: ``|PypiReleaseDate|``
|
74
74
|
|
@@ -82,7 +82,7 @@ This is a provider package for ``fab`` provider. All classes for this provider p
|
|
82
82
|
are in ``airflow.providers.fab`` python package.
|
83
83
|
|
84
84
|
You can find package information and changelog for the provider
|
85
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.
|
85
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.4.0/>`_.
|
86
86
|
|
87
87
|
Installation
|
88
88
|
------------
|
@@ -133,5 +133,5 @@ Dependent package
|
|
133
133
|
================================================================================================================== =================
|
134
134
|
|
135
135
|
The changelog for the provider package can be found in the
|
136
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.
|
136
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.4.0/changelog.html>`_.
|
137
137
|
|
{apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/RECORD
RENAMED
@@ -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=U6KANkYKIFdqY7XdSUeVdLIvUPdfvCPeWUEQpni8cYA,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=PytRFQscE1PhESHIflUcMbzG83hCWAg57jpyzzR-Dsw,25440
|
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=pnluFMEnQNAV2zAc4GiVkQ9UaMDOUGw3gAQVwerhtvE,98795
|
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
|
@@ -55,11 +55,11 @@ airflow/providers/fab/migrations/versions/0001_1_4_0_placeholder_migration.py,sh
|
|
55
55
|
airflow/providers/fab/migrations/versions/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
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
|
-
airflow/providers/fab/www/app.py,sha256=
|
58
|
+
airflow/providers/fab/www/app.py,sha256=4Bmh5KOx-ZbfbmP5EdjOaOlcE9NWsAeBXGdKWzfFkkQ,5346
|
59
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=znpd69be1koSTkGjEPdwQjmJbcef377fm4k7YLka_JU,329094
|
62
|
+
airflow/providers/fab/www/package.json,sha256=dDpjUp_QCUwEbmhU53zygyLWn16u1jA_Bfc-VCJpvoI,2355
|
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
|
@@ -80,7 +80,7 @@ airflow/providers/fab/www/extensions/init_session.py,sha256=y8zUVSngawNhkO4egEkh
|
|
80
80
|
airflow/providers/fab/www/extensions/init_views.py,sha256=FBCA0-byJznoqr-3MkhK4JAK2JCeuO9WLbvB8OZSQhg,6627
|
81
81
|
airflow/providers/fab/www/extensions/init_wsgi_middlewares.py,sha256=iowTu9y01569ny9yEV-g2PAzVgZfUs5V1IR249aAKFc,1648
|
82
82
|
airflow/providers/fab/www/security/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
83
|
-
airflow/providers/fab/www/security/permissions.py,sha256=
|
83
|
+
airflow/providers/fab/www/security/permissions.py,sha256=Nm_6KOf-9G9ITb_Qk8M-jSo2ZhGjmod14e5WtUqVMXA,3778
|
84
84
|
airflow/providers/fab/www/static/pin_100.png,sha256=LaM0zDibJElAeVMv1u7M79jK77yN4V1yYKxEDO_xuGc,7501
|
85
85
|
airflow/providers/fab/www/static/pin_32.png,sha256=XlaiNHIiD_azt2PeP_4R3xRY6lPbvhfcZQ_a7gv1adM,1201
|
86
86
|
airflow/providers/fab/www/static/sort_asc.png,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -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.
|
129
|
-
apache_airflow_providers_fab-2.
|
130
|
-
apache_airflow_providers_fab-2.
|
131
|
-
apache_airflow_providers_fab-2.
|
132
|
-
apache_airflow_providers_fab-2.
|
133
|
-
apache_airflow_providers_fab-2.
|
128
|
+
apache_airflow_providers_fab-2.4.0.dist-info/entry_points.txt,sha256=m05kASp7vFi0ZmQ--CFp7GeJpPL7UT2RQF8EEP5XRX8,99
|
129
|
+
apache_airflow_providers_fab-2.4.0.dist-info/licenses/3rd-party-licenses/LICENSES-ui.txt,sha256=C9vBr_KiUhI3jjCS754n_SPi-ylD8SiJgXlOWuNOO98,3688
|
130
|
+
apache_airflow_providers_fab-2.4.0.dist-info/licenses/NOTICE,sha256=GrKwLaFNGIn3J86ucRfNIExRSCD6-7nty84-84F2ad4,448
|
131
|
+
apache_airflow_providers_fab-2.4.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
132
|
+
apache_airflow_providers_fab-2.4.0.dist-info/METADATA,sha256=agZHfVQ829kNjE6G9AQA9sAptujWH4fM7Ck4O_UfqdQ,6740
|
133
|
+
apache_airflow_providers_fab-2.4.0.dist-info/RECORD,,
|
{apache_airflow_providers_fab-2.3.1.dist-info → apache_airflow_providers_fab-2.4.0.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|