Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
apache-airflow[google]==2.6.3
apache-airflow-providers-apache-beam==5.1.1
apache-airflow-providers-slack==7.3.2
apache-airflow-providers-http==4.4.2
apache-airflow-providers-http==6.0.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

Updating apache-airflow-providers-http to version 6.0.0 introduces a breaking change that will cause the SlackWebhookOperator used in the sample DAG to fail.

Version 6.0.0 of the HTTP provider now strictly expects a JSON response from HTTP calls made via HttpHook, and will raise an exception if the response is not valid JSON. The Slack webhook API returns a simple ok text response, which will cause a JSONDecodeError and break the failure notification mechanism.

This issue is resolved in apache-airflow-providers-slack version 8.0.0 and later. To fix this, you must also upgrade apache-airflow-providers-slack to a compatible version (e.g., 8.0.0).

Additionally, as noted in the comment at the top of this file, the corresponding constraints.txt file must be updated to reflect the new versions for both apache-airflow-providers-http and apache-airflow-providers-slack.