This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/typescript-f69e93698d
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 009af001f61 Bump the typescript group across 1 directory with 5 updates
add 5337b057d1c cncf-kubernetes: fix potential race condition in
trigger_reentry flow caused by `is_istio_enabled` (#69269)
add b71a6407919 Upgrade http to https in PR template (#70063)
add a76701fb474 Make schema_fields templated in GCSToBigQueryOperator
(#69108)
add e0cb240c64f docs: fix stale Airflow 2.0 references in dev/README.md
(#69961)
add 4c1ce4e3ff3 Refactor get_statsd_logger to use keyword arguments for
clarity and add a test for ipv6 support in StatsD logger (#69632)
add e6d898c2390 Let area:e2e-tests label force the airflow-e2e-tests suite
(#69993)
add 4dc4ebff93f Automate keeping documented "tested with" versions in sync
with the test matrix (#69124)
add 45df400413e Fix Breeze OpenLineage integration gate stuck on stale
Postgres versions (#69264)
add 3561a17b4b6 Bump @visx/shape from 3.12.0 to 4.0.0 in
/airflow-core/src/airflow/ui (#69722)
add 351f3895738 Rename Task and Asset store to Task and Asset state store
(#70097)
add 0cb7f218e04 i18n(ko): add missing translation for
triggerDag.partitionKeyHelp (#70005)
add 60b1848e4c6 Add integration tests for coordinator-mode TypeScript
tasks (#69328)
add 58e124b8877 Suppress noisy Alembic plugin setup logs (#69916)
add 5c900cc018a Fix ClickHouse test_connection unit test failing with
newer clickhouse-connect (#70114)
add 19cc828aed8 Add running_pod_log_lines config option to
KubernetesExecutor (#69301)
add a950b50d58e Bump the core-ui-package-updates group across 1 directory
with 4 updates (#70037)
add 10c5ed2a849 Bump the typescript group across 1 directory with 5 updates
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 (009af001f61)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/typescript-f69e93698d
(10c5ed2a849)
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/PULL_REQUEST_TEMPLATE.md | 2 +-
.github/boring-cyborg.yml | 3 +
.github/workflows/additional-prod-image-tests.yml | 16 +
.github/workflows/airflow-e2e-tests.yml | 24 +-
.github/workflows/ci-amd.yml | 2 +
.github/workflows/ci-arm.yml | 2 +
.pre-commit-config.yaml | 6 +
.../core-concepts/task-and-asset-state-store.rst | 16 +-
airflow-core/docs/installation/prerequisites.rst | 4 +
airflow-core/src/airflow/ui/package.json | 10 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 400 +++++++++++----------
.../ui/public/i18n/locales/ko/components.json | 1 +
.../docker/ts.yml | 37 +-
.../tests/airflow_e2e_tests/conftest.py | 94 +++++
.../tests/airflow_e2e_tests/constants.py | 10 +
.../airflow_e2e_tests/ts_sdk_tests}/__init__.py | 0
.../ts_sdk_tests/test_ts_sdk_dag.py | 134 +++++++
dev/README.md | 12 +-
dev/breeze/doc/ci/04_selective_checks.md | 2 +
.../images/output_testing_airflow-e2e-tests.svg | 2 +-
.../images/output_testing_airflow-e2e-tests.txt | 2 +-
.../airflow_breeze/commands/testing_commands.py | 1 +
.../airflow_breeze/utils/docker_command_utils.py | 8 +-
.../src/airflow_breeze/utils/selective_checks.py | 20 ++
dev/breeze/tests/test_docker_command_utils.py | 82 +++++
dev/breeze/tests/test_selective_checks.py | 39 ++
.../unit/clickhousedb/hooks/test_clickhouse.py | 9 +-
providers/cncf/kubernetes/provider.yaml | 9 +
.../kubernetes/executors/kubernetes_executor.py | 8 +
.../providers/cncf/kubernetes/get_provider_info.py | 7 +
.../providers/cncf/kubernetes/operators/pod.py | 13 +-
.../executors/test_kubernetes_executor.py | 15 +
.../google/cloud/transfers/gcs_to_bigquery.py | 2 +
.../google/cloud/transfers/test_gcs_to_bigquery.py | 31 ++
scripts/ci/prek/common_prek_utils.py | 36 +-
scripts/ci/prek/update_tested_versions.py | 209 +++++++++++
scripts/tests/ci/prek/test_common_prek_utils.py | 40 +++
.../tests/ci/prek/test_update_tested_versions.py | 123 +++++++
.../src/airflow_shared/logging/structlog.py | 1 +
shared/logging/tests/logging/test_structlog.py | 13 +
.../observability/metrics/statsd_logger.py | 7 +-
.../tests/observability/metrics/test_stats.py | 7 +
ts-sdk/example/.gitignore | 1 +
43 files changed, 1212 insertions(+), 248 deletions(-)
copy scripts/ci/docker-compose/integration-mongo.yml =>
airflow-e2e-tests/docker/ts.yml (52%)
copy {airflow-core/src/airflow/_shared =>
airflow-e2e-tests/tests/airflow_e2e_tests/ts_sdk_tests}/__init__.py (100%)
create mode 100644
airflow-e2e-tests/tests/airflow_e2e_tests/ts_sdk_tests/test_ts_sdk_dag.py
create mode 100755 scripts/ci/prek/update_tested_versions.py
create mode 100644 scripts/tests/ci/prek/test_update_tested_versions.py