This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch add-better-dependencies-diagnostics
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 9663bcbc31 Better diagnostics in case someone modified the
dependencies file
omit 6349b5e578 Move provider dependencies to inside provider folders
add 41aa9ab0e1 Upgrade more javascript files to typescript (#24715)
add 0de31bd73a Move provider dependencies to inside provider folders
(#24672)
add d725625799 Fix grid date ticks (#24738)
add 7e6c9387d8 Use LTS version of node for pre-commit checks (#24688)
add 737e2f5141 Update command from breeze to command (#24741)
add 9d307102b4 More typing and minor refactor for kubernetes (#24719)
add 206e6400c1 Remove defaults from Airflow test config (#24263)
add a7d04cf037 (GitHub CI) update most CI workflows (stale, build-images,
etc) (#24705)
add fab2913d1a Fix purge_inactive_dag_warnings filter (#24749)
new a943509ee6 Better diagnostics in case someone modified the
dependencies file
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 (9663bcbc31)
\
N -- N -- N refs/heads/add-better-dependencies-diagnostics
(a943509ee6)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/build-images.yml | 20 +--
.github/workflows/ci.yml | 168 ++++++++++-----------
.github/workflows/codeql-analysis.yml | 12 +-
.github/workflows/release_dockerhub_image.yml | 8 +-
.github/workflows/stale.yml | 2 +-
.pre-commit-config.yaml | 1 +
BREEZE.rst | 2 +-
airflow/config_templates/default_test.cfg | 65 --------
airflow/kubernetes/pod_generator.py | 2 +-
airflow/models/dagwarning.py | 18 +--
.../providers/cncf/kubernetes/hooks/kubernetes.py | 17 +--
.../cncf/kubernetes/operators/kubernetes_pod.py | 24 +--
.../js/grid/{AutoRefresh.jsx => AutoRefresh.tsx} | 2 +-
.../js/grid/{ResetRoot.jsx => ResetRoot.tsx} | 0
.../js/grid/{ToggleGroups.jsx => ToggleGroups.tsx} | 19 ++-
.../{Clipboard.test.jsx => Clipboard.test.tsx} | 0
.../components/{Clipboard.jsx => Clipboard.tsx} | 6 +-
.../{LinkButton.test.jsx => LinkButton.test.tsx} | 0
.../components/{LinkButton.jsx => LinkButton.tsx} | 8 +-
.../{TaskName.test.jsx => TaskName.test.tsx} | 6 +-
.../grid/components/{TaskName.jsx => TaskName.tsx} | 11 +-
.../context/{autorefresh.jsx => autorefresh.tsx} | 22 ++-
airflow/www/static/js/grid/dagRuns/Bar.tsx | 6 +-
.../js/grid/dagRuns/{Tooltip.jsx => Tooltip.tsx} | 7 +-
.../dagRuns/{index.test.jsx => index.test.tsx} | 116 ++++++++------
.../{ConfirmDialog.jsx => ConfirmDialog.tsx} | 14 +-
.../content/dagRun/{index.jsx => index.tsx} | 7 +-
.../taskInstance/{Details.jsx => Details.tsx} | 20 ++-
.../{ExtraLinks.jsx => ExtraLinks.tsx} | 12 +-
.../content/taskInstance/{Nav.jsx => Nav.tsx} | 27 +++-
.../js/grid/details/content/taskInstance/index.tsx | 3 +-
airflow/www/static/js/grid/renderTaskRows.tsx | 2 +-
tests/core/test_config_templates.py | 6 -
.../cncf/kubernetes/hooks/test_kubernetes.py | 6 +-
tests/utils/test_email.py | 8 +-
35 files changed, 346 insertions(+), 301 deletions(-)
rename airflow/www/static/js/grid/{AutoRefresh.jsx => AutoRefresh.tsx} (97%)
rename airflow/www/static/js/grid/{ResetRoot.jsx => ResetRoot.tsx} (100%)
rename airflow/www/static/js/grid/{ToggleGroups.jsx => ToggleGroups.tsx} (81%)
rename airflow/www/static/js/grid/components/{Clipboard.test.jsx =>
Clipboard.test.tsx} (100%)
rename airflow/www/static/js/grid/components/{Clipboard.jsx => Clipboard.tsx}
(95%)
rename airflow/www/static/js/grid/components/{LinkButton.test.jsx =>
LinkButton.test.tsx} (100%)
rename airflow/www/static/js/grid/components/{LinkButton.jsx =>
LinkButton.tsx} (79%)
rename airflow/www/static/js/grid/components/{TaskName.test.jsx =>
TaskName.test.tsx} (86%)
rename airflow/www/static/js/grid/components/{TaskName.jsx => TaskName.tsx}
(91%)
rename airflow/www/static/js/grid/context/{autorefresh.jsx => autorefresh.tsx}
(87%)
rename airflow/www/static/js/grid/dagRuns/{Tooltip.jsx => Tooltip.tsx} (93%)
rename airflow/www/static/js/grid/dagRuns/{index.test.jsx => index.test.tsx}
(54%)
rename airflow/www/static/js/grid/details/content/{ConfirmDialog.jsx =>
ConfirmDialog.tsx} (90%)
rename airflow/www/static/js/grid/details/content/dagRun/{index.jsx =>
index.tsx} (96%)
rename airflow/www/static/js/grid/details/content/taskInstance/{Details.jsx =>
Details.tsx} (87%)
rename airflow/www/static/js/grid/details/content/taskInstance/{ExtraLinks.jsx
=> ExtraLinks.tsx} (87%)
rename airflow/www/static/js/grid/details/content/taskInstance/{Nav.jsx =>
Nav.tsx} (86%)