You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/07/20 12:42:29 UTC

[airflow] branch simplify-www-asset-compilation updated (dc46ffa0bf -> 1a949e4d73)

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

potiuk pushed a change to branch simplify-www-asset-compilation
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard dc46ffa0bf Move javascript compilation to host
     add 8923e3ab03 Update description of branch creation to include the new Breeze (#25155)
     add 38d6c28f9c Generate typescript types from rest API docs (#25123)
     add de6938e173 No grid auto-refresh for backfill dag runs (#25042)
     add 1a949e4d73 Move javascript compilation to host

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   (dc46ffa0bf)
            \
             N -- N -- N   refs/heads/simplify-www-asset-compilation (1a949e4d73)

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:
 .pre-commit-config.yaml                            |    2 +-
 Dockerfile.ci                                      |    2 +
 airflow/api_connexion/openapi/v1.yaml              |    2 +
 airflow/www/alias-rest-types.js                    |  201 +
 airflow/www/package.json                           |    6 +-
 airflow/www/static/js/api/useDatasets.ts           |    4 +-
 airflow/www/static/js/api/useGridData.test.js      |   30 +-
 airflow/www/static/js/api/useGridData.ts           |    2 +-
 ...useMappedInstances.js => useMappedInstances.ts} |   33 +-
 airflow/www/static/js/api/useTasks.ts              |    5 +-
 airflow/www/static/js/components/Time.tsx          |    2 +-
 airflow/www/static/js/dag/InstanceTooltip.tsx      |    2 +-
 .../www/static/js/dag/details/{Dag.jsx => Dag.tsx} |   62 +-
 .../{MappedInstances.jsx => MappedInstances.tsx}   |   43 +-
 .../static/js/dag/details/taskInstance/index.tsx   |    6 +-
 airflow/www/static/js/types/api-generated.ts       | 4098 ++++++++++++++++++++
 airflow/www/static/js/types/index.ts               |   21 +-
 airflow/www/tsconfig.json                          |    1 +
 airflow/www/yarn.lock                              |   50 +
 dev/README_RELEASE_AIRFLOW.md                      |   18 +
 scripts/docker/entrypoint_ci.sh                    |    2 +
 scripts/in_container/_in_container_utils.sh        |   20 +-
 22 files changed, 4526 insertions(+), 86 deletions(-)
 create mode 100644 airflow/www/alias-rest-types.js
 rename airflow/www/static/js/api/{useMappedInstances.js => useMappedInstances.ts} (68%)
 rename airflow/www/static/js/dag/details/{Dag.jsx => Dag.tsx} (74%)
 rename airflow/www/static/js/dag/details/taskInstance/{MappedInstances.jsx => MappedInstances.tsx} (80%)
 create mode 100644 airflow/www/static/js/types/api-generated.ts