apache-airflow-providers-edge3 1.4.0__py3-none-any.whl → 1.4.1rc1__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/edge3/__init__.py +1 -1
- airflow/providers/edge3/plugins/edge_executor_plugin.py +2 -10
- airflow/providers/edge3/plugins/www/dist/main.umd.cjs +15 -34
- airflow/providers/edge3/plugins/www/package.json +22 -22
- airflow/providers/edge3/plugins/www/pnpm-lock.yaml +1502 -1509
- airflow/providers/edge3/plugins/www/src/layouts/EdgeLayout.tsx +9 -14
- airflow/providers/edge3/plugins/www/src/layouts/NavTabs.tsx +1 -8
- airflow/providers/edge3/plugins/www/src/pages/JobsPage.tsx +7 -8
- airflow/providers/edge3/plugins/www/vite.config.ts +2 -1
- {apache_airflow_providers_edge3-1.4.0.dist-info → apache_airflow_providers_edge3-1.4.1rc1.dist-info}/METADATA +12 -12
- {apache_airflow_providers_edge3-1.4.0.dist-info → apache_airflow_providers_edge3-1.4.1rc1.dist-info}/RECORD +13 -13
- {apache_airflow_providers_edge3-1.4.0.dist-info → apache_airflow_providers_edge3-1.4.1rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_edge3-1.4.0.dist-info → apache_airflow_providers_edge3-1.4.1rc1.dist-info}/entry_points.txt +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "1.4.
|
|
32
|
+
__version__ = "1.4.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -252,18 +252,10 @@ class EdgeExecutorPlugin(AirflowPlugin):
|
|
|
252
252
|
fastapi_apps = [_get_api_endpoint()]
|
|
253
253
|
react_apps = [
|
|
254
254
|
{
|
|
255
|
-
"name": "Edge
|
|
255
|
+
"name": "Edge Executor",
|
|
256
256
|
"bundle_url": _get_base_url_path("/edge_worker/static/main.umd.cjs"),
|
|
257
257
|
"destination": "nav",
|
|
258
|
-
"url_route": "
|
|
259
|
-
"category": "admin",
|
|
260
|
-
"icon": _get_base_url_path("/edge_worker/res/cloud-computer.svg"),
|
|
261
|
-
"icon_dark_mode": _get_base_url_path("/edge_worker/res/cloud-computer-dark.svg"),
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
"name": "Edge Worker Jobs",
|
|
265
|
-
"bundle_url": _get_base_url_path("/edge_worker/static/main.umd.cjs"),
|
|
266
|
-
"url_route": "edge_jobs",
|
|
258
|
+
"url_route": "edge_executor",
|
|
267
259
|
"category": "admin",
|
|
268
260
|
"icon": _get_base_url_path("/edge_worker/res/cloud-computer.svg"),
|
|
269
261
|
"icon_dark_mode": _get_base_url_path("/edge_worker/res/cloud-computer-dark.svg"),
|