This is an automated email from the ASF dual-hosted git repository.
msumit pushed a change to branch include_deferred_conf
in repository https://gitbox.apache.org/repos/asf/airflow.git
from fb16c2d24c0 Add cluster-wide config to override per-pool
add 448c1511ad2 Keep task log text selection alive while scrolling (#71148)
add 7b0eae51e0a Add BaseDeadlineReference and deadline_reference to the
SDK public interface (#70706)
add 5ead3bbc575 remove gropus claim from access tokens in the Keycloak
client created by KeycloakAuthManager cli (#71093)
add 52133f167b0 Allow opting out of forwarding Dag-level parameters in
DatabricksRunNowOperator (#70130)
add dc0e0bb084d Add on_kill() to DatabricksTaskBaseOperator to cancel runs
on task kill (#69442)
add b2a195a4a2a Add more provider module categories to the provider page
(#70190)
add eafe7ac05b2 Merge branch 'main' into include_deferred_conf
No new revisions were added by this update.
Summary of changes:
airflow-core/docs/howto/deadline-alerts.rst | 3 +-
.../ui/src/pages/TaskInstance/Logs/Logs.test.tsx | 93 +++++++++-
.../src/pages/TaskInstance/Logs/TaskLogContent.tsx | 23 ++-
.../pages/TaskInstance/Logs/logSelection.test.ts | 147 +++++++++++++++
.../ui/src/pages/TaskInstance/Logs/logSelection.ts | 73 ++++++++
dev/registry/extract_parameters.py | 101 ++++++----
dev/registry/extract_versions.py | 73 +++++++-
dev/registry/registry_tools/types.py | 69 +++++++
dev/registry/tests/test_extract_parameters.py | 99 ++++++++++
dev/registry/tests/test_extract_versions.py | 121 ++++++++++++
dev/registry/tests/test_types.py | 26 +++
providers/databricks/docs/operators/run_now.rst | 9 +-
.../providers/databricks/operators/databricks.py | 52 +++++-
.../unit/databricks/operators/test_databricks.py | 122 +++++++++++-
.../keycloak/auth_manager/cli/commands.py | 2 +-
registry/.eleventy.js | 22 +++
registry/src/_data/types.json | 30 +++
registry/src/css/main.css | 205 +++++++++++++++++++++
registry/src/css/tokens.css | 6 +
registry/src/js/provider-detail.js | 47 ++++-
registry/src/js/search.js | 8 +-
registry/src/provider-version.njk | 31 +++-
task-sdk/docs/api.rst | 4 +
task-sdk/src/airflow/sdk/__init__.py | 11 +-
task-sdk/src/airflow/sdk/definitions/deadline.py | 6 +-
25 files changed, 1317 insertions(+), 66 deletions(-)
create mode 100644
airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/logSelection.test.ts
create mode 100644
airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/logSelection.ts