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

ash pushed a change to branch structlog-in-logging-mixin
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit e0e9a7d120f Remove check for caplog in tests
    omit b8406dbeb87 Overhaull all Airflow logging to use structlog
     add b94a95a95b8 Add Catalan language to Airflow (#55013)
     add 4a80df4ff61 Fix, cleanup and refactor adding apt dependencies when 
building image (#55151)
     add 04ed608bc4e Overhaull all Airflow logging to use structlog
     add a8432148c6b Remove check for caplog in tests

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   (e0e9a7d120f)
            \
             N -- N -- N   refs/heads/structlog-in-logging-mixin (a8432148c6b)

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/CODEOWNERS                                 |   1 +
 .github/boring-cyborg.yml                          |   3 +
 Dockerfile                                         | 146 +++++++++-
 Dockerfile.ci                                      | 148 ++++++++--
 airflow-core/pyproject.toml                        |   1 +
 .../src/airflow/jobs/scheduler_job_runner.py       |   2 +-
 .../airflow/ui/public/i18n/locales/ca/admin.json   | 167 +++++++++++
 .../airflow/ui/public/i18n/locales/ca/assets.json  |  30 ++
 .../airflow/ui/public/i18n/locales/ca/browse.json  |  26 ++
 .../airflow/ui/public/i18n/locales/ca/common.json  | 315 +++++++++++++++++++++
 .../ui/public/i18n/locales/ca/components.json      | 136 +++++++++
 .../src/airflow/ui/public/i18n/locales/ca/dag.json | 149 ++++++++++
 .../airflow/ui/public/i18n/locales/ca/dags.json    |  97 +++++++
 .../ui/public/i18n/locales/ca/dashboard.json       |  45 +++
 .../airflow/ui/public/i18n/locales/ca/hitl.json    |  31 ++
 .../airflow/ui/public/i18n/locales/ca/tasks.json   |  10 +
 airflow-core/src/airflow/ui/src/i18n/config.ts     |   1 +
 .../src/airflow/utils/log/logging_mixin.py         |   2 +-
 airflow-core/src/airflow/utils/retries.py          |   2 +-
 docker-stack-docs/changelog.rst                    |   5 +
 .../src/airflow/providers/amazon/aws/hooks/glue.py |   2 +-
 .../providers/amazon/aws/utils/task_log_fetcher.py |   2 +-
 .../airflow/providers/apache/beam/hooks/beam.py    |   8 +-
 .../databricks/plugins/databricks_workflow.py      |  12 +-
 .../airflow/providers/docker/operators/docker.py   |   9 +-
 .../google/cloud/utils/bigquery_get_data.py        |   2 +-
 .../airflow/providers/microsoft/psrp/hooks/psrp.py |   4 +-
 scripts/docker/install_os_dependencies.sh          | 141 ++++++++-
 shared/logging/pyproject.toml                      |   1 +
 .../src/airflow_shared/logging/structlog.py        |  27 +-
 .../airflow_shared/logging/{typing.py => types.py} |  14 +-
 .../src/airflow/sdk/definitions/_internal/node.py  |   7 +-
 task-sdk/src/airflow/sdk/types.py                  |   1 +
 33 files changed, 1458 insertions(+), 89 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ca/admin.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ca/assets.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ca/browse.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ca/common.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ca/components.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ca/dag.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ca/dags.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ca/dashboard.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ca/hitl.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/ca/tasks.json
 rename shared/logging/src/airflow_shared/logging/{typing.py => types.py} (60%)

Reply via email to