This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a change to branch fix-grid-errors
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard b84599b99c Fix grid error handling
omit b77aa9a408 Get gantt/graph modal actions working again
omit 039b259d2a Chain map_index params
omit 6716bd08dd Fix gantt/graph modal
omit 19edb5ebb0 Readd mapped instance table selection
omit 2075e5fb61 Allow bulk mapped task actions
add 8dedd2ac13 Improve logging of optional provider features messages
(#23037)
add 79ab71efe7 Replace `DummyOperator` usage in test_zip.zip and
test_zip_invalid_cron.zip (#23123)
add 07a13bb708 Change ComputeSSH to throw provider import error instead
paramiko (#23035)
add 9fdac9aec4 Simplify Task exception trackback truncation to never warn
(#23121)
add af45483b95 Ensure that we don't schedule all mapped TIs when one is
cleared (#23130)
add 03f7d857e9 When expanding a task end up skipping it, ensure we don't
deadlock the DagRun (#23134)
add 03bef084b3 add script to initialise virtualenv (#22971)
add 1e8ac47589 Task actions UI for individual mapped instances (#23127)
add 91b82763c5 Fix TI failure handling when task cannot be unmapped.
(#23119)
add e57c7aeda8 Fix timezone display for logs on UI (#23075)
add c7399c7190 KubernetesHook should try incluster first when not
otherwise configured (#23126)
new 2fef8d505c Allow bulk mapped task actions
new 67be2dd5e4 Readd mapped instance table selection
new 088929deac Fix gantt/graph modal
new b7819154d6 Fix grid error handling
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 (b84599b99c)
\
N -- N -- N refs/heads/fix-grid-errors (b7819154d6)
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.
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
BREEZE.rst | 4 +-
CONTRIBUTING.rst | 39 ++--
CONTRIBUTORS_QUICK_START.rst | 4 +-
airflow/dag_processing/processor.py | 2 +-
airflow/models/dagrun.py | 69 +++---
airflow/models/mappedoperator.py | 25 +--
airflow/models/taskfail.py | 14 +-
airflow/models/taskinstance.py | 246 +++++++--------------
.../providers/cncf/kubernetes/hooks/kubernetes.py | 22 +-
.../providers/google/cloud/hooks/compute_ssh.py | 7 +-
airflow/providers_manager.py | 91 +++++---
airflow/www/static/js/dag.js | 3 +
airflow/www/static/js/datetime_utils.js | 2 +-
airflow/www/static/js/ti_log.js | 5 +-
dev/provider_packages/README.md | 6 +-
.../installation/installing-from-pypi.rst | 3 +
scripts/tools/initialize_virtualenv.py | 186 ++++++++++++++++
tests/api/common/test_delete_dag.py | 10 +-
tests/callbacks/test_callback_requests.py | 2 +-
tests/core/test_providers_manager.py | 5 +-
tests/dags/test_zip.zip | Bin 3307 -> 3513 bytes
tests/dags/test_zip_invalid_cron.zip | Bin 913 -> 1513 bytes
tests/jobs/test_scheduler_job.py | 5 +-
tests/models/test_dagrun.py | 36 ++-
.../cncf/kubernetes/hooks/test_kubernetes.py | 33 ++-
25 files changed, 519 insertions(+), 300 deletions(-)
create mode 100755 scripts/tools/initialize_virtualenv.py