This is an automated email from the ASF dual-hosted git repository.
ash pushed a change to branch disable-db-access-tasks
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 7d81e910324 fixup! Disable ORM access from Tasks, DAG processing and
Triggers
omit 1176f8193be Disable ORM access from Tasks, DAG processing and Triggers
add c3872a21547 Lazy load failed logs, default overviews to past 24 hours
(#47355)
add c55b977fb45 Add search bar and fix sorting on the connections page
(#47359)
add 9939b1b3d76 Add AWS SageMaker Unified Studio Workflow Operator (#45726)
add 8e3d25f9097 Fix `lookup_from_deprecated_options` in
AirflowConfigParser (#47004)
add 3a8749052e6 Add unique UUID `try_id` column to TaskInstance and
TaskInstanceHistory (#47065)
add 5a5bae857c1 Update Documents to Improve Consistency (#47341)
add 73627fd6613 Avoid scheduler crash with passing executor_config with
CeleryExecutor (#47375)
add dada63b3199 Rewording a small breeze visual (#47380)
add 0f19bf78157 Disable ORM access from Tasks, DAG processing and Triggers
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (7d81e910324)
\
N -- N -- N refs/heads/disable-db-access-tasks (0f19bf78157)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
COMMITTERS.rst | 4 +-
Dockerfile.ci | 2 +-
ISSUE_TRIAGE_PROCESS.rst | 4 +-
.../execution_api/routes/task_instances.py | 2 +
.../cli/commands/remote_commands/config_command.py | 2 +-
airflow/configuration.py | 13 +-
airflow/dag_processing/manager.py | 3 +-
.../0060_3_0_0_add_try_id_to_ti_and_tih.py | 183 ++++++
airflow/models/taskinstance.py | 4 +
airflow/models/taskinstancehistory.py | 10 +-
airflow/settings.py | 5 +
airflow/ui/src/pages/Connections.tsx | 59 --
airflow/ui/src/pages/Connections/Connections.tsx | 109 +++
.../Details/Gantt => pages/Connections}/index.ts | 2 +-
airflow/ui/src/pages/Dag/Overview/FailedLogs.tsx | 4 +-
airflow/ui/src/pages/Dag/Overview/Overview.tsx | 10 +-
.../ui/src/pages/Dag/Overview/TaskLogPreview.tsx | 18 +-
.../HistoricalMetrics/HistoricalMetrics.tsx | 2 +-
airflow/ui/src/pages/Task/Overview/Overview.tsx | 2 +-
airflow/ui/src/queries/useLogs.tsx | 7 +-
airflow/utils/db.py | 2 +-
contributing-docs/01_roles_in_airflow_project.rst | 2 +-
contributing-docs/04_how_to_contribute.rst | 2 +-
dev/breeze/doc/09_release_management_tasks.rst | 2 +-
dev/breeze/doc/adr/0013-get-rid-of-submodules.md | 4 +-
dev/breeze/doc/ci/01_ci_environment.md | 2 +-
dev/breeze/doc/ci/02_images.md | 2 +-
dev/breeze/doc/ci/03_github_variables.md | 2 +-
dev/breeze/doc/ci/04_selective_checks.md | 2 +-
dev/breeze/doc/ci/06_debugging.md | 4 +-
docs/README.rst | 2 +-
docs/apache-airflow/img/airflow_erd.sha256 | 2 +-
docs/apache-airflow/img/airflow_erd.svg | 728 +++++++++++----------
docs/apache-airflow/migrations-ref.rst | 4 +-
docs/spelling_wordlist.txt | 10 +
generated/provider_dependencies.json | 1 +
providers/amazon/README.rst | 1 +
.../docs/operators/sagemakerunifiedstudio.rst | 60 ++
providers/amazon/provider.yaml | 20 +-
providers/amazon/pyproject.toml | 1 +
.../amazon/aws/hooks/sagemaker_unified_studio.py | 188 ++++++
.../links/{glue.py => sagemaker_unified_studio.py} | 12 +-
.../aws/operators/sagemaker_unified_studio.py | 155 +++++
.../amazon/aws/sensors/sagemaker_unified_studio.py | 73 +++
.../aws/triggers/sagemaker_unified_studio.py | 66 ++
.../amazon/aws/utils/sagemaker_unified_studio.py | 11 +-
.../airflow/providers/amazon/get_provider_info.py | 27 +
.../amazon/aws/example_sagemaker_unified_studio.py | 166 +++++
.../aws/hooks/test_sagemaker_unified_studio.py | 201 ++++++
...gemaker.py => test_sagemaker_unified_studio.py} | 11 +-
.../unit/amazon/aws/operators/test_notebook.ipynb | 61 ++
.../aws/operators/test_sagemaker_unified_studio.py | 176 +++++
.../aws/sensors/test_sagemaker_unified_studio.py | 105 +++
.../aws/utils/test_sagemaker_unified_studio.py | 41 +-
.../celery/executors/celery_executor_utils.py | 2 +-
.../providers}/3rd-party-licenses/LICENSES-ui.txt | 6 +-
.../ci/pre_commit/check_ti_vs_tis_attributes.py | 2 +-
scripts/docker/entrypoint_ci.sh | 2 +-
.../src/airflow/sdk/execution_time/supervisor.py | 3 +-
tests/always/test_project_structure.py | 3 +
.../execution_api/routes/test_task_instances.py | 13 +-
.../remote_commands/test_config_command.py | 2 +-
tests/core/test_configuration.py | 42 ++
.../integration/executors/test_celery_executor.py | 34 +-
tests/jobs/test_triggerer_job.py | 1 -
tests/models/test_taskinstance.py | 12 +-
66 files changed, 2196 insertions(+), 517 deletions(-)
create mode 100644
airflow/migrations/versions/0060_3_0_0_add_try_id_to_ti_and_tih.py
delete mode 100644 airflow/ui/src/pages/Connections.tsx
create mode 100644 airflow/ui/src/pages/Connections/Connections.tsx
copy airflow/ui/src/{layouts/Details/Gantt => pages/Connections}/index.ts (94%)
create mode 100644 providers/amazon/docs/operators/sagemakerunifiedstudio.rst
create mode 100644
providers/amazon/src/airflow/providers/amazon/aws/hooks/sagemaker_unified_studio.py
copy providers/amazon/src/airflow/providers/amazon/aws/links/{glue.py =>
sagemaker_unified_studio.py} (74%)
create mode 100644
providers/amazon/src/airflow/providers/amazon/aws/operators/sagemaker_unified_studio.py
create mode 100644
providers/amazon/src/airflow/providers/amazon/aws/sensors/sagemaker_unified_studio.py
create mode 100644
providers/amazon/src/airflow/providers/amazon/aws/triggers/sagemaker_unified_studio.py
copy docker_tests/conftest.py =>
providers/amazon/src/airflow/providers/amazon/aws/utils/sagemaker_unified_studio.py
(80%)
create mode 100644
providers/amazon/tests/system/amazon/aws/example_sagemaker_unified_studio.py
create mode 100644
providers/amazon/tests/unit/amazon/aws/hooks/test_sagemaker_unified_studio.py
copy providers/amazon/tests/unit/amazon/aws/links/{test_sagemaker.py =>
test_sagemaker_unified_studio.py} (74%)
create mode 100644
providers/amazon/tests/unit/amazon/aws/operators/test_notebook.ipynb
create mode 100644
providers/amazon/tests/unit/amazon/aws/operators/test_sagemaker_unified_studio.py
create mode 100644
providers/amazon/tests/unit/amazon/aws/sensors/test_sagemaker_unified_studio.py
copy airflow/secrets/environment_variables.py =>
providers/amazon/tests/unit/amazon/aws/utils/test_sagemaker_unified_studio.py
(51%)
copy providers/fab/{ =>
src/airflow/providers}/3rd-party-licenses/LICENSES-ui.txt (97%)