kaxil commented on code in PR #41395: URL: https://github.com/apache/airflow/pull/41395#discussion_r1713499614
########## newsfragments/41395.significant.rst: ########## @@ -0,0 +1,12 @@ +**Breaking Change** + +The following deprecated functions, constants, and classes have been removed as part of Airflow 3.0: + +- ``airflow.executors.executor_loader.UNPICKLEABLE_EXECUTORS``: No direct replacement; this constant is no longer needed. +- ``airflow.utils.dag_cycle_tester.test_cycle`` function: Use ``airflow.utils.dag_cycle_tester.check_cycle`` instead. +- ``airflow.utils.file.TemporaryDirectory`` function: Use ``tempfile.TemporaryDirectory`` instead. +- ``airflow.utils.file.mkdirs`` function: Use ``pathlib.Path.mkdir`` instead. +- ``airflow.utils.state.SHUTDOWN`` state: No action needed; this state is no longer used. +- ``airflow.utils.state.terminating_states`` constant: No action needed; this constant is no longer used. + +Users should update their code to remove dependencies on these deprecated features to ensure compatibility with future Airflow versions. Review Comment: ```suggestion ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
