Removed deprecated functions and modules from airflow.www
module.
- Config flag default warning
cookie_samesite
option in section[webserver]
removed. - Legacy decorator
@has_access
inairflow.www.auth
: Please use one of the decoratorhas_access_*
defined in airflow/www/auth.py instead. - Removed legacy modules
airflow.www.security
: Should be inherited fromairflow.providers.fab.auth_manager.security_manager.override.FabAirflowSecurityManagerOverride
instead. The constant valueEXISTING_ROLES
should be used fromairflow.www.security_manager
module. - Removed the method
get_sensitive_variables_fields()
fromairflow.www.utils
: Please useairflow.utils.log.secrets_masker.get_sensitive_variables_fields
instead. - Removed the method
should_hide_value_for_key()
fromairflow.www.utils
: Please useairflow.utils.log.secrets_masker.should_hide_value_for_key
instead.