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

potiuk pushed a change to branch python3.12
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 0944463341 python 3.12 support
     add ce6ac41764 Displaying "actual" try number in TaskInstance view (#34635)
     add 12da83641c Added Carpe Data to the list of companies using Apache 
Airflow (#37118)
     add 3ec781946a Add secrets-backends section into the Yandex provider yaml 
definition (#37065)
     add fb27898a77 Introduce `DatasetOrTimeSchedule` (#36710)
     add 55cc7bda56 Updates to ECS Docs (#37125)
     add cea58c1111 fix: using endpoint from connection if not specified 
(#37076)
     add ecb7e3a56e Add Doctrine in users (#37135)
     add e1b032d05b Add clarification about DAG author capabilities to security 
model (#37141)
     add 5814e1c3d8 Switch instance type to m7g for ARM image building (#37134)
     add c381fdaff4 Upgrade trove-classifier in build dependencies after it's 
released (#37147)
     add 7324400c6b Allow running airflow against sqlite in-memory DB for tests 
(#37144)
     add 573d650708 AIP-58: Add object storage backend for xcom (#37058)
     add d987bce144 Revert the sequence of initializing configuration defaults 
(#37155)
     add 8217dc0d97 Temporary limit `pytest` to `<8.0` (#37157)
     add 83741051d5 Avoid `pendulum.from_timestamp` usage (#37160)
     add 4e9aabb51b Metric name matching - slightly clearer unit test (#37153)
     add 568fb7f81e python 3.12 support

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   (0944463341)
            \
             N -- N -- N   refs/heads/python3.12 (568fb7f81e)

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:
 INTHEWILD.md                                       |   2 +
 airflow/configuration.py                           |   3 +-
 airflow/example_dags/example_datasets.py           |  17 ++
 airflow/models/dag.py                              |   3 +
 airflow/models/taskinstance.py                     |  12 +
 airflow/models/xcom.py                             |  18 +-
 airflow/provider.yaml.schema.json                  |   7 +
 .../providers/amazon/aws/executors/ecs/Dockerfile  |   6 +-
 airflow/providers/common/io/provider.yaml          |  34 +++
 .../providers/{fab => common/io/xcom}/__init__.py  |  14 +-
 airflow/providers/common/io/xcom/backend.py        | 168 +++++++++++++
 .../elasticsearch/log/es_json_formatter.py         |   6 +-
 airflow/providers/yandex/provider.yaml             |   3 +
 airflow/providers/yandex/secrets/lockbox.py        |   7 +-
 airflow/serialization/serialized_objects.py        |  19 +-
 airflow/settings.py                                |  21 +-
 airflow/timetables/datasets.py                     |  92 +++++++
 airflow/timetables/simple.py                       |   4 +-
 airflow/utils/log/timezone_aware.py                |   4 +-
 airflow/utils/timezone.py                          |  22 ++
 airflow/www/views.py                               |   6 +-
 dev/breeze/README.md                               |   2 +-
 dev/breeze/pyproject.toml                          |   4 +-
 docker_tests/requirements.txt                      |   4 +-
 .../executors/ecs-executor.rst                     | 102 ++++----
 .../configurations-ref.rst                         |   0
 docs/apache-airflow-providers-common-io/index.rst  |   2 +
 .../xcom_backend.rst                               |  42 ++++
 .../yandex-cloud-lockbox-secret-backend.rst        |   2 +-
 .../authoring-and-scheduling/datasets.rst          |   9 +
 .../authoring-and-scheduling/timetable.rst         |  39 +++
 docs/apache-airflow/core-concepts/xcoms.rst        |  29 +++
 docs/apache-airflow/security/security_model.rst    |   6 +
 docs/spelling_wordlist.txt                         |   1 +
 pyproject.toml                                     |   8 +-
 .../ci_start_arm_instance_and_connect_to_docker.sh |   2 +-
 tests/core/test_settings.py                        |  24 +-
 tests/core/test_stats.py                           |   8 +-
 tests/models/test_taskinstance.py                  |   1 +
 tests/models/test_xcom.py                          |   4 +-
 .../providers/common/io/xcom}/__init__.py          |   0
 tests/providers/common/io/xcom/test_backend.py     | 263 +++++++++++++++++++++
 tests/providers/yandex/secrets/test_lockbox.py     |  39 ++-
 tests/timetables/test_datasets_timetable.py        | 182 ++++++++++++++
 tests/utils/test_timezone.py                       |  46 +++-
 45 files changed, 1179 insertions(+), 108 deletions(-)
 copy airflow/providers/{fab => common/io/xcom}/__init__.py (72%)
 create mode 100644 airflow/providers/common/io/xcom/backend.py
 create mode 100644 airflow/timetables/datasets.py
 copy docs/{apache-airflow-providers-amazon => 
apache-airflow-providers-common-io}/configurations-ref.rst (100%)
 create mode 100644 docs/apache-airflow-providers-common-io/xcom_backend.rst
 copy {airflow/api_connexion => tests/providers/common/io/xcom}/__init__.py 
(100%)
 create mode 100644 tests/providers/common/io/xcom/test_backend.py
 create mode 100644 tests/timetables/test_datasets_timetable.py

Reply via email to