You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2022/04/08 20:02:20 UTC

[airflow] branch oracle-operator-template-parameters updated (a258f51bf3 -> 0519eac12a)

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

kaxilnaik pushed a change to branch oracle-operator-template-parameters
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard a258f51bf3 Add 'parameters' to templated fields
     add 8b27e59669 Bring back limits on branches/tags builds in Airlfow repo (#22855)
     add fe2d9698fd Docs: `remote_log_conn_id` can also be used to write logs (#22844)
     add 34d2dd8853 Add more fields to REST API dags/dag_id/details endpoint (#22756)
     add a7b1f62d9c fix message in prepare_provider_packages.py (#22856)
     add 6aa65a38e0 Add example DAG for demonstrating usage of GCS sensors (#22808)
     add b29cbbdc1b Support log download in task log view (#22804)
     add 85da728de7 Better handle auto-refresh errors (#22840)
     add 90cc4b2b36 Add XComArg to lazy-imported list of Airflow module (#22862)
     add 09e6f072c1 Add `pre-commit` to check that `REVISION_HEADS_MAP` is up-to-date (#22860)
     add 5ec0bab053 Add securityContext config for Redis to helm chart (#22182)
     add 0519eac12a Add 'parameters' to templated fields

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   (a258f51bf3)
            \
             N -- N -- N   refs/heads/oracle-operator-template-parameters (0519eac12a)

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/ci.yml                           |  1 +
 .pre-commit-config.yaml                            |  5 ++
 BREEZE.rst                                         | 33 ++++++------
 STATIC_CODE_CHECKS.rst                             |  2 +
 airflow/__init__.py                                | 30 ++++++++---
 airflow/api_connexion/openapi/v1.yaml              | 42 +++++++++++++++
 airflow/api_connexion/schemas/dag_schema.py        |  5 ++
 airflow/config_templates/config.yml                |  3 +-
 airflow/config_templates/default_airflow.cfg       |  3 +-
 .../google/cloud/example_dags/example_gcs.py       | 47 +++++++++++++---
 .../google/common/utils/id_token_credentials.py    |  2 +-
 airflow/www/static/js/ti_log.js                    | 24 +++++++++
 airflow/www/static/js/tree/api/useTreeData.js      | 30 ++++++-----
 .../www/static/js/tree/api/useTreeData.test.jsx    |  3 +-
 airflow/www/templates/airflow/ti_log.html          |  5 +-
 breeze-complete                                    |  1 +
 chart/templates/redis/redis-statefulset.yaml       |  2 +
 chart/values.schema.json                           | 18 +++++++
 chart/values.yaml                                  |  7 +++
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |  1 +
 dev/provider_packages/prepare_provider_packages.py |  2 +-
 .../operators/cloud/gcs.rst                        | 26 +++++++++
 .../ci/pre_commit/pre_commit_version_heads_map.py  | 62 ++++++++++++++++++++++
 tests/api_connexion/endpoints/test_dag_endpoint.py | 24 +++++++++
 tests/api_connexion/schemas/test_dag_schema.py     |  8 ++-
 tests/charts/test_security_context.py              | 20 +++++--
 26 files changed, 346 insertions(+), 60 deletions(-)
 create mode 100755 scripts/ci/pre_commit/pre_commit_version_heads_map.py