This is an automated email from the ASF dual-hosted git repository. ash pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/airflow.git.
from 86ad628 More verbose logs when running `airflow check_migrations` (#15662) add d295e70 Mask passwords and sensitive info in task logs and UI (#15599) No new revisions were added by this update. Summary of changes: airflow/cli/commands/task_command.py | 5 + airflow/config_templates/airflow_local_settings.py | 10 + airflow/config_templates/config.yml | 34 +-- airflow/config_templates/default_airflow.cfg | 16 +- airflow/config_templates/default_test.cfg | 4 - airflow/configuration.py | 2 + airflow/hooks/base.py | 4 +- airflow/models/connection.py | 15 +- airflow/models/dag.py | 12 +- airflow/models/renderedtifields.py | 11 + airflow/models/variable.py | 13 +- airflow/sensors/smart_sensor.py | 7 + airflow/settings.py | 11 + airflow/typing_compat.py | 9 + airflow/utils/log/secrets_masker.py | 223 +++++++++++++++++++ airflow/www/utils.py | 57 +++-- airflow/www/views.py | 5 +- docs/apache-airflow/security/secrets/index.rst | 67 +++++- docs/apache-airflow/security/webserver.rst | 10 +- docs/apache-airflow/ui.rst | 10 +- tests/core/test_config_templates.py | 2 - tests/models/test_connection.py | 48 +++++ tests/models/test_renderedtifields.py | 28 ++- tests/models/test_variable.py | 40 ++++ tests/utils/log/test_secrets_masker.py | 236 +++++++++++++++++++++ tests/www/test_utils.py | 43 ---- 26 files changed, 783 insertions(+), 139 deletions(-) create mode 100644 airflow/utils/log/secrets_masker.py create mode 100644 tests/utils/log/test_secrets_masker.py