This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/pip/airflow-core/pip-dependency-updates-72f83f7f84
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard fa17e0037d8 Bump the pip-dependency-updates group across 3 directories
with 3 updates
add 3d2a635c6ed Add shared_stream_cohort_grace_period to reduce missed
events on triggerer restart (#68888)
add 771aa902df0 Add news fragment and documentation for the result
decorator (#68928)
add 4aafb9523be Correct the example config for the coordinators (#68929)
add 94405c425ac SnowflakeHook: extract OAuth token lifecycle management
into dedicated helper (#68549)
add 73c88418feb Fix DatabricksWorkflowTaskGroup ignoring
upstream/downstream set before with block (#68924)
add 0b1912c1061 Propagate verify and botocore_config through
EC2StateSensorTrigger (#68921)
add 31f7ba74209 Fix race condition on sort param when returning dagRuns
(#68842)
add fc5f2ff224b Bump the pip-dependency-updates group across 3 directories
with 3 updates
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 (fa17e0037d8)
\
N -- N -- N
refs/heads/dependabot/pip/airflow-core/pip-dependency-updates-72f83f7f84
(fc5f2ff224b)
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:
.../docs/authoring-and-scheduling/dag-result.rst | 140 +++++++++++++
.../authoring-and-scheduling/event-scheduling.rst | 12 ++
.../docs/authoring-and-scheduling/index.rst | 1 +
airflow-core/newsfragments/64563.feature.rst | 1 +
airflow-core/newsfragments/68888.feature.rst | 1 +
.../src/airflow/api_fastapi/common/parameters.py | 2 +-
.../src/airflow/config_templates/config.yml | 20 ++
.../src/airflow/jobs/triggerer_job_runner.py | 1 +
airflow-core/src/airflow/triggers/shared_stream.py | 30 +++
.../unit/api_fastapi/common/test_parameters.py | 21 ++
airflow-core/tests/unit/jobs/test_triggerer_job.py | 6 +
.../tests/unit/triggers/test_shared_stream.py | 75 +++++++
.../airflow/providers/amazon/aws/sensors/ec2.py | 2 +
.../airflow/providers/amazon/aws/triggers/ec2.py | 16 +-
.../tests/unit/amazon/aws/triggers/test_ec2.py | 22 ++
.../databricks/operators/databricks_workflow.py | 9 +
.../operators/test_databricks_workflow.py | 76 +++++++
.../airflow/providers/snowflake/hooks/snowflake.py | 232 +++++++++++----------
.../tests/unit/snowflake/hooks/test_snowflake.py | 6 +-
.../sdk/coordinators/executable/coordinator.py | 7 +-
.../airflow/sdk/coordinators/java/coordinator.py | 9 +-
.../task_sdk/execution_time/test_coordinator.py | 32 ++-
22 files changed, 592 insertions(+), 129 deletions(-)
create mode 100644 airflow-core/docs/authoring-and-scheduling/dag-result.rst
create mode 100644 airflow-core/newsfragments/64563.feature.rst
create mode 100644 airflow-core/newsfragments/68888.feature.rst