This is an automated email from the ASF dual-hosted git repository.
eladkal 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 3ce7cbbda1 add description of breaking changes (#28582)
3ce7cbbda1 is described below
commit 3ce7cbbda178799c6a07bed9ca695957affdff98
Author: Daniel Reeves <[email protected]>
AuthorDate: Fri Dec 30 11:47:29 2022 -0500
add description of breaking changes (#28582)
---
airflow/providers/amazon/CHANGELOG.rst | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/airflow/providers/amazon/CHANGELOG.rst
b/airflow/providers/amazon/CHANGELOG.rst
index c3b96a7c79..c0f55d414d 100644
--- a/airflow/providers/amazon/CHANGELOG.rst
+++ b/airflow/providers/amazon/CHANGELOG.rst
@@ -30,13 +30,20 @@ Changelog
Breaking changes
~~~~~~~~~~~~~~~~
-TODO: add good description of Secrets Backend breaking changes as implemented
in
-https://github.com/apache/airflow/pull/27920
+JSON secrets in the 'SecretsManagerBackend' are never interpreted as
urlencoded. In ``5.x`` and ``6.x``, the
+code would infer whether the JSON secret values were urlencoded based on
context clues; now the unaltered
+values are *always* used to construct ``Connection`` objects.
Pandas is now an optional dependency of the provider. The ``SqlToS3Operator``
and ``HiveToDynamoDBOperator``
require Pandas to be installed (you can install it automatically by adding
``[pandas]`` extra when installing
the provider.
+Features
+~~~~~~~~
+
+* ``Deprecate 'full_url_mode' for SecretsManagerBackend; whether a secret is a
JSON or URL is inferred (#27920)``
+
+
6.2.0
.....