Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ repos:
files: ^airflow/www/
entry: ./scripts/ci/pre_commit/pre_commit_compile_www_assets.py
pass_filenames: false
additional_dependencies: ['yarn@1.22.19']
additional_dependencies: ['yarn@1.22.21']
- id: compile-www-assets-dev
name: Compile www assets in dev mode (manual)
language: node
Expand All @@ -790,7 +790,7 @@ repos:
files: ^airflow/www/
entry: ./scripts/ci/pre_commit/pre_commit_compile_www_assets_dev.py
pass_filenames: false
additional_dependencies: ['yarn@1.22.19']
additional_dependencies: ['yarn@1.22.21']
- id: check-providers-init-file-missing
name: Provider init file is missing
pass_filenames: false
Expand Down Expand Up @@ -1040,7 +1040,7 @@ repos:
'types_or': [javascript, ts, tsx, yaml, css, json]
files: ^airflow/www/static/js/|^airflow/api_connexion/openapi/v1\.yaml$
entry: ./scripts/ci/pre_commit/pre_commit_www_lint.py
additional_dependencies: ['yarn@1.22.19']
additional_dependencies: ['yarn@1.22.21', "openapi-typescript@>=6.7.4"]
pass_filenames: false
- id: check-tests-unittest-testcase
name: Check that unit tests do not inherit from unittest.TestCase
Expand Down
1 change: 1 addition & 0 deletions airflow/www/static/js/types/api-generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1376,6 +1376,7 @@ export interface components {
priority_weight?: number | null;
/** @description *Changed in version 2.1.1*: Field becomes nullable. */
operator?: string | null;
/** @description The datetime that the task enter the state QUEUE, also known as queue_at */
queued_when?: string | null;
pid?: number | null;
executor_config?: string;
Expand Down