This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/pip/airflow-core/sqlalchemy-gte-1.4.49-and-lt-3.0
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 5c5ed30ef21 Update sqlalchemy requirement in /airflow-core
add 27a3944da67 add OpenLineage configuration injection to
SparkSubmitOperator (#47508)
add 695c59782b0 Alternative method to mark source roots in
PyCharm/IntelliJ IDEA (#47184)
add 4789a1f0568 Support Reschedule mode for `BaseSensorOperator` with Task
SDK (#48193)
add f8eabf013cf Rename dataset to asset (#48199)
add d4ab4843255 Resolve all eslint warnings (#48197)
add d277a79b79e State the decision of 'resolve all conversations' (#48195)
add bfec97519d5 Improve onboarding instructions for PyCharm/IntelliJ users
(#48213)
add e87d672be19 Fix #47708: Ensure all multiple dropdown selections are
visible (#48185)
add a4f089e27e7 Add option in auth managers to specify DB manager (#48196)
add cc5b573bf43 Handle `BaseHook.get_connection`'s new Task SDK exception
when connection is not found (#47648)
add 97e58393e5f Bump eslint-config-prettier in
/airflow-core/src/airflow/ui (#48202)
add 2e86e81c045 Switch to next gen asf parser (#48215)
add 0bae41be435 Bump eslint-plugin-perfectionist from 3.9.1 to 4.10.1 in
/airflow-core/src/airflow/ui (#48204)
add a1808ac7b14 Update trove classifiers for the main pyproject.toml
(#48219)
add 6d0e00c73c0 Implement task-level “on” callbacks in sdk (#48002)
add b80a0ffd6ad Disallowing kylinpy 2.7.0 as it contains invalid pypi
metadata (#48226)
add c63cda22dff Bump score of PROTM tagged PRs (#48221)
add 6af34bbac33 Push operator extra link xcoms to XComModel directly
(#48227)
add 86d52851405 test: k8s set [api/base_url] with Helm in Breeze (#48040)
add dfb6a89df79 Vendor-in json-merge-patch and add `--no-dev` to direct uv
tool install (#48210)
add 0a846b6d274 Bump min version of aiobotocore (#48236)
add bafa787a05c Implement pre- and post-execute hooks in sdk (#48230)
add 7d818c6e503 Block orm access on deprecated
AIRFLOW__CORE__SQL_ALCHEMY_CONN (#48240)
add 98866422996 Bump elkjs from 0.9.3 to 0.10.0 in
/airflow-core/src/airflow/ui (#48203)
add 3a567fc77bb Bump eslint-config-prettier (#48206)
add d6d7ca429b2 Bump vite (#48201)
add 307f758d906 Update pandas requirement in /airflow-core (#48135)
add e97c9b9d40a Implementing masking for task SDK logs (#48186)
add 09d68d45878 Update sqlalchemy requirement in /airflow-core
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 (5c5ed30ef21)
\
N -- N -- N
refs/heads/dependabot/pip/airflow-core/sqlalchemy-gte-1.4.49-and-lt-3.0
(09d68d45878)
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:
.asf.yaml | 3 -
.pre-commit-config.yaml | 8 +-
airflow-core/pyproject.toml | 6 +-
.../api_fastapi/auth/managers/base_auth_manager.py | 9 +
.../auth/managers/simple/ui/package-lock.json | 8 +-
.../auth/managers/simple/ui/package.json | 2 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 111 ++++---
.../api_fastapi/execution_api/routes/__init__.py | 4 +
.../execution_api/routes/task_instances.py | 17 +
.../execution_api/routes/task_reschedules.py | 56 ++++
airflow-core/src/airflow/decorators/condition.py | 2 +-
airflow-core/src/airflow/models/baseoperator.py | 61 +---
airflow-core/src/airflow/models/connection.py | 14 +-
airflow-core/src/airflow/models/taskinstance.py | 36 ++-
airflow-core/src/airflow/sensors/base.py | 46 +--
airflow-core/src/airflow/ui/package.json | 6 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 139 +++++---
airflow-core/src/airflow/ui/rules/unicorn.js | 38 +--
.../src/components/FlexibleForm/FieldDateTime.tsx | 3 +-
.../components/FlexibleForm/FieldMultilineText.tsx | 3 +-
.../ui/src/components/FlexibleForm/FieldNumber.tsx | 3 +-
.../ui/src/components/FlexibleForm/FieldString.tsx | 3 +-
.../ui/src/components/FlexibleForm/HiddenInput.tsx | 3 +-
.../option.ts => components/ui/Menu/Menu.tsx} | 10 +-
.../ui/{Menu.tsx => Menu/MenuContent.tsx} | 7 +-
.../{pages/Task => components/ui/Menu}/index.ts | 2 +-
.../ui/src/components/ui/{ => Toaster}/Toaster.tsx | 7 +-
.../Run/index.tsx => ui/Toaster/createToaster.ts} | 6 +-
.../components/{SearchDags => ui/Toaster}/index.ts | 3 +-
.../index.tsx => context/openGroups/Context.ts} | 12 +-
.../src/context/openGroups/OpenGroupsProvider.tsx | 10 +-
.../src/airflow/ui/src/context/openGroups/index.ts | 1 +
.../ui/src/context/openGroups/useOpenGroups.ts | 2 +-
.../index.tsx => context/timezone/Context.ts} | 11 +-
.../ui/src/context/timezone/TimezoneProvider.tsx | 9 +-
.../src/airflow/ui/src/context/timezone/index.ts | 1 +
.../airflow/ui/src/context/timezone/useTimezone.ts | 2 +-
airflow-core/src/airflow/ui/src/pages/DagRuns.tsx | 4 +-
.../ui/src/pages/DagsList/AssetSchedule.tsx | 2 +-
.../src/pages/TaskInstance/RenderedTemplates.tsx | 3 +-
.../pages/TaskInstances/TaskInstancesFilter.tsx | 22 +-
airflow-core/src/airflow/utils/context.py | 8 -
airflow-core/src/airflow/utils/db_manager.py | 7 +
airflow-core/src/airflow/utils/operator_helpers.py | 73 +----
.../auth/managers/test_base_auth_manager.py | 3 +
.../execution_api/routes/test_task_instances.py | 90 ++++++
airflow-core/tests/unit/hooks/test_base.py | 12 +-
.../tests/unit/models/test_taskinstance.py | 60 ++--
airflow-core/tests/unit/sensors/test_base.py | 22 --
.../unit/serialization/test_dag_serialization.py | 10 +-
contributing-docs/05_pull_requests.rst | 18 +-
.../contributors_quick_start_pycharm.rst | 77 ++++-
.../quick-start-ide/images/pycharm-airflow.iml.png | Bin 0 -> 337577 bytes
.../quick-start-ide/images/pycharm-modules.xml.png | Bin 0 -> 124438 bytes
.../images/pycharm_add_interpreter.png | Bin 118539 -> 333057 bytes
.../airflow_breeze/commands/kubernetes_commands.py | 4 +
.../src/airflow_breeze/utils/kubernetes_utils.py | 17 +-
dev/stats/get_important_pr_candidates.py | 15 +-
generated/provider_dependencies.json | 4 +-
kubernetes_tests/test_base.py | 78 -----
providers/apache/kylin/README.rst | 2 +-
providers/apache/kylin/pyproject.toml | 2 +-
.../providers/apache/kylin/get_provider_info.py | 2 +-
providers/apache/spark/README.rst | 15 +-
providers/apache/spark/pyproject.toml | 4 +-
.../providers/apache/spark/get_provider_info.py | 12 +-
.../apache/spark/operators/spark_submit.py | 19 ++
.../apache/spark/operators/test_spark_submit.py | 179 +++++++++++
.../providers/fab/auth_manager/fab_auth_manager.py | 4 +
.../airflow/providers/fab/www/package-lock.json | 9 +-
.../fab/src/airflow/providers/fab/www/package.json | 2 +-
.../unit/fab/auth_manager/test_fab_auth_manager.py | 4 +
providers/google/README.rst | 1 -
providers/google/pyproject.toml | 1 -
.../google/3rd-party-licenses/LICENSES.txt | 14 +
.../providers/google/3rd-party-licenses/NOTICE | 15 +
.../airflow/providers/google}/_vendor/__init__.py | 0
.../providers/google/_vendor/json_merge_patch.py | 91 ++++++
.../providers/google/cloud/operators/compute.py | 2 +-
.../airflow/providers/google/get_provider_info.py | 1 -
.../airflow/providers/openlineage/utils/spark.py | 2 +-
.../unit/openlineage/extractors/test_manager.py | 2 +-
.../airflow/providers/standard/operators/python.py | 37 ++-
pyproject.toml | 1 +
setup_idea.py | 117 +++++++
task-sdk/src/airflow/sdk/api/client.py | 6 +
.../src/airflow/sdk/definitions/baseoperator.py | 46 +--
.../airflow/sdk/execution_time/callback_runner.py | 110 +++++++
task-sdk/src/airflow/sdk/execution_time/comms.py | 13 +
task-sdk/src/airflow/sdk/execution_time/context.py | 9 +
.../src/airflow/sdk/execution_time/supervisor.py | 15 +
.../src/airflow/sdk/execution_time/task_runner.py | 114 +++++--
task-sdk/src/airflow/sdk/execution_time/xcom.py | 36 +++
task-sdk/src/airflow/sdk/log.py | 8 +
task-sdk/src/airflow/sdk/types.py | 2 +
task-sdk/tests/conftest.py | 14 +-
task-sdk/tests/task_sdk/api/test_client.py | 30 +-
task-sdk/tests/task_sdk/definitions/conftest.py | 2 +-
.../task_sdk/execution_time/test_supervisor.py | 11 +
.../task_sdk/execution_time/test_task_runner.py | 351 ++++++++++++++++-----
task-sdk/tests/task_sdk/log/test_log.py | 85 ++++-
101 files changed, 1846 insertions(+), 737 deletions(-)
create mode 100644
airflow-core/src/airflow/api_fastapi/execution_api/routes/task_reschedules.py
copy airflow-core/src/airflow/ui/src/{utils/option.ts =>
components/ui/Menu/Menu.tsx} (84%)
rename airflow-core/src/airflow/ui/src/components/ui/{Menu.tsx =>
Menu/MenuContent.tsx} (90%)
copy airflow-core/src/airflow/ui/src/{pages/Task =>
components/ui/Menu}/index.ts (97%)
rename airflow-core/src/airflow/ui/src/components/ui/{ => Toaster}/Toaster.tsx
(92%)
copy airflow-core/src/airflow/ui/src/components/{Clear/Run/index.tsx =>
ui/Toaster/createToaster.ts} (84%)
copy airflow-core/src/airflow/ui/src/components/{SearchDags =>
ui/Toaster}/index.ts (93%)
copy airflow-core/src/airflow/ui/src/{components/FlexibleForm/index.tsx =>
context/openGroups/Context.ts} (73%)
copy airflow-core/src/airflow/ui/src/{components/FlexibleForm/index.tsx =>
context/timezone/Context.ts} (76%)
create mode 100644
contributing-docs/quick-start-ide/images/pycharm-airflow.iml.png
create mode 100644
contributing-docs/quick-start-ide/images/pycharm-modules.xml.png
create mode 100644
providers/google/src/airflow/providers/google/3rd-party-licenses/LICENSES.txt
create mode 100644
providers/google/src/airflow/providers/google/3rd-party-licenses/NOTICE
copy {airflow-core/src/airflow =>
providers/google/src/airflow/providers/google}/_vendor/__init__.py (100%)
create mode 100644
providers/google/src/airflow/providers/google/_vendor/json_merge_patch.py
create mode 100644 setup_idea.py
create mode 100644 task-sdk/src/airflow/sdk/execution_time/callback_runner.py