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

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


 discard 521eb584f3f [v3-3-test] [AIP-94] Mark variables CLI commands as 
migrated to airflowctl (#68932) (cherry picked from commit 
b74521b54885092613439fa5dbf1e50472dcd9e9)
     add 3cf17233771 Fix missed rename of BaseStateBackend to BaseStoreBackend 
(#69160) (#69162)
     add fc7faf2bfd7 update release notes for 3.3.0rc1
     add 3ba9ddbcdba [v3-3-test] Fix drifting data intervals for monthly/yearly 
schedules with catchup disabled (#69143) (#69189)
     add 76893fb14ac Update SQLAlchemy documentation links from 1.4 to 2.0 
(#69200) (#69203)
     add 84590c18331 [v3-3-test] Add new Committers to CODEOWNERS (#69215) 
(#69219)
     add 7ebb7dc0c2b [v3-3-test] Mark providers commands for airflowctl(#68525) 
(#69232)
     add e9eda507cc8 [v3-3-test] [AIP-94] Mark config CLI commands as migrated 
to airflowctl (#68958) (#69258)
     add e3418895b40 [v3-3-test] Fix retry policy overrides not persisted to 
task instance history (#69235) (#69241)
     add 7fe134e787d [v3-3-test] Fix deadline callback data persistence 
(#69073) (#69259)
     add 767cee3c466 [v3-3-test] Clarify when last_automated_data_interval is 
None in timetable docs (#68461) (#69227)
     add 58ba8d0b11c [v3-3-test] Fix OTel integration test after task.execute 
span addition (#69236) (#69246)
     add 9b5619bf758 [v3-3-test] Fix new DAG versions from serializing a 
retry_policy object (#69243) (#69315)
     add d7fb68d6c1a [v3-3-test] Rename `state-store cleanup-task-state-store` 
command to `state-store clean` (#69316) (#69322)
     add 40a5886d5fd [v3-3-test] Fix details panel header overlapping the tabs 
(#69255) (#69318)
     add 95a48f50c17 [v3-3-test] Fix asset event ingestion crash for Dags using 
FixedKeyMapper (#69311) (#69326)
     add 31c43996908 [v3-3-test] Add auto area labels for ts-sdk and java-sdk 
PRs (#69325) (#69331)
     add dd82de68a08 [v3-3-test] Update upload-artifact gh action (#69256) 
(#69268)
     add 72690fc96d8 [v3-3-test] Gate provider release on artifact completeness 
check before vote (#69141) (#69180)
     add 8501719fee6 [v3-3-test] Auto-allow breeze in the Claude Code isolated 
agent setup (#69094) (#69129)
     add 72e765fca9a [v3-3-test] Add docker stack docs example for venv scene 
(#69088) (#69112)
     add 3ef41002362 Remove unused ts-sdk label rule from Boring Cyborg config 
(#69340)
     add ddf77762676 Reduce noise in the daily CI duration trend alert (#69113) 
(#69337)
     add 2a67b2dc877 [v3-3-test] Update local Otel Collector and Prometheus 
Versions to support Exponential Histograms. (#69040) (#69056)
     add 777ee081cc8 [v3-3-test] [AIP-94] Mark variables CLI commands as 
migrated to airflowctl (#68932) (cherry picked from commit 
b74521b54885092613439fa5dbf1e50472dcd9e9)

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   (521eb584f3f)
            \
             N -- N -- N   refs/heads/backport-b74521b-v3-3-test (777ee081cc8)

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:
 .../setup-isolated-setup-install.md                |  81 +++++++++++++
 .github/CODEOWNERS                                 |  12 +-
 .github/actions/post_tests_failure/action.yml      |   6 +-
 .github/actions/post_tests_success/action.yml      |   2 +-
 .github/boring-cyborg.yml                          |   9 ++
 .github/workflows/ci-duration-monitor.yml          |  13 ++
 RELEASE_NOTES.rst                                  | 135 +++++++++++----------
 .../logging-monitoring/metrics.rst                 |  36 ++++++
 .../task-and-asset-state-store-cleanup.rst         |   4 +-
 .../task-and-asset-state-store.rst                 |   6 +-
 airflow-core/docs/howto/set-up-database.rst        |  12 +-
 airflow-core/docs/howto/timetable.rst              |   9 ++
 airflow-core/newsfragments/69143.bugfix.rst        |   1 +
 .../execution_api/routes/task_instances.py         |   7 ++
 airflow-core/src/airflow/assets/manager.py         |   2 +-
 airflow-core/src/airflow/cli/cli_config.py         |  13 +-
 .../src/airflow/cli/commands/config_command.py     |   3 +
 .../src/airflow/cli/commands/provider_command.py   |   3 +
 .../airflow/cli/commands/state_store_command.py    |  17 ++-
 .../src/airflow/config_templates/config.yml        |   4 +-
 airflow-core/src/airflow/models/base.py            |   2 +-
 airflow-core/src/airflow/models/deadline.py        |  29 +++--
 airflow-core/src/airflow/partition_mappers/base.py |   4 +
 .../src/airflow/partition_mappers/fixed_key.py     |  23 ++--
 .../serialization/definitions/mappedoperator.py    |   4 +
 airflow-core/src/airflow/serialization/encoders.py |   5 +-
 .../airflow/serialization/serialized_objects.py    |  17 ++-
 airflow-core/src/airflow/timetables/base.py        |   3 +
 airflow-core/src/airflow/timetables/interval.py    |  26 +++-
 .../src/airflow/ui/src/components/HeaderCard.tsx   |   2 +-
 airflow-core/tests/integration/otel/test_otel.py   |   3 +-
 .../versions/head/test_task_instances.py           |  48 ++++++++
 .../unit/cli/commands/test_command_deprecations.py |  13 +-
 .../unit/cli/commands/test_state_store_command.py  |  40 +++---
 airflow-core/tests/unit/models/test_deadline.py    |  65 +++++++++-
 .../tests/unit/partition_mappers/test_base.py      |  14 +++
 .../tests/unit/partition_mappers/test_fixed_key.py |  20 +++
 .../unit/serialization/test_serialized_objects.py  | 106 +++++++++++++++-
 airflow-core/tests/unit/state/test_metastore.py    |   2 +-
 .../unit/timetables/test_interval_timetable.py     |  84 +++++++++++++
 dev/README_RELEASE_PROVIDERS.md                    |  14 +++
 docker-stack-docs/build.rst                        |  22 ++++
 .../Dockerfile                                     |   3 +-
 .../extending/add-python-venv/requirements.txt     |   1 +
 docs/spelling_wordlist.txt                         |   1 +
 .../src/airflow/providers/sqlite/hooks/sqlite.py   |   4 +-
 reproducible_build.yaml                            |   4 +-
 scripts/ci/docker-compose/integration-otel.yml     |   7 +-
 .../ci/docker-compose/otel-collector-config.yml    |   7 +-
 .../sdk/definitions/partition_mappers/fixed_key.py |   2 +-
 50 files changed, 786 insertions(+), 164 deletions(-)
 create mode 100644 .apache-magpie-overrides/setup-isolated-setup-install.md
 create mode 100644 airflow-core/newsfragments/69143.bugfix.rst
 copy docker-stack-docs/docker-examples/extending/{add-requirement-packages => 
add-python-venv}/Dockerfile (89%)
 create mode 100644 
docker-stack-docs/docker-examples/extending/add-python-venv/requirements.txt

Reply via email to