Andrey Anshin
Andrey Anshin
>@potiuk Not related to my changes but I'll keep updating from main until resolved. Seems like it is somehow related to #25980 I will have a look to it.
Even with this PR it is not possible to get rid of `apache-airflow-providers-http` dependency. Mainly because `SlackWebhookOperator` inherit from `SimpleHttpOperator` https://github.com/apache/airflow/blob/706a618014a6f94d5ead0476f26f79d9714bf93d/airflow/providers/slack/operators/slack_webhook.py#L28-L30 But actually it not use any feature of `SimpleHttpOperator`...
> @Taragolis - are you working on making some of the changes discussed ? I am gearing up to prepare a new provider's wave, so it would be great to...
Finally all checks passed. Today it takes a bit longer rather than usual.
@ChirangaL, I've made some suggestion to current existed PR: https://github.com/apache/airflow/pull/26269#discussion_r969486988 If I get you correct it should help in your case. It also possible to make this changes with individual...
> Can you explain why? 1. `SqlToSlackOperator` intends to use Slack Webhook ether based on Slack App or Slack Legacy Integrations but both won't support send file, which only allowed...
> If I'm using current operator to send message and now I want the exact same results just in file it require to switch to another operator As well as...
Right now there are 3 ways to send formatted message to slack 1. Use [Slack API](https://api.slack.com/) and [chat.postMessage](https://api.slack.com/methods/chat.postMessage). Supported by [Python Slack SDK](https://slack.dev/python-slack-sdk/web/index.html) 2. Use [Slack Incoming Webhook](https://api.slack.com/messaging/webhooks) based on...
> Does this mean that the SlackWebhookHook is deprecated? Not at all. It might use something that actually has no affect anymore and it is depend on what user actually...
@dwreeves very detail explanation 👍 💯 🥇 My thought about `ast.literal_eval` and `full_url_mode` argument. As I understand release after October 11, 2022 would `major` so it might allow breaking changes...