This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/pip/providers/amazon/pandas-gte-2.1.2-and-lt-2.3
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard eb46c370040 [provider-amazon] Update pandas requirement in
/providers/amazon
add 993f1848bfe Update werkzeug requirement from <3,>=2.0 to >=2.0,<4 in
/airflow-core (#48136)
add 34bc0186cd1 Update sqlalchemy requirement in /airflow-core (#48138)
add a32d69e1574 Update flask-session requirement in /airflow-core (#48141)
add 682cbaaf25f Bump happy-dom from 15.11.7 to 17.4.4 in
/airflow-core/src/airflow/ui (#48172)
add baeb6d8839d Remove google provider dependencies from apache-kafka
provider (#47563)
add eb121a0c3c7 Remove extra if condition check in publish docs job
(#48118)
add 149a023d3dd Limit flask_session to less than 0.8 (#48182)
add 6a703dd1f79 Revert "Update sqlalchemy requirement in /airflow-core
(#48138)" (#48188)
add f479eac651e Bump react-router-dom (#48171)
add c03e94905e5 Improve XCom table (#48189)
add 35ef47d86fd Bump happy-dom (#48170)
add 59b54e7c336 Bump react and react-dom (#48130)
add 2c6a6dd470d Backfill "get existing run" query did not filter by dag_id
(#48029)
add d1b80e4bd9f (Re)move old dependencies from the old FAB UI (#48007)
add b994a1d5421 Ensure that the `enerate-tasksdk-datamodels` is not
susceptible to local config (#48198)
add d264a8616ff Disable starting a mapped task from trigger (#48006)
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 0f059522b7a fix pre_commit version typo (#48237)
add d1f45060305 Bump minimum boto3 version to 1.37.0 (#48238)
add a74db376b1b [provider-amazon] Update pandas requirement in
/providers/amazon
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 (eb46c370040)
\
N -- N -- N
refs/heads/dependabot/pip/providers/amazon/pandas-gte-2.1.2-and-lt-2.3
(a74db376b1b)
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 -
.github/workflows/ci-image-checks.yml | 3 -
.pre-commit-config.yaml | 8 +-
RELEASE_NOTES.rst | 6 +
airflow-core/pyproject.toml | 28 +-
.../api_fastapi/auth/managers/base_auth_manager.py | 9 +
.../auth/managers/simple/ui/package-lock.json | 148 +++++----
.../auth/managers/simple/ui/package.json | 10 +-
.../auth/managers/simple/ui/pnpm-lock.yaml | 319 ++++++++++---------
.../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/backfill.py | 11 +-
airflow-core/src/airflow/models/baseoperator.py | 61 +---
airflow-core/src/airflow/models/connection.py | 14 +-
airflow-core/src/airflow/models/mappedoperator.py | 10 +
airflow-core/src/airflow/models/taskinstance.py | 36 ++-
airflow-core/src/airflow/sensors/base.py | 46 +--
airflow-core/src/airflow/ui/package.json | 8 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 168 ++++++----
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 +-
.../airflow/ui/src/components/TruncatedText.tsx | 1 -
.../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 +-
.../ui/src/pages/TaskInstances/TaskInstances.tsx | 1 +
.../pages/TaskInstances/TaskInstancesFilter.tsx | 22 +-
.../src/airflow/ui/src/pages/XCom/XCom.tsx | 49 ++-
airflow-core/src/airflow/ui/src/utils/links.ts | 12 +
airflow-core/src/airflow/utils/context.py | 8 -
airflow-core/src/airflow/utils/db_manager.py | 7 +
airflow-core/src/airflow/utils/json.py | 67 +---
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 +-
airflow-core/tests/unit/models/test_backfill.py | 22 ++
.../tests/unit/models/test_taskinstance.py | 60 ++--
airflow-core/tests/unit/sensors/test_base.py | 22 --
.../unit/serialization/test_dag_serialization.py | 10 +-
airflow-core/tests/unit/utils/test_json.py | 25 --
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/breeze/src/airflow_breeze/utils/run_utils.py | 4 +-
dev/stats/get_important_pr_candidates.py | 15 +-
generated/provider_dependencies.json | 14 +-
kubernetes_tests/test_base.py | 78 -----
providers/amazon/README.rst | 2 +-
providers/amazon/pyproject.toml | 2 +-
.../src/airflow/providers/amazon/aws/hooks/eks.py | 9 +-
.../providers/amazon/aws/operators/sagemaker.py | 3 +-
.../airflow/providers/amazon/get_provider_info.py | 2 +-
.../airflow/providers/apache/kafka/hooks/base.py | 10 +-
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/README.rst | 6 +-
providers/fab/pyproject.toml | 16 +-
.../providers/fab/auth_manager/fab_auth_manager.py | 4 +
.../src/airflow/providers/fab/get_provider_info.py | 6 +-
.../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 +
reproducible_build.yaml | 4 +-
setup_idea.py | 117 +++++++
task-sdk/dev/generate_task_sdk_models.py | 5 +-
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 ++++-
124 files changed, 2193 insertions(+), 1085 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