You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/09/28 12:31:09 UTC

[airflow] branch main updated: Fix errors in CHANGELOGS for slack and amazon (#26746)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new ec1615b589 Fix errors in CHANGELOGS for slack and amazon (#26746)
ec1615b589 is described below

commit ec1615b589d60416cac449bea5fa777a5eda4757
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Wed Sep 28 14:31:00 2022 +0200

    Fix errors in CHANGELOGS for slack and amazon (#26746)
---
 airflow/providers/amazon/CHANGELOG.rst | 2 +-
 airflow/providers/slack/CHANGELOG.rst  | 9 ++++-----
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/airflow/providers/amazon/CHANGELOG.rst b/airflow/providers/amazon/CHANGELOG.rst
index e0d3ff471e..336763383c 100644
--- a/airflow/providers/amazon/CHANGELOG.rst
+++ b/airflow/providers/amazon/CHANGELOG.rst
@@ -32,7 +32,7 @@ Breaking changes
 
 .. warning::
   In this version of provider Amazon S3 Connection (``conn_type="s3"``) removed due to the fact that it was always
-  an alias to :ref:`Amazon Web Services Connection <howto/connection:aws>` (``conn_type="aws"``).
+  an alias to AWS connection ``conn_type="aws"``
   In practice the only impact is you won't be able to ``test`` the connection in the web UI / API.
   In order to restore ability to test connection you need to change connection type from **Amazon S3** (``conn_type="s3"``)
   to **Amazon Web Services** (``conn_type="aws"``) manually.
diff --git a/airflow/providers/slack/CHANGELOG.rst b/airflow/providers/slack/CHANGELOG.rst
index 1bcf485c89..a3ff173645 100644
--- a/airflow/providers/slack/CHANGELOG.rst
+++ b/airflow/providers/slack/CHANGELOG.rst
@@ -30,11 +30,10 @@ Changelog
 Breaking changes
 ~~~~~~~~~~~~~~~~
 
-* The hook class  :class:`airflow.providers.slack.hooks.slack_webhook.SlackWebhookHook` not inherit from
-  :class:`airflow.providers.http.hooks.http.HttpHook` anymore. In practice the only impact on
-  user-defined classes based on **SlackWebhookHook** and you use attributes from **HttpHook**.
-* Drop support deprecated ``webhook_token`` parameter in
-  :ref:`Slack Incoming Webhook Connection <howto/connection:slack-incoming-webhook>` Extra.
+* The hook class  ``SlackWebhookHook`` dies not inherit from ``HttpHook`` anymore. In practice the
+  only impact on user-defined classes based on **SlackWebhookHook** and you use attributes
+  from **HttpHook**.
+* Drop support deprecated ``webhook_token`` parameter in ``slack-incoming-webhook`` extra.
 
 * ``Refactor 'SlackWebhookOperator': Get rid of mandatory http-provider dependency (#26648)``
 * ``Refactor SlackWebhookHook in order to use 'slack_sdk' instead of HttpHook methods (#26452)``