This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/eslint-config-prettier-10.1.1
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 49e36019d2b Bump eslint-config-prettier
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 d3706806635 Bump eslint-config-prettier
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 (49e36019d2b)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/eslint-config-prettier-10.1.1
(d3706806635)
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:
.pre-commit-config.yaml | 3 +-
.../api_fastapi/auth/managers/base_auth_manager.py | 9 ++
.../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/models/connection.py | 14 +-
airflow-core/src/airflow/models/taskinstance.py | 24 +++
airflow-core/src/airflow/sensors/base.py | 46 +-----
airflow-core/src/airflow/ui/package.json | 2 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 24 +--
.../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/db_manager.py | 7 +
.../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/sensors/test_base.py | 22 ---
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
generated/provider_dependencies.json | 1 +
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 +
.../unit/fab/auth_manager/test_fab_auth_manager.py | 4 +
.../airflow/providers/openlineage/utils/spark.py | 2 +-
setup_idea.py | 117 ++++++++++++++
task-sdk/src/airflow/sdk/api/client.py | 6 +
task-sdk/src/airflow/sdk/execution_time/comms.py | 13 ++
.../src/airflow/sdk/execution_time/supervisor.py | 4 +
.../src/airflow/sdk/execution_time/task_runner.py | 29 ++++
task-sdk/src/airflow/sdk/types.py | 2 +
task-sdk/tests/conftest.py | 2 +
task-sdk/tests/task_sdk/api/test_client.py | 30 +++-
.../task_sdk/execution_time/test_supervisor.py | 11 ++
.../task_sdk/execution_time/test_task_runner.py | 28 ++++
62 files changed, 844 insertions(+), 195 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 setup_idea.py