This is an automated email from the ASF dual-hosted git repository.
weilee pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 7bcd84b1c59 fix(migration): fix dataset to asset migration typo
(#43245)
add d186d3fb50b Rename dataset as asset in UI (#43073)
No new revisions were added by this update.
Summary of changes:
airflow/api_connexion/openapi/v1.yaml | 2 +-
.../api_fastapi/core_api/openapi/v1-generated.yaml | 2 +-
airflow/assets/metadata.py | 2 +-
airflow/config_templates/config.yml | 4 +-
airflow/jobs/scheduler_job_runner.py | 4 +-
airflow/provider.yaml.schema.json | 5 +-
airflow/serialization/schema.json | 18 ++---
airflow/ui/openapi-gen/requests/schemas.gen.ts | 2 +-
airflow/ui/openapi-gen/requests/types.gen.ts | 2 +-
airflow/utils/types.py | 2 +-
airflow/www/extensions/init_appbuilder_links.py | 2 +-
airflow/www/static/css/main.css | 2 +-
airflow/www/static/js/api/index.ts | 2 +-
airflow/www/static/js/api/useAsset.ts | 6 +-
airflow/www/static/js/api/useAssetDependencies.ts | 22 +++---
airflow/www/static/js/api/useAssetEvents.ts | 6 +-
airflow/www/static/js/api/useAssets.ts | 6 +-
airflow/www/static/js/api/useAssetsSummary.ts | 14 ++--
airflow/www/static/js/api/useCreateAssetEvent.ts | 6 +-
.../static/js/{datasetUtils.js => assetUtils.js} | 42 +++++------
.../js/{datasets => assets}/AssetDetails.tsx | 20 +++---
.../static/js/{datasets => assets}/AssetEvents.tsx | 6 +-
.../js/{datasets => assets}/AssetList.test.tsx | 44 ++++++------
.../static/js/{datasets => assets}/AssetsList.tsx | 26 +++----
.../js/{datasets => assets}/CreateAssetEvent.tsx | 10 +--
.../js/{datasets => assets}/Graph/DagNode.tsx | 0
.../js/{datasets => assets}/Graph/Legend.tsx | 4 +-
.../static/js/{datasets => assets}/Graph/Node.tsx | 0
.../static/js/{datasets => assets}/Graph/index.tsx | 6 +-
.../www/static/js/{datasets => assets}/Main.tsx | 24 +++----
.../static/js/{datasets => assets}/SearchBar.tsx | 24 +++----
.../www/static/js/{datasets => assets}/index.tsx | 4 +-
.../www/static/js/{datasets => assets}/types.ts | 0
.../cluster-activity/historical-metrics/index.tsx | 2 +-
.../js/cluster-activity/live-metrics/Pools.tsx | 2 +-
.../{DatasetEventCard.tsx => AssetEventCard.tsx} | 8 +--
airflow/www/static/js/components/Graph/Edge.tsx | 4 +-
airflow/www/static/js/connection_form.js | 6 +-
airflow/www/static/js/dag.js | 36 +++++-----
airflow/www/static/js/dag/details/dag/Dag.tsx | 2 +-
.../static/js/dag/details/dag/RunDurationChart.tsx | 2 +-
...setTriggerEvents.tsx => AssetTriggerEvents.tsx} | 14 ++--
airflow/www/static/js/dag/details/dagRun/index.tsx | 4 +-
.../graph/{DatasetNode.tsx => AssetNode.tsx} | 12 ++--
airflow/www/static/js/dag/details/graph/Node.tsx | 4 +-
airflow/www/static/js/dag/details/graph/index.tsx | 69 +++++++++---------
.../static/js/dag/details/task/AllTaskDuration.tsx | 2 +-
.../static/js/dag/details/task/TaskDuration.tsx | 2 +-
...tasetUpdateEvents.tsx => AssetUpdateEvents.tsx} | 14 ++--
.../static/js/dag/details/taskInstance/index.tsx | 6 +-
airflow/www/static/js/dags.js | 79 ++++++++++-----------
airflow/www/static/js/types/api-generated.ts | 4 +-
airflow/www/static/js/types/index.ts | 12 ++--
airflow/www/static/js/utils/graph.ts | 2 +-
.../templates/airflow/asset_next_run_modal.html | 20 +++---
airflow/www/templates/airflow/assets.html | 10 +--
airflow/www/templates/airflow/dag.html | 24 +++----
airflow/www/templates/airflow/dags.html | 26 +++----
airflow/www/webpack.config.js | 2 +-
.../auth-manager/access-control.rst | 4 +-
.../operators/cloud/dataplex.rst | 12 ++--
.../logging-monitoring/metrics.rst | 2 +-
docs/apache-airflow/img/asset-scheduled-dags.png | Bin 77225 -> 96199 bytes
docs/apache-airflow/img/assets.png | Bin 406053 -> 305545 bytes
docs/apache-airflow/templates-ref.rst | 2 +-
docs/apache-airflow/ui.rst | 6 +-
docs/exts/operators_and_hooks_ref.py | 6 +-
newsfragments/43073.significant.rst | 1 +
.../endpoints/test_dag_run_endpoint.py | 2 +-
...test_dataset_schema.py => test_asset_schema.py} | 2 +-
.../core_api/routes/public/test_dag_run.py | 2 +-
tests/assets/test_asset.py | 2 +-
tests/assets/test_manager.py | 2 +-
tests/models/test_taskinstance.py | 6 +-
tests/timetables/test_assets_timetable.py | 2 +-
.../{test_views_dataset.py => test_views_asset.py} | 9 +--
76 files changed, 372 insertions(+), 375 deletions(-)
rename airflow/www/static/js/{datasetUtils.js => assetUtils.js} (69%)
rename airflow/www/static/js/{datasets => assets}/AssetDetails.tsx (82%)
rename airflow/www/static/js/{datasets => assets}/AssetEvents.tsx (95%)
rename airflow/www/static/js/{datasets => assets}/AssetList.test.tsx (72%)
rename airflow/www/static/js/{datasets => assets}/AssetsList.tsx (87%)
rename airflow/www/static/js/{datasets => assets}/CreateAssetEvent.tsx (93%)
rename airflow/www/static/js/{datasets => assets}/Graph/DagNode.tsx (100%)
rename airflow/www/static/js/{datasets => assets}/Graph/Legend.tsx (95%)
rename airflow/www/static/js/{datasets => assets}/Graph/Node.tsx (100%)
rename airflow/www/static/js/{datasets => assets}/Graph/index.tsx (96%)
rename airflow/www/static/js/{datasets => assets}/Main.tsx (94%)
rename airflow/www/static/js/{datasets => assets}/SearchBar.tsx (81%)
rename airflow/www/static/js/{datasets => assets}/index.tsx (97%)
rename airflow/www/static/js/{datasets => assets}/types.ts (100%)
rename airflow/www/static/js/components/{DatasetEventCard.tsx =>
AssetEventCard.tsx} (95%)
rename airflow/www/static/js/dag/details/dagRun/{DatasetTriggerEvents.tsx =>
AssetTriggerEvents.tsx} (85%)
rename airflow/www/static/js/dag/details/graph/{DatasetNode.tsx =>
AssetNode.tsx} (95%)
rename airflow/www/static/js/dag/details/taskInstance/{DatasetUpdateEvents.tsx
=> AssetUpdateEvents.tsx} (85%)
create mode 100644 newsfragments/43073.significant.rst
rename tests/api_connexion/schemas/{test_dataset_schema.py =>
test_asset_schema.py} (99%)
rename tests/www/views/{test_views_dataset.py => test_views_asset.py} (98%)