You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by gi...@apache.org on 2021/03/30 03:22:21 UTC

[airflow] tag nightly-master updated (b8cf46a -> 9ca49b6)

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

github-bot pushed a change to tag nightly-master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


*** WARNING: tag nightly-master was modified! ***

    from b8cf46a  (commit)
      to 9ca49b6  (commit)
    from b8cf46a  More proper default value for namespace in K8S cleanup-pods CLI (#15060)
     add 9b428bb  Fix autocommit calls for mysql-connector-python (#14869)
     add e7eb449  Remove extra/needless deprecation warnings from airflow.contrib module (#15065)
     add def9615  Scheduler: Remove TIs from starved pools from the critical path. (#14476)
     add a7a558e  Loosen cassandra-driver requirement to allow latest version (#15022)
     add 1627323  Faster default role syncing during webserver start (#15017)
     add b4374d3  turn off autocomplete for connection forms (#15073)
     add 57388ef  Prevent clickable bad links on disabled pagination (#15074)
     add 2e3eb42  Add different modes to sort dag files for parsing (#15046)
     add 85e0e76  Pin flynt to fix failing PRs (#15076)
     add 6415489  The --force-pull-images is restored in breeze (#15063)
     add 7949226  Fix typo in task_runner for ``AirflowConfigException`` (#15067)
     add 9ca49b6  Add query mutations to new UI (#15068)

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |   6 +-
 airflow/config_templates/config.yml                |  16 +++
 airflow/config_templates/default_airflow.cfg       |  11 ++
 airflow/configuration.py                           |  10 ++
 airflow/contrib/__init__.py                        |   4 -
 airflow/contrib/operators/__init__.py              |   8 --
 airflow/jobs/scheduler_job.py                      |   6 +-
 airflow/providers/apache/hive/hooks/hive.py        |   2 +-
 airflow/providers/mysql/hooks/mysql.py             |  40 +++++--
 airflow/task/task_runner/__init__.py               |   2 +-
 airflow/ui/src/api/index.ts                        | 122 ++++++++++++++++++++-
 airflow/ui/src/components/TriggerRunModal.tsx      |  83 ++++++++++++++
 airflow/ui/src/interfaces/api.ts                   |   7 ++
 .../{views/Pipeline/ti/XCom.tsx => utils/memo.ts}  |  16 ++-
 airflow/ui/src/views/Pipelines/Row.tsx             | 115 +++++++++++++++++++
 airflow/ui/src/views/Pipelines/index.tsx           |  33 +-----
 airflow/ui/test/Pipelines.test.tsx                 |  43 +++++++-
 airflow/utils/dag_processing.py                    |  40 ++++++-
 airflow/utils/file.py                              |   8 +-
 airflow/www/security.py                            |  67 +++++++++--
 airflow/www/static/js/connection_form.js           |   4 +
 airflow/www/utils.py                               |  10 +-
 breeze-complete                                    |   2 +-
 pylintrc                                           |   2 +
 pylintrc-tests                                     |   2 +
 setup.py                                           |   2 +-
 tests/jobs/test_scheduler_job.py                   |  75 +++++++++++++
 .../apache/cassandra/hooks/test_cassandra.py       |  25 ++---
 tests/providers/apache/hive/hooks/test_hive.py     |   2 +-
 tests/providers/mysql/hooks/test_mysql.py          |  34 +++++-
 tests/utils/test_dag_processing.py                 |  97 ++++++++++++++++
 tests/www/test_security.py                         |  58 +++++++++-
 32 files changed, 839 insertions(+), 113 deletions(-)
 create mode 100644 airflow/ui/src/components/TriggerRunModal.tsx
 copy airflow/ui/src/{views/Pipeline/ti/XCom.tsx => utils/memo.ts} (76%)
 create mode 100644 airflow/ui/src/views/Pipelines/Row.tsx