This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a change to branch backport-473e332-v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 20368701763 [v3-3-test] Remove stale `dag_` parameter from 
create_test_pipeline docstring (#68787) (cherry picked from commit 
473e33259cdc54d5c9ecdd1d4e010e4f9e857e08)
     add a807b285737 [v3-3-test] Add example plugins and expand docs for asset 
partitions (#68889) (#69017)
     add 26a91d4c4d0 [v3-3-test] Fix Java coordinator rejecting macOS 
dual-stack loopback connections (#68960) (#68973)
     add c5bc7502c2a [v3-3-test] Defer Cadwyn import to keep FastAPI off the 
Task SDK worker path (#69016) (#69029)
     add 6ad3c2c5eb1 [v3-3-test] Don't force full CI tests for non-test 
workflow and prek-only changes (#68802) (#68999)
     add 579757d0e9f [v3-3-test] Java SDK docs: JUL setup(), pin 
java_executable, config-reload note (#68938) (#69020)
     add 5edc9f21d69 Bump the github-actions-updates group across 1 directory 
with 3 updates (#68811)
     add 650efd91af4 [v3-3-test] AIP-103: Allow for 
`get`/`set`/`delete`/`clear` to run for `AssetStateStoreAccessor` on Triggerer 
(#68900) (#68966)
     add f220f5b484e [v3-3-test] Remove stale `dag_` parameter from 
create_test_pipeline docstring (#68787) (cherry picked from commit 
473e33259cdc54d5c9ecdd1d4e010e4f9e857e08)

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   (20368701763)
            \
             N -- N -- N   refs/heads/backport-473e332-v3-3-test (f220f5b484e)

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:
 .github/workflows/additional-ci-image-checks.yml   |   2 +-
 .github/workflows/additional-prod-image-tests.yml  |   8 +-
 .github/workflows/airflow-distributions-tests.yml  |   2 +-
 .github/workflows/airflow-e2e-tests.yml            |   2 +-
 .github/workflows/asf-allowlist-check.yml          |   2 +-
 .github/workflows/backport-cli.yml                 |   2 +-
 .github/workflows/basic-tests.yml                  |  26 +-
 .github/workflows/ci-amd.yml                       |  20 +-
 .github/workflows/ci-arm.yml                       |  20 +-
 .github/workflows/ci-duration-monitor.yml          |   2 +-
 .github/workflows/ci-image-build.yml               |   2 +-
 .github/workflows/ci-image-checks.yml              |  10 +-
 .github/workflows/ci-notification.yml              |   2 +-
 .github/workflows/codeql-analysis.yml              |   4 +-
 .github/workflows/e2e-flaky-tests-report.yml       |   2 +-
 .github/workflows/finalize-tests.yml               |   6 +-
 .github/workflows/generate-constraints.yml         |   2 +-
 .github/workflows/helm-tests.yml                   |   4 +-
 .github/workflows/integration-system-tests.yml     |   6 +-
 .github/workflows/k8s-tests.yml                    |   2 +-
 .github/workflows/milestone-tag-assistant.yml      |   2 +-
 .github/workflows/notify-uv-lock-conflicts.yml     |   2 +-
 .github/workflows/prod-image-build.yml             |   4 +-
 .github/workflows/publish-docs-to-s3.yml           |  10 +-
 .github/workflows/push-image-cache.yml             |   4 +-
 .github/workflows/registry-backfill.yml            |   6 +-
 .github/workflows/registry-build.yml               |   4 +-
 .github/workflows/registry-tests.yml               |   2 +-
 .github/workflows/release_dockerhub_image.yml      |   2 +-
 .../workflows/release_single_dockerhub_image.yml   |   4 +-
 .github/workflows/run-unit-tests.yml               |   2 +-
 .../scheduled-verify-release-calendar.yml          |   2 +-
 .github/workflows/test-providers.yml               |   4 +-
 .github/workflows/ui-e2e-tests.yml                 |   4 +-
 .../update-constraints-on-push-stable.yml          |   8 +-
 .github/workflows/update-constraints-on-push.yml   |   8 +-
 .github/workflows/upgrade-check.yml                |   2 +-
 .../docs/authoring-and-scheduling/assets.rst       | 267 +++++++++++++++++++++
 .../language-sdks/java.rst                         |  42 +++-
 .../docs/core-concepts/asset-state-store.rst       |  74 ++++++
 .../execution_api/routes/asset_state_store.py      |  38 ++-
 .../example_dags/example_asset_partition.py        |  10 +-
 .../plugins/custom_partition_mapper.py             |  96 ++++++++
 .../plugins/custom_partition_timetable.py          |  55 +++++
 .../src/airflow/jobs/triggerer_job_runner.py       |  48 ++++
 .../core_api/routes/public/test_plugins.py         |  10 +-
 .../versions/head/test_asset_state_store.py        |  72 ++++++
 airflow-core/tests/unit/jobs/test_triggerer_job.py | 117 ++++++++-
 .../tests/unit/plugins/test_plugins_manager.py     |   4 +-
 dev/breeze/doc/ci/04_selective_checks.md           |  23 +-
 .../src/airflow_breeze/utils/selective_checks.py   |  23 +-
 dev/breeze/tests/test_selective_checks.py          |  48 +++-
 .../src/airflow/sdk/coordinators/_subprocess.py    |  20 +-
 .../airflow/sdk/execution_time/request_handlers.py |  94 ++++++++
 .../airflow/sdk/execution_time/schema/__init__.py  |  13 +-
 .../airflow/sdk/execution_time/schema/migrator.py  |   9 +-
 .../sdk/execution_time/schema/versions/__init__.py |  36 ++-
 .../tests/task_sdk/coordinators/test_subprocess.py |  35 +++
 .../execution_time/schema/test_migrator.py         |  35 +++
 .../execution_time/test_request_handlers.py        | 167 +++++++++++++
 60 files changed, 1378 insertions(+), 154 deletions(-)
 create mode 100644 
airflow-core/src/airflow/example_dags/plugins/custom_partition_mapper.py
 create mode 100644 
airflow-core/src/airflow/example_dags/plugins/custom_partition_timetable.py
 create mode 100644 
task-sdk/tests/task_sdk/execution_time/test_request_handlers.py

Reply via email to