Prepare RC1 docs for June 2023 wave of Providers (#32001)

* Prepare RC1 docs for June 2023 wave of Providers
diff --git a/airflow/providers/airbyte/CHANGELOG.rst b/airflow/providers/airbyte/CHANGELOG.rst
index 06fe58d..271c689 100644
--- a/airflow/providers/airbyte/CHANGELOG.rst
+++ b/airflow/providers/airbyte/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+
+3.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.3.0
 .....
 
diff --git a/airflow/providers/airbyte/__init__.py b/airflow/providers/airbyte/__init__.py
index f637ede..b9f6cbd 100644
--- a/airflow/providers/airbyte/__init__.py
+++ b/airflow/providers/airbyte/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.3.0"
+__version__ = "3.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/airbyte/provider.yaml b/airflow/providers/airbyte/provider.yaml
index 2225fa3..49583d4 100644
--- a/airflow/providers/airbyte/provider.yaml
+++ b/airflow/providers/airbyte/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.3.1
   - 3.3.0
   - 3.2.1
   - 3.2.0
diff --git a/airflow/providers/alibaba/CHANGELOG.rst b/airflow/providers/alibaba/CHANGELOG.rst
index 1e9fed2..3c73089 100644
--- a/airflow/providers/alibaba/CHANGELOG.rst
+++ b/airflow/providers/alibaba/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+2.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 2.4.0
 .....
 
diff --git a/airflow/providers/alibaba/__init__.py b/airflow/providers/alibaba/__init__.py
index fa51368..2442a72 100644
--- a/airflow/providers/alibaba/__init__.py
+++ b/airflow/providers/alibaba/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.4.0"
+__version__ = "2.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/alibaba/provider.yaml b/airflow/providers/alibaba/provider.yaml
index ba926a9..aa2d998 100644
--- a/airflow/providers/alibaba/provider.yaml
+++ b/airflow/providers/alibaba/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 2.4.1
   - 2.4.0
   - 2.3.0
   - 2.2.0
diff --git a/airflow/providers/amazon/CHANGELOG.rst b/airflow/providers/amazon/CHANGELOG.rst
index a84be48..a337648 100644
--- a/airflow/providers/amazon/CHANGELOG.rst
+++ b/airflow/providers/amazon/CHANGELOG.rst
@@ -24,9 +24,67 @@
 Changelog
 ---------
 
+8.2.0
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+
+Features
+~~~~~~~~
+
+* ``Add deferrable option to EmrTerminateJobFlowOperator (#31646)``
+* ``Add Deferrable option to EmrCreateJobFlowOperator (#31641)``
+* ``Add deferrable mode to 'BatchSensor'  (#30279)``
+* ``Add deferrable mode for S3KeySensor (#31018)``
+* ``Add Deferrable mode to Emr Add Steps operator (#30928)``
+* ``Add deferrable mode in Redshift delete cluster (#30244)``
+* ``Add discoverability for triggers in provider.yaml (#31576)``
+* ``Add deferrable mode to AWS glue operators (Job & Crawl) (#30948)``
+* ``Add deferrable param in BatchOperator (#30865)``
+* ``Add Deferrable Mode to RedshiftCreateClusterSnapshotOperator (#30856)``
+* ``Deferrable mode for EksCreateFargateProfileOperator and EksDeleteFargateProfileOperator (#31657)``
+* ``allow anonymous AWS access (#31659)``
+* ``Support of wildcard in S3ListOperator and S3ToGCSOperator (#31640)``
+* ``Add 'deferrable' param in 'EmrContainerSensor' (#30945)``
+* ``Add realtime container execution logs for BatchOperator (#31837)``
+
+Bug Fixes
+~~~~~~~~~
+
+* ``Various fixes on ECS run task operator (#31838)``
+* ``fix return values on glue operators deferrable mode (#31694)``
+* ``Add back missing AsyncIterator import (#31710)``
+* ``Use a continuation token to get logs in ecs (#31824)``
+* ``Fetch status in while loop so as to not exit too early (#31804)``
+* ``[AWS hook] use provided client to get the official waiter on fallback (#31748)``
+* ``handle missing LogUri in emr 'describe_cluster' API response (#31482)``
+
+Misc
+~~~~
+
+* ``Add Python 3.11 support (#27264)``
+* ``Added config template field to EmrServerlessStartJobOperator (#31746)``
+* ``Add null check for host in Amazon Redshift connection (#31567)``
+* ``add workgroup to templated fields (#31574)``
+* ``Add docstring and signature for _read_remote_logs (#31623)``
+* ``Deprecate 'wait_for_completion' from 'EcsRegisterTaskDefinitionOperator' and 'EcsDeregisterTaskDefinitionOperator' (#31884)``
+* ``Remove Python 3.7 support (#30963)``
+* ``Change Deferrable implementation for RedshiftResumeClusterOperator to follow standard (#30864)``
+* ``Change Deferrable implementation for RedshiftPauseClusterOperator to follow standard (#30853)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check (#31742)``
+   * ``Add D400 pydocstyle check - Amazon provider only (#31423)``
+   * ``AWS system test example_dynamodb_to_s3: add retry when fecthing the export time (#31388)``
+   * ``Amazon provider docstring improvements (#31729)``
+   * ``Replace spelling directive with spelling:word-list (#31752)``
+   * ``Remove aws unused code (#31610)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
+
 8.1.0
 .....
 
diff --git a/airflow/providers/amazon/__init__.py b/airflow/providers/amazon/__init__.py
index 16dea22..cf6ef41 100644
--- a/airflow/providers/amazon/__init__.py
+++ b/airflow/providers/amazon/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "8.1.0"
+__version__ = "8.2.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/amazon/provider.yaml b/airflow/providers/amazon/provider.yaml
index 51af2e4..3680915 100644
--- a/airflow/providers/amazon/provider.yaml
+++ b/airflow/providers/amazon/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 8.2.0
   - 8.1.0
   - 8.0.0
   - 7.4.1
diff --git a/airflow/providers/apache/beam/CHANGELOG.rst b/airflow/providers/apache/beam/CHANGELOG.rst
index 7675498..72ce0e4 100644
--- a/airflow/providers/apache/beam/CHANGELOG.rst
+++ b/airflow/providers/apache/beam/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+5.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
 5.1.0
 .....
 
diff --git a/airflow/providers/apache/beam/__init__.py b/airflow/providers/apache/beam/__init__.py
index e62569b..101fb9d 100644
--- a/airflow/providers/apache/beam/__init__.py
+++ b/airflow/providers/apache/beam/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "5.1.0"
+__version__ = "5.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/beam/provider.yaml b/airflow/providers/apache/beam/provider.yaml
index bf23c51..d177e25 100644
--- a/airflow/providers/apache/beam/provider.yaml
+++ b/airflow/providers/apache/beam/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 5.1.1
   - 5.1.0
   - 5.0.0
   - 4.3.0
diff --git a/airflow/providers/apache/cassandra/CHANGELOG.rst b/airflow/providers/apache/cassandra/CHANGELOG.rst
index 576682e..69ddcff 100644
--- a/airflow/providers/apache/cassandra/CHANGELOG.rst
+++ b/airflow/providers/apache/cassandra/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/apache/cassandra/__init__.py b/airflow/providers/apache/cassandra/__init__.py
index 2bf7644..d640c26 100644
--- a/airflow/providers/apache/cassandra/__init__.py
+++ b/airflow/providers/apache/cassandra/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/cassandra/provider.yaml b/airflow/providers/apache/cassandra/provider.yaml
index 9c9d24f..54c11fc 100644
--- a/airflow/providers/apache/cassandra/provider.yaml
+++ b/airflow/providers/apache/cassandra/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.1
   - 3.1.0
diff --git a/airflow/providers/apache/drill/CHANGELOG.rst b/airflow/providers/apache/drill/CHANGELOG.rst
index 4ab4264..1be86af 100644
--- a/airflow/providers/apache/drill/CHANGELOG.rst
+++ b/airflow/providers/apache/drill/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+
+2.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
 2.4.0
 .....
 
diff --git a/airflow/providers/apache/drill/__init__.py b/airflow/providers/apache/drill/__init__.py
index 5e5fc65..078e191 100644
--- a/airflow/providers/apache/drill/__init__.py
+++ b/airflow/providers/apache/drill/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.4.0"
+__version__ = "2.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/drill/provider.yaml b/airflow/providers/apache/drill/provider.yaml
index cc1ad4c..4142332 100644
--- a/airflow/providers/apache/drill/provider.yaml
+++ b/airflow/providers/apache/drill/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 2.4.1
   - 2.4.0
   - 2.3.2
   - 2.3.1
diff --git a/airflow/providers/apache/druid/CHANGELOG.rst b/airflow/providers/apache/druid/CHANGELOG.rst
index eccc115..7285306 100644
--- a/airflow/providers/apache/druid/CHANGELOG.rst
+++ b/airflow/providers/apache/druid/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+3.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Apache provider docstring improvements (#31730)``
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
 3.4.0
 .....
 
diff --git a/airflow/providers/apache/druid/__init__.py b/airflow/providers/apache/druid/__init__.py
index fc6bce0..ec69b6b 100644
--- a/airflow/providers/apache/druid/__init__.py
+++ b/airflow/providers/apache/druid/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.0"
+__version__ = "3.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/druid/provider.yaml b/airflow/providers/apache/druid/provider.yaml
index 7afe366..75eed28 100644
--- a/airflow/providers/apache/druid/provider.yaml
+++ b/airflow/providers/apache/druid/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.4.1
   - 3.4.0
   - 3.3.1
   - 3.3.0
diff --git a/airflow/providers/apache/flink/CHANGELOG.rst b/airflow/providers/apache/flink/CHANGELOG.rst
index 6b923b0..38ba08d 100644
--- a/airflow/providers/apache/flink/CHANGELOG.rst
+++ b/airflow/providers/apache/flink/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+1.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 1.1.0
 .....
 
diff --git a/airflow/providers/apache/flink/__init__.py b/airflow/providers/apache/flink/__init__.py
index 72db287..22b76fc 100644
--- a/airflow/providers/apache/flink/__init__.py
+++ b/airflow/providers/apache/flink/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "1.1.0"
+__version__ = "1.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/flink/provider.yaml b/airflow/providers/apache/flink/provider.yaml
index e2da26b..e9b1263 100644
--- a/airflow/providers/apache/flink/provider.yaml
+++ b/airflow/providers/apache/flink/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 1.1.1
   - 1.1.0
   - 1.0.1
   - 1.0.0
diff --git a/airflow/providers/apache/hdfs/CHANGELOG.rst b/airflow/providers/apache/hdfs/CHANGELOG.rst
index ea485f6..c8615f3 100644
--- a/airflow/providers/apache/hdfs/CHANGELOG.rst
+++ b/airflow/providers/apache/hdfs/CHANGELOG.rst
@@ -24,17 +24,23 @@
 Changelog
 ---------
 
-.. note::
-  This release dropped support for Python 3.7
-
 4.1.0
 -----
 
+.. note::
+  This release dropped support for Python 3.7
+
 Features
 ~~~~~~~~
 
 * Add ability to read/write task instance logs from HDFS (#31512)
 
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Updates release notes for snakebite-py3 incompatibility with protobuf (#31756)``
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 4.0.0
 -----
 
diff --git a/airflow/providers/apache/hive/CHANGELOG.rst b/airflow/providers/apache/hive/CHANGELOG.rst
index 3b751d3..a5ffc8d 100644
--- a/airflow/providers/apache/hive/CHANGELOG.rst
+++ b/airflow/providers/apache/hive/CHANGELOG.rst
@@ -24,9 +24,32 @@
 Changelog
 ---------
 
+
+6.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Bug Fixes
+~~~~~~~~~
+
+* ``Sanitize beeline principal parameter (#31983)``
+
+Misc
+~~~~
+
+* ``Replace unicodecsv with standard csv library (#31693)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+
+   * ``Apache provider docstring improvements (#31730)``
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+   * ``Add Python 3.11 support (#27264)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 6.1.0
 .....
 
diff --git a/airflow/providers/apache/hive/__init__.py b/airflow/providers/apache/hive/__init__.py
index a218653..9e331a6 100644
--- a/airflow/providers/apache/hive/__init__.py
+++ b/airflow/providers/apache/hive/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "6.1.0"
+__version__ = "6.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/hive/provider.yaml b/airflow/providers/apache/hive/provider.yaml
index 3c16e1d..a277010 100644
--- a/airflow/providers/apache/hive/provider.yaml
+++ b/airflow/providers/apache/hive/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 6.1.1
   - 6.1.0
   - 6.0.0
   - 5.1.3
diff --git a/airflow/providers/apache/impala/CHANGELOG.rst b/airflow/providers/apache/impala/CHANGELOG.rst
index 8648756..b94522b 100644
--- a/airflow/providers/apache/impala/CHANGELOG.rst
+++ b/airflow/providers/apache/impala/CHANGELOG.rst
@@ -23,9 +23,20 @@
 Changelog
 ---------
 
+1.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for kafka and impala (#32017)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+
 1.1.0
 .....
 
diff --git a/airflow/providers/apache/impala/__init__.py b/airflow/providers/apache/impala/__init__.py
index c727aa1..4e874c1 100644
--- a/airflow/providers/apache/impala/__init__.py
+++ b/airflow/providers/apache/impala/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "1.1.0"
+__version__ = "1.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/impala/provider.yaml b/airflow/providers/apache/impala/provider.yaml
index 31edd96..b08374b 100644
--- a/airflow/providers/apache/impala/provider.yaml
+++ b/airflow/providers/apache/impala/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 1.1.1
   - 1.1.0
   - 1.0.0
 
diff --git a/airflow/providers/apache/kafka/CHANGELOG.rst b/airflow/providers/apache/kafka/CHANGELOG.rst
index 4fa3601..4c467c6 100644
--- a/airflow/providers/apache/kafka/CHANGELOG.rst
+++ b/airflow/providers/apache/kafka/CHANGELOG.rst
@@ -23,9 +23,23 @@
 Changelog
 ---------
 
+1.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add discoverability for triggers in provider.yaml (#31576)``
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+   * ``Add note about dropping Python 3.7 for kafka and impala (#32017)``
+
 1.1.0
 .....
 
diff --git a/airflow/providers/apache/kafka/__init__.py b/airflow/providers/apache/kafka/__init__.py
index ea3018d..45b378c 100644
--- a/airflow/providers/apache/kafka/__init__.py
+++ b/airflow/providers/apache/kafka/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "1.1.0"
+__version__ = "1.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/kafka/provider.yaml b/airflow/providers/apache/kafka/provider.yaml
index f363227..c78c595 100644
--- a/airflow/providers/apache/kafka/provider.yaml
+++ b/airflow/providers/apache/kafka/provider.yaml
@@ -23,6 +23,7 @@
 description: |
   `Apache Kafka  <https://kafka.apache.org/>`__
 versions:
+  - 1.1.1
   - 1.1.0
   - 1.0.0
 
diff --git a/airflow/providers/apache/kylin/CHANGELOG.rst b/airflow/providers/apache/kylin/CHANGELOG.rst
index 1b278b7..6b14502 100644
--- a/airflow/providers/apache/kylin/CHANGELOG.rst
+++ b/airflow/providers/apache/kylin/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Apache provider docstring improvements (#31730)``
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/apache/kylin/__init__.py b/airflow/providers/apache/kylin/__init__.py
index 9f617a0..c3ac55a 100644
--- a/airflow/providers/apache/kylin/__init__.py
+++ b/airflow/providers/apache/kylin/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/kylin/provider.yaml b/airflow/providers/apache/kylin/provider.yaml
index c9b6eb2..495d02b 100644
--- a/airflow/providers/apache/kylin/provider.yaml
+++ b/airflow/providers/apache/kylin/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/apache/livy/CHANGELOG.rst b/airflow/providers/apache/livy/CHANGELOG.rst
index c9234c1..049172b 100644
--- a/airflow/providers/apache/livy/CHANGELOG.rst
+++ b/airflow/providers/apache/livy/CHANGELOG.rst
@@ -24,9 +24,29 @@
 Changelog
 ---------
 
+3.5.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Bug Fixes
+~~~~~~~~~
+
+* ``Push Spark appId to XCOM for LivyOperator with deferrable mode (#31201)``
+
+Misc
+~~~~
+
+* ``Optimize deferred mode execution (#31685)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Apache provider docstring improvements (#31730)``
+   * ``Add discoverability for triggers in provider.yaml (#31576)``
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.5.0
 .....
 
diff --git a/airflow/providers/apache/livy/__init__.py b/airflow/providers/apache/livy/__init__.py
index cb1040f..5ce66cb 100644
--- a/airflow/providers/apache/livy/__init__.py
+++ b/airflow/providers/apache/livy/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.5.0"
+__version__ = "3.5.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/livy/provider.yaml b/airflow/providers/apache/livy/provider.yaml
index 567f13c..7f06bf3 100644
--- a/airflow/providers/apache/livy/provider.yaml
+++ b/airflow/providers/apache/livy/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.5.1
   - 3.5.0
   - 3.4.0
   - 3.3.0
diff --git a/airflow/providers/apache/pig/CHANGELOG.rst b/airflow/providers/apache/pig/CHANGELOG.rst
index 3e9f496..ef7f7b9 100644
--- a/airflow/providers/apache/pig/CHANGELOG.rst
+++ b/airflow/providers/apache/pig/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+4.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
 4.1.0
 .....
 
diff --git a/airflow/providers/apache/pig/__init__.py b/airflow/providers/apache/pig/__init__.py
index 59e180b..981f65c 100644
--- a/airflow/providers/apache/pig/__init__.py
+++ b/airflow/providers/apache/pig/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.1.0"
+__version__ = "4.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/pig/provider.yaml b/airflow/providers/apache/pig/provider.yaml
index 463bedc..ef67db9 100644
--- a/airflow/providers/apache/pig/provider.yaml
+++ b/airflow/providers/apache/pig/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.1.1
   - 4.1.0
   - 4.0.0
   - 3.0.0
diff --git a/airflow/providers/apache/pinot/CHANGELOG.rst b/airflow/providers/apache/pinot/CHANGELOG.rst
index 9401747..3f31f49 100644
--- a/airflow/providers/apache/pinot/CHANGELOG.rst
+++ b/airflow/providers/apache/pinot/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+
+4.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
+
 4.1.0
 .....
 
diff --git a/airflow/providers/apache/pinot/__init__.py b/airflow/providers/apache/pinot/__init__.py
index c80218f..22f9b9e 100644
--- a/airflow/providers/apache/pinot/__init__.py
+++ b/airflow/providers/apache/pinot/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.1.0"
+__version__ = "4.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/pinot/provider.yaml b/airflow/providers/apache/pinot/provider.yaml
index d7f18db..8455818 100644
--- a/airflow/providers/apache/pinot/provider.yaml
+++ b/airflow/providers/apache/pinot/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.1.1
   - 4.1.0
   - 4.0.1
   - 4.0.0
diff --git a/airflow/providers/apache/spark/CHANGELOG.rst b/airflow/providers/apache/spark/CHANGELOG.rst
index 76038b5..95586f9 100644
--- a/airflow/providers/apache/spark/CHANGELOG.rst
+++ b/airflow/providers/apache/spark/CHANGELOG.rst
@@ -24,9 +24,24 @@
 Changelog
 ---------
 
+4.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``SparkSubmitOperator: rename spark_conn_id to conn_id (#31952)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+   * ``Apache provider docstring improvements (#31730)``
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 4.1.0
 .....
 
diff --git a/airflow/providers/apache/spark/__init__.py b/airflow/providers/apache/spark/__init__.py
index 26ee6aa..888104a 100644
--- a/airflow/providers/apache/spark/__init__.py
+++ b/airflow/providers/apache/spark/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.1.0"
+__version__ = "4.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/spark/provider.yaml b/airflow/providers/apache/spark/provider.yaml
index 31210d3..134e7b7 100644
--- a/airflow/providers/apache/spark/provider.yaml
+++ b/airflow/providers/apache/spark/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.1.1
   - 4.1.0
   - 4.0.1
   - 4.0.0
diff --git a/airflow/providers/apache/sqoop/CHANGELOG.rst b/airflow/providers/apache/sqoop/CHANGELOG.rst
index c570654..b9efe86 100644
--- a/airflow/providers/apache/sqoop/CHANGELOG.rst
+++ b/airflow/providers/apache/sqoop/CHANGELOG.rst
@@ -24,9 +24,24 @@
 Changelog
 ---------
 
+
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Apache provider docstring improvements (#31730)``
+   * ``Add D400 pydocstyle check - Apache providers only (#31424)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/apache/sqoop/__init__.py b/airflow/providers/apache/sqoop/__init__.py
index 74c0da4..c57990e 100644
--- a/airflow/providers/apache/sqoop/__init__.py
+++ b/airflow/providers/apache/sqoop/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/apache/sqoop/provider.yaml b/airflow/providers/apache/sqoop/provider.yaml
index 8c62846..b358d73 100644
--- a/airflow/providers/apache/sqoop/provider.yaml
+++ b/airflow/providers/apache/sqoop/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.1
   - 3.1.0
diff --git a/airflow/providers/arangodb/CHANGELOG.rst b/airflow/providers/arangodb/CHANGELOG.rst
index 42f7110..6eb4207 100644
--- a/airflow/providers/arangodb/CHANGELOG.rst
+++ b/airflow/providers/arangodb/CHANGELOG.rst
@@ -25,9 +25,22 @@
 Changelog
 ---------
 
+2.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 2.2.0
 .....
 
diff --git a/airflow/providers/arangodb/__init__.py b/airflow/providers/arangodb/__init__.py
index a150c6b..21a5e10 100644
--- a/airflow/providers/arangodb/__init__.py
+++ b/airflow/providers/arangodb/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.2.0"
+__version__ = "2.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/arangodb/provider.yaml b/airflow/providers/arangodb/provider.yaml
index fab6362..5a12617 100644
--- a/airflow/providers/arangodb/provider.yaml
+++ b/airflow/providers/arangodb/provider.yaml
@@ -27,6 +27,7 @@
 
 suspended: false
 versions:
+  - 2.2.1
   - 2.2.0
   - 2.1.1
   - 2.1.0
diff --git a/airflow/providers/asana/CHANGELOG.rst b/airflow/providers/asana/CHANGELOG.rst
index 8d123ed..5a277d5 100644
--- a/airflow/providers/asana/CHANGELOG.rst
+++ b/airflow/providers/asana/CHANGELOG.rst
@@ -23,9 +23,23 @@
 Changelog
 ---------
 
+2.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 2.2.0
 .....
 
diff --git a/airflow/providers/asana/__init__.py b/airflow/providers/asana/__init__.py
index 207708e..5328ca5 100644
--- a/airflow/providers/asana/__init__.py
+++ b/airflow/providers/asana/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.2.0"
+__version__ = "2.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/asana/provider.yaml b/airflow/providers/asana/provider.yaml
index d678e22..b16ef68 100644
--- a/airflow/providers/asana/provider.yaml
+++ b/airflow/providers/asana/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 2.2.1
   - 2.2.0
   - 2.1.0
   - 2.0.1
diff --git a/airflow/providers/atlassian/jira/CHANGELOG.rst b/airflow/providers/atlassian/jira/CHANGELOG.rst
index c5ce10f..f15cae6 100644
--- a/airflow/providers/atlassian/jira/CHANGELOG.rst
+++ b/airflow/providers/atlassian/jira/CHANGELOG.rst
@@ -24,9 +24,24 @@
 Changelog
 ---------
 
+2.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+
+Bug Fixes
+~~~~~~~~~
+
+* ``Fix: JiraOperator support any return response from Jira client (#31672)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 2.1.0
 .....
 
diff --git a/airflow/providers/atlassian/jira/__init__.py b/airflow/providers/atlassian/jira/__init__.py
index e746d27..1be32f5 100644
--- a/airflow/providers/atlassian/jira/__init__.py
+++ b/airflow/providers/atlassian/jira/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.1.0"
+__version__ = "2.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/atlassian/jira/provider.yaml b/airflow/providers/atlassian/jira/provider.yaml
index 9ffac3f..d70f191 100644
--- a/airflow/providers/atlassian/jira/provider.yaml
+++ b/airflow/providers/atlassian/jira/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 2.1.1
   - 2.1.0
   - 2.0.1
   - 2.0.0
diff --git a/airflow/providers/celery/CHANGELOG.rst b/airflow/providers/celery/CHANGELOG.rst
index 5c8bc29..df1339a 100644
--- a/airflow/providers/celery/CHANGELOG.rst
+++ b/airflow/providers/celery/CHANGELOG.rst
@@ -24,9 +24,20 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+
 3.2.0
 .....
 
diff --git a/airflow/providers/celery/__init__.py b/airflow/providers/celery/__init__.py
index a15672c..80c2021 100644
--- a/airflow/providers/celery/__init__.py
+++ b/airflow/providers/celery/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/celery/provider.yaml b/airflow/providers/celery/provider.yaml
index a405fec..83dc66d 100644
--- a/airflow/providers/celery/provider.yaml
+++ b/airflow/providers/celery/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/cloudant/CHANGELOG.rst b/airflow/providers/cloudant/CHANGELOG.rst
index 5af9ab3..a26ac6d 100644
--- a/airflow/providers/cloudant/CHANGELOG.rst
+++ b/airflow/providers/cloudant/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/cloudant/__init__.py b/airflow/providers/cloudant/__init__.py
index 6a3d3df..6083092 100644
--- a/airflow/providers/cloudant/__init__.py
+++ b/airflow/providers/cloudant/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/cloudant/provider.yaml b/airflow/providers/cloudant/provider.yaml
index dc3d7f0..ea7c6eb 100644
--- a/airflow/providers/cloudant/provider.yaml
+++ b/airflow/providers/cloudant/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/cncf/kubernetes/CHANGELOG.rst b/airflow/providers/cncf/kubernetes/CHANGELOG.rst
index 1419681..01439ce 100644
--- a/airflow/providers/cncf/kubernetes/CHANGELOG.rst
+++ b/airflow/providers/cncf/kubernetes/CHANGELOG.rst
@@ -24,10 +24,37 @@
 Changelog
 ---------
 
+7.1.0
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
 
+Features
+~~~~~~~~
+* ``KubernetesResourceOperator - KubernetesDeleteResourceOperator & KubernetesCreateResourceOperator (#29930)``
+* ``add a return when the event is yielded in a loop to stop the execution (#31985)``
+* ``Add possibility to disable logging the pod template in a case when task fails (#31595)``
+
+
+Bug Fixes
+~~~~~~~~~
+
+* ``Remove return statement after yield from triggers class (#31703)``
+* ``Fix Fargate logging for AWS system tests (#31622)``
+
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check (#31742)``
+   * ``Add discoverability for triggers in provider.yaml (#31576)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
 
 7.0.0
 .....
diff --git a/airflow/providers/cncf/kubernetes/__init__.py b/airflow/providers/cncf/kubernetes/__init__.py
index 28d5f78..3e3bd8c 100644
--- a/airflow/providers/cncf/kubernetes/__init__.py
+++ b/airflow/providers/cncf/kubernetes/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "7.0.0"
+__version__ = "7.1.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/cncf/kubernetes/provider.yaml b/airflow/providers/cncf/kubernetes/provider.yaml
index ee8d9fe..7375b7b 100644
--- a/airflow/providers/cncf/kubernetes/provider.yaml
+++ b/airflow/providers/cncf/kubernetes/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 7.1.0
   - 7.0.0
   - 6.1.0
   - 6.0.0
diff --git a/airflow/providers/common/sql/CHANGELOG.rst b/airflow/providers/common/sql/CHANGELOG.rst
index 33fb717..9d8e58e 100644
--- a/airflow/providers/common/sql/CHANGELOG.rst
+++ b/airflow/providers/common/sql/CHANGELOG.rst
@@ -24,6 +24,19 @@
 Changelog
 ---------
 
+1.5.2
+.....
+
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 1.5.1
 .....
 
diff --git a/airflow/providers/common/sql/__init__.py b/airflow/providers/common/sql/__init__.py
index 17a7b92..58ca3b0 100644
--- a/airflow/providers/common/sql/__init__.py
+++ b/airflow/providers/common/sql/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "1.5.1"
+__version__ = "1.5.2"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/common/sql/provider.yaml b/airflow/providers/common/sql/provider.yaml
index 8a836c8..dc26303 100644
--- a/airflow/providers/common/sql/provider.yaml
+++ b/airflow/providers/common/sql/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 1.5.2
   - 1.5.1
   - 1.5.0
   - 1.4.0
diff --git a/airflow/providers/databricks/CHANGELOG.rst b/airflow/providers/databricks/CHANGELOG.rst
index 6d4284d..53b1b21 100644
--- a/airflow/providers/databricks/CHANGELOG.rst
+++ b/airflow/providers/databricks/CHANGELOG.rst
@@ -24,9 +24,36 @@
 Changelog
 ---------
 
+4.3.0
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Features
+~~~~~~~~
+
+* ``add a return when the event is yielded in a loop to stop the execution (#31985)``
+
+Bug Fixes
+~~~~~~~~~
+
+* ``Fix type annotation (#31888)``
+* ``Fix Databricks SQL operator serialization (#31780)``
+* ``Making Databricks run related multi-query string in one session again (#31898) (#31899)``
+
+Misc
+~~~~
+* ``Remove return statement after yield from triggers class (#31703)``
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add discoverability for triggers in provider.yaml (#31576)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 4.2.0
 .....
 
diff --git a/airflow/providers/databricks/__init__.py b/airflow/providers/databricks/__init__.py
index 8a6910c..78d3cd8 100644
--- a/airflow/providers/databricks/__init__.py
+++ b/airflow/providers/databricks/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.2.0"
+__version__ = "4.3.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/databricks/provider.yaml b/airflow/providers/databricks/provider.yaml
index 8058ca6..9aad038 100644
--- a/airflow/providers/databricks/provider.yaml
+++ b/airflow/providers/databricks/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.3.0
   - 4.2.0
   - 4.1.0
   - 4.0.1
diff --git a/airflow/providers/datadog/CHANGELOG.rst b/airflow/providers/datadog/CHANGELOG.rst
index f34333e..84df803 100644
--- a/airflow/providers/datadog/CHANGELOG.rst
+++ b/airflow/providers/datadog/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.3.0
 .....
 
diff --git a/airflow/providers/datadog/__init__.py b/airflow/providers/datadog/__init__.py
index 84a7243..e69ef90 100644
--- a/airflow/providers/datadog/__init__.py
+++ b/airflow/providers/datadog/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.3.0"
+__version__ = "3.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/datadog/provider.yaml b/airflow/providers/datadog/provider.yaml
index 0eb7086..addfbbf 100644
--- a/airflow/providers/datadog/provider.yaml
+++ b/airflow/providers/datadog/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.3.1
   - 3.3.0
   - 3.2.0
   - 3.1.0
diff --git a/airflow/providers/dbt/cloud/CHANGELOG.rst b/airflow/providers/dbt/cloud/CHANGELOG.rst
index 4ad494c..92cbb95 100644
--- a/airflow/providers/dbt/cloud/CHANGELOG.rst
+++ b/airflow/providers/dbt/cloud/CHANGELOG.rst
@@ -24,9 +24,24 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add discoverability for triggers in provider.yaml (#31576)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/dbt/cloud/__init__.py b/airflow/providers/dbt/cloud/__init__.py
index 673b9fa..a929ae6 100644
--- a/airflow/providers/dbt/cloud/__init__.py
+++ b/airflow/providers/dbt/cloud/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/dbt/cloud/provider.yaml b/airflow/providers/dbt/cloud/provider.yaml
index 185743a..3ec8a0a 100644
--- a/airflow/providers/dbt/cloud/provider.yaml
+++ b/airflow/providers/dbt/cloud/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.1
   - 3.1.0
diff --git a/airflow/providers/dingding/CHANGELOG.rst b/airflow/providers/dingding/CHANGELOG.rst
index 48bfc8d..23d4a92 100644
--- a/airflow/providers/dingding/CHANGELOG.rst
+++ b/airflow/providers/dingding/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/dingding/__init__.py b/airflow/providers/dingding/__init__.py
index 0b1a177..dd91de8 100644
--- a/airflow/providers/dingding/__init__.py
+++ b/airflow/providers/dingding/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/dingding/provider.yaml b/airflow/providers/dingding/provider.yaml
index 351ce27..a0b3e09 100644
--- a/airflow/providers/dingding/provider.yaml
+++ b/airflow/providers/dingding/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/discord/CHANGELOG.rst b/airflow/providers/discord/CHANGELOG.rst
index 8994406..a8f3d97 100644
--- a/airflow/providers/discord/CHANGELOG.rst
+++ b/airflow/providers/discord/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+3.3.0
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Features
+~~~~~~~~
+
+* ``Add 'DiscordNotifier' (#31273)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/discord/__init__.py b/airflow/providers/discord/__init__.py
index 53e22db..f9213e4 100644
--- a/airflow/providers/discord/__init__.py
+++ b/airflow/providers/discord/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.3.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/discord/provider.yaml b/airflow/providers/discord/provider.yaml
index 6dedfc1..723fdc5 100644
--- a/airflow/providers/discord/provider.yaml
+++ b/airflow/providers/discord/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.3.0
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/docker/CHANGELOG.rst b/airflow/providers/docker/CHANGELOG.rst
index fabf213..b7df5fa 100644
--- a/airflow/providers/docker/CHANGELOG.rst
+++ b/airflow/providers/docker/CHANGELOG.rst
@@ -24,9 +24,24 @@
 Changelog
 ---------
 
+3.7.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check (#31742)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.7.0
 .....
 
diff --git a/airflow/providers/docker/__init__.py b/airflow/providers/docker/__init__.py
index 4b1cc48..9d793a4 100644
--- a/airflow/providers/docker/__init__.py
+++ b/airflow/providers/docker/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.7.0"
+__version__ = "3.7.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/docker/provider.yaml b/airflow/providers/docker/provider.yaml
index ac17bf8..ed24724 100644
--- a/airflow/providers/docker/provider.yaml
+++ b/airflow/providers/docker/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.7.1
   - 3.7.0
   - 3.6.0
   - 3.5.1
diff --git a/airflow/providers/elasticsearch/CHANGELOG.rst b/airflow/providers/elasticsearch/CHANGELOG.rst
index 5f32976..0b28115 100644
--- a/airflow/providers/elasticsearch/CHANGELOG.rst
+++ b/airflow/providers/elasticsearch/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+4.5.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 4.5.0
 .....
 
diff --git a/airflow/providers/elasticsearch/__init__.py b/airflow/providers/elasticsearch/__init__.py
index 98ea345..f790597 100644
--- a/airflow/providers/elasticsearch/__init__.py
+++ b/airflow/providers/elasticsearch/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.5.0"
+__version__ = "4.5.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/elasticsearch/provider.yaml b/airflow/providers/elasticsearch/provider.yaml
index 8dc3743..b7b34a4 100644
--- a/airflow/providers/elasticsearch/provider.yaml
+++ b/airflow/providers/elasticsearch/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.5.1
   - 4.5.0
   - 4.4.0
   - 4.3.3
diff --git a/airflow/providers/exasol/CHANGELOG.rst b/airflow/providers/exasol/CHANGELOG.rst
index 1f08c53..5fb93a8 100644
--- a/airflow/providers/exasol/CHANGELOG.rst
+++ b/airflow/providers/exasol/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+4.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 4.2.0
 .....
 
diff --git a/airflow/providers/exasol/__init__.py b/airflow/providers/exasol/__init__.py
index 1ab4bb6..be85133 100644
--- a/airflow/providers/exasol/__init__.py
+++ b/airflow/providers/exasol/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.2.0"
+__version__ = "4.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/exasol/provider.yaml b/airflow/providers/exasol/provider.yaml
index 7afe6af..9aaeea7 100644
--- a/airflow/providers/exasol/provider.yaml
+++ b/airflow/providers/exasol/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.2.1
   - 4.2.0
   - 4.1.3
   - 4.1.2
diff --git a/airflow/providers/facebook/CHANGELOG.rst b/airflow/providers/facebook/CHANGELOG.rst
index 8ca67d0..ee7574f 100644
--- a/airflow/providers/facebook/CHANGELOG.rst
+++ b/airflow/providers/facebook/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/facebook/__init__.py b/airflow/providers/facebook/__init__.py
index c54b0d2..83b9dcc 100644
--- a/airflow/providers/facebook/__init__.py
+++ b/airflow/providers/facebook/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/facebook/provider.yaml b/airflow/providers/facebook/provider.yaml
index 98dd57c..462ca5a 100644
--- a/airflow/providers/facebook/provider.yaml
+++ b/airflow/providers/facebook/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.1
diff --git a/airflow/providers/ftp/CHANGELOG.rst b/airflow/providers/ftp/CHANGELOG.rst
index e8fc9fd..e5aec43 100644
--- a/airflow/providers/ftp/CHANGELOG.rst
+++ b/airflow/providers/ftp/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+3.4.2
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.4.1
 .....
 
diff --git a/airflow/providers/ftp/__init__.py b/airflow/providers/ftp/__init__.py
index d1178ef..31e7b96 100644
--- a/airflow/providers/ftp/__init__.py
+++ b/airflow/providers/ftp/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.1"
+__version__ = "3.4.2"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/ftp/provider.yaml b/airflow/providers/ftp/provider.yaml
index 2e9cd91..640aaaa 100644
--- a/airflow/providers/ftp/provider.yaml
+++ b/airflow/providers/ftp/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.4.2
   - 3.4.1
   - 3.4.0
   - 3.3.1
diff --git a/airflow/providers/github/CHANGELOG.rst b/airflow/providers/github/CHANGELOG.rst
index bbdc280..d9ee1b1 100644
--- a/airflow/providers/github/CHANGELOG.rst
+++ b/airflow/providers/github/CHANGELOG.rst
@@ -25,9 +25,22 @@
 Changelog
 ---------
 
+2.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 2.3.0
 .....
 
diff --git a/airflow/providers/github/__init__.py b/airflow/providers/github/__init__.py
index 346b8d3..a9b7a5d 100644
--- a/airflow/providers/github/__init__.py
+++ b/airflow/providers/github/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.3.0"
+__version__ = "2.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/github/provider.yaml b/airflow/providers/github/provider.yaml
index 4098bc2..19eb9c4 100644
--- a/airflow/providers/github/provider.yaml
+++ b/airflow/providers/github/provider.yaml
@@ -30,6 +30,7 @@
 
 suspended: false
 versions:
+  - 2.3.1
   - 2.3.0
   - 2.2.1
   - 2.2.0
diff --git a/airflow/providers/google/CHANGELOG.rst b/airflow/providers/google/CHANGELOG.rst
index c03c6b2..95942d6 100644
--- a/airflow/providers/google/CHANGELOG.rst
+++ b/airflow/providers/google/CHANGELOG.rst
@@ -23,9 +23,52 @@
 Changelog
 ---------
 
+10.2.0
+......
+
 .. note::
   This release dropped support for Python 3.7
 
+Features
+~~~~~~~~
+
+* ``add a return when the event is yielded in a loop to stop the execution (#31985)``
+* ``Add deferrable mode to PubsubPullSensor (#31284)``
+* ``Add a new param to set parquet row group size in 'BaseSQLToGCSOperator' (#31831)``
+* ``Add 'cacheControl' field to google cloud storage (#31338)``
+* ``Add 'preserveAsciiControlCharacters' to 'src_fmt_configs' (#31643)``
+* ``Add support for credential configuation file auth to Google Secrets Manager secrets backend (#31597)``
+* ``Add credential configuration file support to Google Cloud Hook (#31548)``
+* ``Add deferrable mode to 'GCSUploadSessionCompleteSensor' (#31081)``
+* ``Add append_job_name parameter in DataflowStartFlexTemplateOperator (#31511)``
+* ``FIPS environments: Mark uses of md5 as "not-used-for-security" (#31171)``
+* ``Implement MetastoreHivePartitionSensor (#31016)``
+
+Bug Fixes
+~~~~~~~~~
+
+* ``Bigquery: fix links for already existing tables and datasets. (#31589)``
+* ``Provide missing project id and creds for TabularDataset (#31991)``
+
+Misc
+~~~~
+
+* ``Optimize deferrable mode execution for 'DataprocSubmitJobOperator' (#31317)``
+* ``Optimize deferrable mode execution for 'BigQueryInsertJobOperator' (#31249)``
+* ``Remove return statement after yield from triggers class (#31703)``
+* ``Replace unicodecsv with standard csv library (#31693)``
+* ``Optimize deferrable mode (#31758)``
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Replace spelling directive with spelling:word-list (#31752)``
+   * ``Add D400 pydocstyle check - Google provider only (#31422)``
+   * ``Add discoverability for triggers in provider.yaml (#31576)``
+   * ``Revert "Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)" (#31935)``
+   * ``Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 10.1.1
 ......
 
diff --git a/airflow/providers/google/__init__.py b/airflow/providers/google/__init__.py
index 97e004b..245255b 100644
--- a/airflow/providers/google/__init__.py
+++ b/airflow/providers/google/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "10.1.1"
+__version__ = "10.2.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/google/provider.yaml b/airflow/providers/google/provider.yaml
index 068654f..bdcecfb 100644
--- a/airflow/providers/google/provider.yaml
+++ b/airflow/providers/google/provider.yaml
@@ -30,6 +30,7 @@
 
 suspended: false
 versions:
+  - 10.2.0
   - 10.1.1
   - 10.1.0
   - 10.0.0
diff --git a/airflow/providers/grpc/CHANGELOG.rst b/airflow/providers/grpc/CHANGELOG.rst
index dc52d66..c71b34b 100644
--- a/airflow/providers/grpc/CHANGELOG.rst
+++ b/airflow/providers/grpc/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/grpc/__init__.py b/airflow/providers/grpc/__init__.py
index b4ae740..43cd7d9 100644
--- a/airflow/providers/grpc/__init__.py
+++ b/airflow/providers/grpc/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/grpc/provider.yaml b/airflow/providers/grpc/provider.yaml
index 8694702..d359a36 100644
--- a/airflow/providers/grpc/provider.yaml
+++ b/airflow/providers/grpc/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/hashicorp/CHANGELOG.rst b/airflow/providers/hashicorp/CHANGELOG.rst
index f047f5e..38dc139 100644
--- a/airflow/providers/hashicorp/CHANGELOG.rst
+++ b/airflow/providers/hashicorp/CHANGELOG.rst
@@ -24,9 +24,27 @@
 Changelog
 ---------
 
+3.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Bug Fixes
+~~~~~~~~~
+
+* ``Fix hashicorp some client authentication methods (#31593)``
+
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.4.0
 .....
 
diff --git a/airflow/providers/hashicorp/__init__.py b/airflow/providers/hashicorp/__init__.py
index 482a6b1..f581089 100644
--- a/airflow/providers/hashicorp/__init__.py
+++ b/airflow/providers/hashicorp/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.0"
+__version__ = "3.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/hashicorp/provider.yaml b/airflow/providers/hashicorp/provider.yaml
index c807e72..2faa100 100644
--- a/airflow/providers/hashicorp/provider.yaml
+++ b/airflow/providers/hashicorp/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.4.1
   - 3.4.0
   - 3.3.1
   - 3.3.0
diff --git a/airflow/providers/http/CHANGELOG.rst b/airflow/providers/http/CHANGELOG.rst
index cf45c8f..df21654 100644
--- a/airflow/providers/http/CHANGELOG.rst
+++ b/airflow/providers/http/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+4.4.2
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 4.4.1
 .....
 
diff --git a/airflow/providers/http/__init__.py b/airflow/providers/http/__init__.py
index 11f3788..9f58801 100644
--- a/airflow/providers/http/__init__.py
+++ b/airflow/providers/http/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.4.1"
+__version__ = "4.4.2"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/http/provider.yaml b/airflow/providers/http/provider.yaml
index 31ce195..844e3bd 100644
--- a/airflow/providers/http/provider.yaml
+++ b/airflow/providers/http/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.4.2
   - 4.4.1
   - 4.4.0
   - 4.3.0
diff --git a/airflow/providers/imap/CHANGELOG.rst b/airflow/providers/imap/CHANGELOG.rst
index c412652..1dd64ab 100644
--- a/airflow/providers/imap/CHANGELOG.rst
+++ b/airflow/providers/imap/CHANGELOG.rst
@@ -24,9 +24,20 @@
 Changelog
 ---------
 
+3.2.2
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+
 3.2.1
 .....
 
diff --git a/airflow/providers/imap/__init__.py b/airflow/providers/imap/__init__.py
index 95e7843..d0bd158 100644
--- a/airflow/providers/imap/__init__.py
+++ b/airflow/providers/imap/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.1"
+__version__ = "3.2.2"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/imap/provider.yaml b/airflow/providers/imap/provider.yaml
index 712bc30..997880d 100644
--- a/airflow/providers/imap/provider.yaml
+++ b/airflow/providers/imap/provider.yaml
@@ -24,6 +24,7 @@
 
 suspended: false
 versions:
+  - 3.2.2
   - 3.2.1
   - 3.2.0
   - 3.1.1
diff --git a/airflow/providers/influxdb/CHANGELOG.rst b/airflow/providers/influxdb/CHANGELOG.rst
index 1e9b4d5..8a03f33 100644
--- a/airflow/providers/influxdb/CHANGELOG.rst
+++ b/airflow/providers/influxdb/CHANGELOG.rst
@@ -25,9 +25,23 @@
 Changelog
 ---------
 
+2.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Replace spelling directive with spelling:word-list (#31752)``
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 2.2.0
 .....
 
diff --git a/airflow/providers/influxdb/__init__.py b/airflow/providers/influxdb/__init__.py
index dbefbce..aca792b 100644
--- a/airflow/providers/influxdb/__init__.py
+++ b/airflow/providers/influxdb/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.2.0"
+__version__ = "2.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/influxdb/provider.yaml b/airflow/providers/influxdb/provider.yaml
index bad1fc5..433603d 100644
--- a/airflow/providers/influxdb/provider.yaml
+++ b/airflow/providers/influxdb/provider.yaml
@@ -30,6 +30,7 @@
 
 suspended: false
 versions:
+  - 2.2.1
   - 2.2.0
   - 2.1.0
   - 2.0.0
diff --git a/airflow/providers/jdbc/CHANGELOG.rst b/airflow/providers/jdbc/CHANGELOG.rst
index 224abd7..b54dcaa 100644
--- a/airflow/providers/jdbc/CHANGELOG.rst
+++ b/airflow/providers/jdbc/CHANGELOG.rst
@@ -24,12 +24,12 @@
 Changelog
 ---------
 
-.. note::
-  This release dropped support for Python 3.7
-
 4.0.0
 .....
 
+.. note::
+  This release dropped support for Python 3.7
+
 Breaking changes
 ~~~~~~~~~~~~~~~~
 
@@ -40,6 +40,12 @@
 3. Set the "driver_path" and/or "driver_class" extra in the connection and correspondingly enable the "allow_driver_path_in_extra" and/or "allow_driver_class_in_extra" options in the "providers.jdbc" section of the Airflow configuration.
 4. Patch the "JdbcHook.default_driver_path" and/or "JdbcHook.default_driver_class" values in the "local_settings.py" file.
 
+* ``Restrict direct usage of driver params via extras for JDBC connection (#31849)``
+
+.. Review and move the new changes to one of the sections above:
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
 
 3.4.0
 .....
diff --git a/airflow/providers/jdbc/__init__.py b/airflow/providers/jdbc/__init__.py
index 33f7c34..39ecbfd 100644
--- a/airflow/providers/jdbc/__init__.py
+++ b/airflow/providers/jdbc/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.0"
+__version__ = "4.0.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/jenkins/CHANGELOG.rst b/airflow/providers/jenkins/CHANGELOG.rst
index 1e59d33..c9054cc 100644
--- a/airflow/providers/jenkins/CHANGELOG.rst
+++ b/airflow/providers/jenkins/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+3.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.3.0
 .....
 
diff --git a/airflow/providers/jenkins/__init__.py b/airflow/providers/jenkins/__init__.py
index 5e0f454..5af61cc 100644
--- a/airflow/providers/jenkins/__init__.py
+++ b/airflow/providers/jenkins/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.3.0"
+__version__ = "3.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/jenkins/provider.yaml b/airflow/providers/jenkins/provider.yaml
index 31cdf33..116dc10 100644
--- a/airflow/providers/jenkins/provider.yaml
+++ b/airflow/providers/jenkins/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.3.1
   - 3.3.0
   - 3.2.1
   - 3.2.0
diff --git a/airflow/providers/microsoft/azure/CHANGELOG.rst b/airflow/providers/microsoft/azure/CHANGELOG.rst
index 8ecc117..e495ea3 100644
--- a/airflow/providers/microsoft/azure/CHANGELOG.rst
+++ b/airflow/providers/microsoft/azure/CHANGELOG.rst
@@ -24,9 +24,28 @@
 Changelog
 ---------
 
+6.1.2
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Replace unicodecsv with standard csv library (#31693)``
+* ``Removed unused variables in AzureBlobStorageToGCSOperator (#31765)``
+* ``Remove Python 3.7 support (#30963)``
+* ``Add docstring and signature for _read_remote_logs (#31623)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Replace spelling directive with spelling:word-list (#31752)``
+   * ``Add D400 pydocstyle check - Microsoft provider only (#31425)``
+   * ``Add discoverability for triggers in provider.yaml (#31576)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+   * ``Microsoft provider docstring improvements (#31708)``
+
 6.1.1
 .....
 
diff --git a/airflow/providers/microsoft/azure/__init__.py b/airflow/providers/microsoft/azure/__init__.py
index bc9ae63..6a11fab 100644
--- a/airflow/providers/microsoft/azure/__init__.py
+++ b/airflow/providers/microsoft/azure/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "6.1.1"
+__version__ = "6.1.2"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/microsoft/azure/provider.yaml b/airflow/providers/microsoft/azure/provider.yaml
index dca9a4c..d57a948 100644
--- a/airflow/providers/microsoft/azure/provider.yaml
+++ b/airflow/providers/microsoft/azure/provider.yaml
@@ -22,6 +22,7 @@
     `Microsoft Azure <https://azure.microsoft.com/>`__
 suspended: false
 versions:
+  - 6.1.2
   - 6.1.1
   - 6.1.0
   - 6.0.0
diff --git a/airflow/providers/microsoft/mssql/CHANGELOG.rst b/airflow/providers/microsoft/mssql/CHANGELOG.rst
index a4151c3..c4c3238 100644
--- a/airflow/providers/microsoft/mssql/CHANGELOG.rst
+++ b/airflow/providers/microsoft/mssql/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+3.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Bug Fixes
+~~~~~~~~~
+
+* ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Microsoft provider only (#31425)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.4.0
 .....
 
diff --git a/airflow/providers/microsoft/mssql/__init__.py b/airflow/providers/microsoft/mssql/__init__.py
index 1335698..2d2d756 100644
--- a/airflow/providers/microsoft/mssql/__init__.py
+++ b/airflow/providers/microsoft/mssql/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.0"
+__version__ = "3.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/microsoft/mssql/provider.yaml b/airflow/providers/microsoft/mssql/provider.yaml
index 5eedf20..e4bcc44 100644
--- a/airflow/providers/microsoft/mssql/provider.yaml
+++ b/airflow/providers/microsoft/mssql/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.4.1
   - 3.4.0
   - 3.3.2
   - 3.3.1
diff --git a/airflow/providers/microsoft/psrp/CHANGELOG.rst b/airflow/providers/microsoft/psrp/CHANGELOG.rst
index db54a0c..163a7a8 100644
--- a/airflow/providers/microsoft/psrp/CHANGELOG.rst
+++ b/airflow/providers/microsoft/psrp/CHANGELOG.rst
@@ -24,9 +24,20 @@
 Changelog
 ---------
 
+2.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+
 2.3.0
 .....
 
diff --git a/airflow/providers/microsoft/psrp/__init__.py b/airflow/providers/microsoft/psrp/__init__.py
index ac9da20..a16f5d9 100644
--- a/airflow/providers/microsoft/psrp/__init__.py
+++ b/airflow/providers/microsoft/psrp/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "2.3.0"
+__version__ = "2.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/microsoft/psrp/provider.yaml b/airflow/providers/microsoft/psrp/provider.yaml
index 1da6459..5c85fc3 100644
--- a/airflow/providers/microsoft/psrp/provider.yaml
+++ b/airflow/providers/microsoft/psrp/provider.yaml
@@ -25,6 +25,7 @@
 
 suspended: false
 versions:
+  - 2.3.1
   - 2.3.0
   - 2.2.0
   - 2.1.0
diff --git a/airflow/providers/microsoft/winrm/CHANGELOG.rst b/airflow/providers/microsoft/winrm/CHANGELOG.rst
index 6bf81ea..98c8300 100644
--- a/airflow/providers/microsoft/winrm/CHANGELOG.rst
+++ b/airflow/providers/microsoft/winrm/CHANGELOG.rst
@@ -24,9 +24,20 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+
 3.2.0
 .....
 
diff --git a/airflow/providers/microsoft/winrm/__init__.py b/airflow/providers/microsoft/winrm/__init__.py
index a094f8c..2ea5c0a 100644
--- a/airflow/providers/microsoft/winrm/__init__.py
+++ b/airflow/providers/microsoft/winrm/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/microsoft/winrm/provider.yaml b/airflow/providers/microsoft/winrm/provider.yaml
index 3ac254e..749d9e6 100644
--- a/airflow/providers/microsoft/winrm/provider.yaml
+++ b/airflow/providers/microsoft/winrm/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.1
   - 3.1.0
diff --git a/airflow/providers/mongo/CHANGELOG.rst b/airflow/providers/mongo/CHANGELOG.rst
index 87cf74e..982db57 100644
--- a/airflow/providers/mongo/CHANGELOG.rst
+++ b/airflow/providers/mongo/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/mongo/__init__.py b/airflow/providers/mongo/__init__.py
index b9f4033..1d6d767 100644
--- a/airflow/providers/mongo/__init__.py
+++ b/airflow/providers/mongo/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/mongo/provider.yaml b/airflow/providers/mongo/provider.yaml
index f630f81..2dab065 100644
--- a/airflow/providers/mongo/provider.yaml
+++ b/airflow/providers/mongo/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.1
   - 3.1.0
diff --git a/airflow/providers/mysql/CHANGELOG.rst b/airflow/providers/mysql/CHANGELOG.rst
index d819d60..d9730a3 100644
--- a/airflow/providers/mysql/CHANGELOG.rst
+++ b/airflow/providers/mysql/CHANGELOG.rst
@@ -23,9 +23,22 @@
 Changelog
 ---------
 
+5.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Replace unicodecsv with standard csv library (#31693)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 5.1.0
 .....
 
diff --git a/airflow/providers/mysql/__init__.py b/airflow/providers/mysql/__init__.py
index bffda81..9b22520 100644
--- a/airflow/providers/mysql/__init__.py
+++ b/airflow/providers/mysql/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "5.1.0"
+__version__ = "5.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/mysql/provider.yaml b/airflow/providers/mysql/provider.yaml
index 7507fa3..d6f11b0 100644
--- a/airflow/providers/mysql/provider.yaml
+++ b/airflow/providers/mysql/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 5.1.1
   - 5.1.0
   - 5.0.0
   - 4.0.2
diff --git a/airflow/providers/neo4j/CHANGELOG.rst b/airflow/providers/neo4j/CHANGELOG.rst
index 1baadc3..c4b0314 100644
--- a/airflow/providers/neo4j/CHANGELOG.rst
+++ b/airflow/providers/neo4j/CHANGELOG.rst
@@ -25,9 +25,21 @@
 Changelog
 ---------
 
+3.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.3.0
 .....
 
diff --git a/airflow/providers/neo4j/__init__.py b/airflow/providers/neo4j/__init__.py
index 611f7d5..ad53185 100644
--- a/airflow/providers/neo4j/__init__.py
+++ b/airflow/providers/neo4j/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.3.0"
+__version__ = "3.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/neo4j/provider.yaml b/airflow/providers/neo4j/provider.yaml
index 8df693f..8bfe4d8 100644
--- a/airflow/providers/neo4j/provider.yaml
+++ b/airflow/providers/neo4j/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.3.1
   - 3.3.0
   - 3.2.1
   - 3.2.0
diff --git a/airflow/providers/odbc/CHANGELOG.rst b/airflow/providers/odbc/CHANGELOG.rst
index 46e39d9..4acfd89 100644
--- a/airflow/providers/odbc/CHANGELOG.rst
+++ b/airflow/providers/odbc/CHANGELOG.rst
@@ -24,12 +24,12 @@
 Changelog
 ---------
 
-.. note::
-  This release dropped support for Python 3.7
-
 4.0.0
 .....
 
+.. note::
+  This release dropped support for Python 3.7
+
 Breaking changes
 ~~~~~~~~~~~~~~~~
 
@@ -37,6 +37,22 @@
 ``hook_params`` dictionary (with ``driver`` key) when instantiating Hook from SQL Operators. It was possible
 to instantiate it via extras before, but in this version, only setting it via constructor is supported.
 
+* ``Disable setting ODBC driver via extra by default (#31713)``
+
+Bug Fixes
+~~~~~~~~~
+
+* ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)``
+
+Misc
+~~~~
+
+* ``Control permissibility of driver config in extra from airflow.cfg (#31754)``
+
+.. Review and move the new changes to one of the sections above:
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
 
 3.3.0
 .....
diff --git a/airflow/providers/odbc/__init__.py b/airflow/providers/odbc/__init__.py
index 515109a..9b16f7b 100644
--- a/airflow/providers/odbc/__init__.py
+++ b/airflow/providers/odbc/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.3.0"
+__version__ = "4.0.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/odbc/provider.yaml b/airflow/providers/odbc/provider.yaml
index a00fa35..226baef 100644
--- a/airflow/providers/odbc/provider.yaml
+++ b/airflow/providers/odbc/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.0.0
   - 3.3.0
   - 3.2.1
   - 3.2.0
diff --git a/airflow/providers/openfaas/CHANGELOG.rst b/airflow/providers/openfaas/CHANGELOG.rst
index 6675a46..5968d6c 100644
--- a/airflow/providers/openfaas/CHANGELOG.rst
+++ b/airflow/providers/openfaas/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/openfaas/__init__.py b/airflow/providers/openfaas/__init__.py
index 33f0f68..d2fbc5f 100644
--- a/airflow/providers/openfaas/__init__.py
+++ b/airflow/providers/openfaas/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/openfaas/provider.yaml b/airflow/providers/openfaas/provider.yaml
index 0913ad8..9a21f50 100644
--- a/airflow/providers/openfaas/provider.yaml
+++ b/airflow/providers/openfaas/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/opsgenie/CHANGELOG.rst b/airflow/providers/opsgenie/CHANGELOG.rst
index 508f95a..8bb1643 100644
--- a/airflow/providers/opsgenie/CHANGELOG.rst
+++ b/airflow/providers/opsgenie/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+5.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 5.1.0
 .....
 
diff --git a/airflow/providers/opsgenie/__init__.py b/airflow/providers/opsgenie/__init__.py
index 93a8d21..746d419 100644
--- a/airflow/providers/opsgenie/__init__.py
+++ b/airflow/providers/opsgenie/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "5.1.0"
+__version__ = "5.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/opsgenie/provider.yaml b/airflow/providers/opsgenie/provider.yaml
index 6ec14dc..efa630a 100644
--- a/airflow/providers/opsgenie/provider.yaml
+++ b/airflow/providers/opsgenie/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 5.1.1
   - 5.1.0
   - 5.0.0
   - 4.0.0
diff --git a/airflow/providers/oracle/CHANGELOG.rst b/airflow/providers/oracle/CHANGELOG.rst
index 4e4ef1f..537c48e 100644
--- a/airflow/providers/oracle/CHANGELOG.rst
+++ b/airflow/providers/oracle/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+3.7.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.7.0
 .....
 
diff --git a/airflow/providers/oracle/__init__.py b/airflow/providers/oracle/__init__.py
index 2fab5d1..784e1f0 100644
--- a/airflow/providers/oracle/__init__.py
+++ b/airflow/providers/oracle/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.7.0"
+__version__ = "3.7.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/oracle/provider.yaml b/airflow/providers/oracle/provider.yaml
index cfe6642..6d37d5c 100644
--- a/airflow/providers/oracle/provider.yaml
+++ b/airflow/providers/oracle/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.7.1
   - 3.7.0
   - 3.6.0
   - 3.5.1
diff --git a/airflow/providers/pagerduty/CHANGELOG.rst b/airflow/providers/pagerduty/CHANGELOG.rst
index 0561414..349c084 100644
--- a/airflow/providers/pagerduty/CHANGELOG.rst
+++ b/airflow/providers/pagerduty/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+3.3.0
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Features
+~~~~~~~~
+
+* ``Add notifier for pagerduty (#31207)``
+* ``Add send_event method in PagerdutyEventsHook (#31290)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/pagerduty/__init__.py b/airflow/providers/pagerduty/__init__.py
index 5db6f25..f9f8770 100644
--- a/airflow/providers/pagerduty/__init__.py
+++ b/airflow/providers/pagerduty/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.3.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/pagerduty/provider.yaml b/airflow/providers/pagerduty/provider.yaml
index 0be53ad..8c6c84b 100644
--- a/airflow/providers/pagerduty/provider.yaml
+++ b/airflow/providers/pagerduty/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.3.0
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/papermill/CHANGELOG.rst b/airflow/providers/papermill/CHANGELOG.rst
index 54c001d..7494f20 100644
--- a/airflow/providers/papermill/CHANGELOG.rst
+++ b/airflow/providers/papermill/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/papermill/__init__.py b/airflow/providers/papermill/__init__.py
index f9a4f61..9bd67cd 100644
--- a/airflow/providers/papermill/__init__.py
+++ b/airflow/providers/papermill/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/papermill/provider.yaml b/airflow/providers/papermill/provider.yaml
index ac31aa6..bf6b2ad 100644
--- a/airflow/providers/papermill/provider.yaml
+++ b/airflow/providers/papermill/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.1
   - 3.1.0
diff --git a/airflow/providers/plexus/CHANGELOG.rst b/airflow/providers/plexus/CHANGELOG.rst
index 650aac3..280fbb8 100644
--- a/airflow/providers/plexus/CHANGELOG.rst
+++ b/airflow/providers/plexus/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/plexus/__init__.py b/airflow/providers/plexus/__init__.py
index 2d872b9..28d460b 100644
--- a/airflow/providers/plexus/__init__.py
+++ b/airflow/providers/plexus/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/plexus/provider.yaml b/airflow/providers/plexus/provider.yaml
index 6200efa..19c63d4 100644
--- a/airflow/providers/plexus/provider.yaml
+++ b/airflow/providers/plexus/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/postgres/CHANGELOG.rst b/airflow/providers/postgres/CHANGELOG.rst
index 5bb62e7..65f6a49 100644
--- a/airflow/providers/postgres/CHANGELOG.rst
+++ b/airflow/providers/postgres/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+5.5.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 5.5.0
 .....
 
diff --git a/airflow/providers/postgres/__init__.py b/airflow/providers/postgres/__init__.py
index 4c19a35..b4c3d8a 100644
--- a/airflow/providers/postgres/__init__.py
+++ b/airflow/providers/postgres/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "5.5.0"
+__version__ = "5.5.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/postgres/provider.yaml b/airflow/providers/postgres/provider.yaml
index b01df02..401da19 100644
--- a/airflow/providers/postgres/provider.yaml
+++ b/airflow/providers/postgres/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 5.5.1
   - 5.5.0
   - 5.4.0
   - 5.3.1
diff --git a/airflow/providers/presto/CHANGELOG.rst b/airflow/providers/presto/CHANGELOG.rst
index ca584f6..7d172fa 100644
--- a/airflow/providers/presto/CHANGELOG.rst
+++ b/airflow/providers/presto/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+5.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 5.1.0
 .....
 
diff --git a/airflow/providers/presto/__init__.py b/airflow/providers/presto/__init__.py
index f3bd179..66eb1d8 100644
--- a/airflow/providers/presto/__init__.py
+++ b/airflow/providers/presto/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "5.1.0"
+__version__ = "5.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/presto/provider.yaml b/airflow/providers/presto/provider.yaml
index 684f092..4a2661c 100644
--- a/airflow/providers/presto/provider.yaml
+++ b/airflow/providers/presto/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 5.1.1
   - 5.1.0
   - 5.0.0
   - 4.2.2
diff --git a/airflow/providers/qubole/CHANGELOG.rst b/airflow/providers/qubole/CHANGELOG.rst
index a6a5b2f..0ef4af2 100644
--- a/airflow/providers/qubole/CHANGELOG.rst
+++ b/airflow/providers/qubole/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.4.0
 .....
 
diff --git a/airflow/providers/qubole/__init__.py b/airflow/providers/qubole/__init__.py
index edf58c2..76fdeec 100644
--- a/airflow/providers/qubole/__init__.py
+++ b/airflow/providers/qubole/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.0"
+__version__ = "3.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/qubole/provider.yaml b/airflow/providers/qubole/provider.yaml
index c387c06..098ca11 100644
--- a/airflow/providers/qubole/provider.yaml
+++ b/airflow/providers/qubole/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.4.1
   - 3.4.0
   - 3.3.1
   - 3.3.0
diff --git a/airflow/providers/redis/CHANGELOG.rst b/airflow/providers/redis/CHANGELOG.rst
index 8fe52f0..c836a10 100644
--- a/airflow/providers/redis/CHANGELOG.rst
+++ b/airflow/providers/redis/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/redis/__init__.py b/airflow/providers/redis/__init__.py
index 7d5d25e..6f31367 100644
--- a/airflow/providers/redis/__init__.py
+++ b/airflow/providers/redis/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/redis/provider.yaml b/airflow/providers/redis/provider.yaml
index f12777c..c679abe 100644
--- a/airflow/providers/redis/provider.yaml
+++ b/airflow/providers/redis/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/salesforce/CHANGELOG.rst b/airflow/providers/salesforce/CHANGELOG.rst
index cab972b..fe5b961 100644
--- a/airflow/providers/salesforce/CHANGELOG.rst
+++ b/airflow/providers/salesforce/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+5.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 5.4.0
 .....
 
diff --git a/airflow/providers/salesforce/__init__.py b/airflow/providers/salesforce/__init__.py
index aa84a15..ba78316 100644
--- a/airflow/providers/salesforce/__init__.py
+++ b/airflow/providers/salesforce/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "5.4.0"
+__version__ = "5.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/salesforce/provider.yaml b/airflow/providers/salesforce/provider.yaml
index f535355..5c7ba86 100644
--- a/airflow/providers/salesforce/provider.yaml
+++ b/airflow/providers/salesforce/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 5.4.1
   - 5.4.0
   - 5.3.0
   - 5.2.0
diff --git a/airflow/providers/samba/CHANGELOG.rst b/airflow/providers/samba/CHANGELOG.rst
index b3a720d..746e88f 100644
--- a/airflow/providers/samba/CHANGELOG.rst
+++ b/airflow/providers/samba/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+4.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 4.2.0
 .....
 
diff --git a/airflow/providers/samba/__init__.py b/airflow/providers/samba/__init__.py
index 0f9095e..e151732 100644
--- a/airflow/providers/samba/__init__.py
+++ b/airflow/providers/samba/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.2.0"
+__version__ = "4.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/samba/provider.yaml b/airflow/providers/samba/provider.yaml
index c5ab3b3..0c40783 100644
--- a/airflow/providers/samba/provider.yaml
+++ b/airflow/providers/samba/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.2.1
   - 4.2.0
   - 4.1.0
   - 4.0.0
diff --git a/airflow/providers/segment/CHANGELOG.rst b/airflow/providers/segment/CHANGELOG.rst
index 54aaa10..3148c8e 100644
--- a/airflow/providers/segment/CHANGELOG.rst
+++ b/airflow/providers/segment/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/segment/__init__.py b/airflow/providers/segment/__init__.py
index 9ab8864..0360f16 100644
--- a/airflow/providers/segment/__init__.py
+++ b/airflow/providers/segment/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/segment/provider.yaml b/airflow/providers/segment/provider.yaml
index 730d46b..2d9e865 100644
--- a/airflow/providers/segment/provider.yaml
+++ b/airflow/providers/segment/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/sendgrid/CHANGELOG.rst b/airflow/providers/sendgrid/CHANGELOG.rst
index e747416..a8ee20f 100644
--- a/airflow/providers/sendgrid/CHANGELOG.rst
+++ b/airflow/providers/sendgrid/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/sendgrid/__init__.py b/airflow/providers/sendgrid/__init__.py
index 1b6cb78..4bfd276 100644
--- a/airflow/providers/sendgrid/__init__.py
+++ b/airflow/providers/sendgrid/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/sendgrid/provider.yaml b/airflow/providers/sendgrid/provider.yaml
index f8e7eeb..35837c1 100644
--- a/airflow/providers/sendgrid/provider.yaml
+++ b/airflow/providers/sendgrid/provider.yaml
@@ -27,6 +27,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/sftp/CHANGELOG.rst b/airflow/providers/sftp/CHANGELOG.rst
index e99e2a8..6f3891b 100644
--- a/airflow/providers/sftp/CHANGELOG.rst
+++ b/airflow/providers/sftp/CHANGELOG.rst
@@ -24,9 +24,22 @@
 Changelog
 ---------
 
+4.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 4.3.0
 .....
 
diff --git a/airflow/providers/sftp/__init__.py b/airflow/providers/sftp/__init__.py
index b3cae1a..667c882 100644
--- a/airflow/providers/sftp/__init__.py
+++ b/airflow/providers/sftp/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.3.0"
+__version__ = "4.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/sftp/provider.yaml b/airflow/providers/sftp/provider.yaml
index c52cf19..ec8adb1 100644
--- a/airflow/providers/sftp/provider.yaml
+++ b/airflow/providers/sftp/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.3.1
   - 4.3.0
   - 4.2.4
   - 4.2.3
diff --git a/airflow/providers/singularity/CHANGELOG.rst b/airflow/providers/singularity/CHANGELOG.rst
index 6b067a4..95e463f 100644
--- a/airflow/providers/singularity/CHANGELOG.rst
+++ b/airflow/providers/singularity/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.2.0
 .....
 
diff --git a/airflow/providers/singularity/__init__.py b/airflow/providers/singularity/__init__.py
index 70382c3..f57c47e 100644
--- a/airflow/providers/singularity/__init__.py
+++ b/airflow/providers/singularity/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.2.0"
+__version__ = "3.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/singularity/provider.yaml b/airflow/providers/singularity/provider.yaml
index fbda2fc..1cb7ae8 100644
--- a/airflow/providers/singularity/provider.yaml
+++ b/airflow/providers/singularity/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.2.1
   - 3.2.0
   - 3.1.0
   - 3.0.0
diff --git a/airflow/providers/slack/CHANGELOG.rst b/airflow/providers/slack/CHANGELOG.rst
index 467d43f..19d70f4 100644
--- a/airflow/providers/slack/CHANGELOG.rst
+++ b/airflow/providers/slack/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+7.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 7.3.0
 .....
 
diff --git a/airflow/providers/slack/__init__.py b/airflow/providers/slack/__init__.py
index 22a00fe..0e5273d 100644
--- a/airflow/providers/slack/__init__.py
+++ b/airflow/providers/slack/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "7.3.0"
+__version__ = "7.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/slack/provider.yaml b/airflow/providers/slack/provider.yaml
index 39a4332..c0de4f0 100644
--- a/airflow/providers/slack/provider.yaml
+++ b/airflow/providers/slack/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 7.3.1
   - 7.3.0
   - 7.2.0
   - 7.1.1
diff --git a/airflow/providers/smtp/CHANGELOG.rst b/airflow/providers/smtp/CHANGELOG.rst
index 2184078..29bb495 100644
--- a/airflow/providers/smtp/CHANGELOG.rst
+++ b/airflow/providers/smtp/CHANGELOG.rst
@@ -24,9 +24,24 @@
 Changelog
 ---------
 
+1.2.0
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Features
+~~~~~~~~
+
+* ``Add notifier for Smtp (#31359)``
+
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Fix ruff static check (#31762)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 1.1.0
 .....
 
diff --git a/airflow/providers/smtp/__init__.py b/airflow/providers/smtp/__init__.py
index 6652e2b..9b82228 100644
--- a/airflow/providers/smtp/__init__.py
+++ b/airflow/providers/smtp/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "1.1.0"
+__version__ = "1.2.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/smtp/provider.yaml b/airflow/providers/smtp/provider.yaml
index bf415a7..9303246 100644
--- a/airflow/providers/smtp/provider.yaml
+++ b/airflow/providers/smtp/provider.yaml
@@ -24,6 +24,7 @@
 
 suspended: false
 versions:
+  - 1.2.0
   - 1.1.0
   - 1.0.1
   - 1.0.0
diff --git a/airflow/providers/snowflake/CHANGELOG.rst b/airflow/providers/snowflake/CHANGELOG.rst
index 4cbee33..a0272b3 100644
--- a/airflow/providers/snowflake/CHANGELOG.rst
+++ b/airflow/providers/snowflake/CHANGELOG.rst
@@ -24,9 +24,30 @@
 Changelog
 ---------
 
+4.2.0
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Features
+~~~~~~~~
+
+* ``Add SnowflakeSqlApiOperator operator (#30698)``
+
+Misc
+~~~~
+
+* ``SnowflakeSqlApiOperator - Change the base class (#31751)``
+* ``Moved sql_api_generate_jwt out of hooks folder (#31586)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check (#31742)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 4.1.0
 .....
 
diff --git a/airflow/providers/snowflake/__init__.py b/airflow/providers/snowflake/__init__.py
index 2faa9ab..5e403f0 100644
--- a/airflow/providers/snowflake/__init__.py
+++ b/airflow/providers/snowflake/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.1.0"
+__version__ = "4.2.0"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/snowflake/provider.yaml b/airflow/providers/snowflake/provider.yaml
index fb00a90..1e68fbd 100644
--- a/airflow/providers/snowflake/provider.yaml
+++ b/airflow/providers/snowflake/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.2.0
   - 4.1.0
   - 4.0.5
   - 4.0.4
diff --git a/airflow/providers/sqlite/CHANGELOG.rst b/airflow/providers/sqlite/CHANGELOG.rst
index 5207512..723cd63 100644
--- a/airflow/providers/sqlite/CHANGELOG.rst
+++ b/airflow/providers/sqlite/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.4.2
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.4.1
 .....
 
diff --git a/airflow/providers/sqlite/__init__.py b/airflow/providers/sqlite/__init__.py
index 7df73f4..3803b98 100644
--- a/airflow/providers/sqlite/__init__.py
+++ b/airflow/providers/sqlite/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.1"
+__version__ = "3.4.2"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/sqlite/provider.yaml b/airflow/providers/sqlite/provider.yaml
index 23ce28b..e998cbc 100644
--- a/airflow/providers/sqlite/provider.yaml
+++ b/airflow/providers/sqlite/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.4.2
   - 3.4.1
   - 3.4.0
   - 3.3.2
diff --git a/airflow/providers/ssh/CHANGELOG.rst b/airflow/providers/ssh/CHANGELOG.rst
index 894e7e9..53f731a 100644
--- a/airflow/providers/ssh/CHANGELOG.rst
+++ b/airflow/providers/ssh/CHANGELOG.rst
@@ -24,9 +24,23 @@
 Changelog
 ---------
 
+3.7.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Remove Python 3.7 support (#30963)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Improve docstrings in providers (#31681)``
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+   * ``Add note about dropping Python 3.7 for providers (#32015)``
+
 3.7.0
 .....
 
diff --git a/airflow/providers/ssh/__init__.py b/airflow/providers/ssh/__init__.py
index 9d4768a..8adf328 100644
--- a/airflow/providers/ssh/__init__.py
+++ b/airflow/providers/ssh/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.7.0"
+__version__ = "3.7.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/ssh/provider.yaml b/airflow/providers/ssh/provider.yaml
index 9d3fa3e..316b320 100644
--- a/airflow/providers/ssh/provider.yaml
+++ b/airflow/providers/ssh/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.7.1
   - 3.7.0
   - 3.6.0
   - 3.5.0
diff --git a/airflow/providers/tableau/CHANGELOG.rst b/airflow/providers/tableau/CHANGELOG.rst
index f3eb8f5..8659382 100644
--- a/airflow/providers/tableau/CHANGELOG.rst
+++ b/airflow/providers/tableau/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+4.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 4.2.0
 .....
 
diff --git a/airflow/providers/tableau/__init__.py b/airflow/providers/tableau/__init__.py
index a46f65d..972d800 100644
--- a/airflow/providers/tableau/__init__.py
+++ b/airflow/providers/tableau/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.2.0"
+__version__ = "4.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/tableau/provider.yaml b/airflow/providers/tableau/provider.yaml
index 8d19d3b..3510e2e 100644
--- a/airflow/providers/tableau/provider.yaml
+++ b/airflow/providers/tableau/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.2.1
   - 4.2.0
   - 4.1.0
   - 4.0.0
diff --git a/airflow/providers/tabular/CHANGELOG.rst b/airflow/providers/tabular/CHANGELOG.rst
index 293daaf..5036652 100644
--- a/airflow/providers/tabular/CHANGELOG.rst
+++ b/airflow/providers/tabular/CHANGELOG.rst
@@ -23,9 +23,21 @@
 Changelog
 ---------
 
+1.2.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 1.2.0
 .....
 
diff --git a/airflow/providers/tabular/__init__.py b/airflow/providers/tabular/__init__.py
index 74351f8..9a3ca40 100644
--- a/airflow/providers/tabular/__init__.py
+++ b/airflow/providers/tabular/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "1.2.0"
+__version__ = "1.2.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/tabular/provider.yaml b/airflow/providers/tabular/provider.yaml
index 22979aa..b7b27fc 100644
--- a/airflow/providers/tabular/provider.yaml
+++ b/airflow/providers/tabular/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 1.2.1
   - 1.2.0
   - 1.1.0
   - 1.0.1
diff --git a/airflow/providers/telegram/CHANGELOG.rst b/airflow/providers/telegram/CHANGELOG.rst
index fb19df7..d9fc42b 100644
--- a/airflow/providers/telegram/CHANGELOG.rst
+++ b/airflow/providers/telegram/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+4.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 4.1.0
 .....
 
diff --git a/airflow/providers/telegram/__init__.py b/airflow/providers/telegram/__init__.py
index 2c2a38d..c5c25bb 100644
--- a/airflow/providers/telegram/__init__.py
+++ b/airflow/providers/telegram/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.1.0"
+__version__ = "4.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/telegram/provider.yaml b/airflow/providers/telegram/provider.yaml
index ff6f429..43578df 100644
--- a/airflow/providers/telegram/provider.yaml
+++ b/airflow/providers/telegram/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.1.1
   - 4.1.0
   - 4.0.0
   - 3.1.1
diff --git a/airflow/providers/trino/CHANGELOG.rst b/airflow/providers/trino/CHANGELOG.rst
index f2b4bd6..24dcf62 100644
--- a/airflow/providers/trino/CHANGELOG.rst
+++ b/airflow/providers/trino/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+5.1.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 5.1.0
 .....
 
diff --git a/airflow/providers/trino/__init__.py b/airflow/providers/trino/__init__.py
index 14a4af3..37cb07d 100644
--- a/airflow/providers/trino/__init__.py
+++ b/airflow/providers/trino/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "5.1.0"
+__version__ = "5.1.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/trino/provider.yaml b/airflow/providers/trino/provider.yaml
index e015511..6c4c61a 100644
--- a/airflow/providers/trino/provider.yaml
+++ b/airflow/providers/trino/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 5.1.1
   - 5.1.0
   - 5.0.0
   - 4.3.2
diff --git a/airflow/providers/vertica/CHANGELOG.rst b/airflow/providers/vertica/CHANGELOG.rst
index f89b562..d2e3c54 100644
--- a/airflow/providers/vertica/CHANGELOG.rst
+++ b/airflow/providers/vertica/CHANGELOG.rst
@@ -24,9 +24,21 @@
 Changelog
 ---------
 
+3.4.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+   * ``Add D400 pydocstyle check - Providers (#31427)``
+
 3.4.0
 .....
 
diff --git a/airflow/providers/vertica/__init__.py b/airflow/providers/vertica/__init__.py
index 60a9ec0..feba3e2 100644
--- a/airflow/providers/vertica/__init__.py
+++ b/airflow/providers/vertica/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "3.4.0"
+__version__ = "3.4.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/vertica/provider.yaml b/airflow/providers/vertica/provider.yaml
index 4f2c32e..90498fa 100644
--- a/airflow/providers/vertica/provider.yaml
+++ b/airflow/providers/vertica/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 3.4.1
   - 3.4.0
   - 3.3.1
   - 3.3.0
diff --git a/airflow/providers/zendesk/CHANGELOG.rst b/airflow/providers/zendesk/CHANGELOG.rst
index 0d2d89e..5ff676b 100644
--- a/airflow/providers/zendesk/CHANGELOG.rst
+++ b/airflow/providers/zendesk/CHANGELOG.rst
@@ -24,9 +24,20 @@
 Changelog
 ---------
 
+4.3.1
+.....
+
 .. note::
   This release dropped support for Python 3.7
 
+Misc
+~~~~
+
+* ``Add note about dropping Python 3.7 for providers (#32015)``
+
+.. Below changes are excluded from the changelog. Move them to
+   appropriate section above if needed. Do not delete the lines(!):
+
 4.3.0
 .....
 
diff --git a/airflow/providers/zendesk/__init__.py b/airflow/providers/zendesk/__init__.py
index 232d4c9..d34905f 100644
--- a/airflow/providers/zendesk/__init__.py
+++ b/airflow/providers/zendesk/__init__.py
@@ -28,7 +28,7 @@
 
 __all__ = ["__version__"]
 
-__version__ = "4.3.0"
+__version__ = "4.3.1"
 
 try:
     from airflow import __version__ as airflow_version
diff --git a/airflow/providers/zendesk/provider.yaml b/airflow/providers/zendesk/provider.yaml
index 3015eb5..86101b4 100644
--- a/airflow/providers/zendesk/provider.yaml
+++ b/airflow/providers/zendesk/provider.yaml
@@ -23,6 +23,7 @@
 
 suspended: false
 versions:
+  - 4.3.1
   - 4.3.0
   - 4.2.0
   - 4.1.0
diff --git a/docs/apache-airflow-providers-airbyte/commits.rst b/docs/apache-airflow-providers-airbyte/commits.rst
index bf3976c..b6a38ee 100644
--- a/docs/apache-airflow-providers-airbyte/commits.rst
+++ b/docs/apache-airflow-providers-airbyte/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-airbyte/index.rst b/docs/apache-airflow-providers-airbyte/index.rst
index 56cc1ec..bd27d6c 100644
--- a/docs/apache-airflow-providers-airbyte/index.rst
+++ b/docs/apache-airflow-providers-airbyte/index.rst
@@ -64,7 +64,7 @@
 `Airbyte <https://airbyte.io/>`__
 
 
-Release: 3.3.0
+Release: 3.3.1
 
 Provider package
 ----------------
@@ -116,7 +116,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-airbyte 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.3.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-airbyte 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.3.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-airbyte 3.3.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.3.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.3.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.3.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-airbyte 3.3.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.3.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.3.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.3.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/airbyte/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-alibaba/commits.rst b/docs/apache-airflow-providers-alibaba/commits.rst
index 4436732..f01e835 100644
--- a/docs/apache-airflow-providers-alibaba/commits.rst
+++ b/docs/apache-airflow-providers-alibaba/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+2.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 2.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-alibaba/index.rst b/docs/apache-airflow-providers-alibaba/index.rst
index b82fda5..8e0da17 100644
--- a/docs/apache-airflow-providers-alibaba/index.rst
+++ b/docs/apache-airflow-providers-alibaba/index.rst
@@ -65,7 +65,7 @@
 Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com//>`__).
 
 
-Release: 2.4.0
+Release: 2.4.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-amazon/commits.rst b/docs/apache-airflow-providers-amazon/commits.rst
index 38df019..94b8c2b 100644
--- a/docs/apache-airflow-providers-amazon/commits.rst
+++ b/docs/apache-airflow-providers-amazon/commits.rst
@@ -28,6 +28,54 @@
 
 
 
+8.2.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ===============================================================================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ===============================================================================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`f0b91ac6a7 <https://github.com/apache/airflow/commit/f0b91ac6a75a9f6f74663f8300078db09337cb16>`_  2023-06-20   ``Add 'deferrable' param in 'EmrContainerSensor' (#30945)``
+`e01ff4749c <https://github.com/apache/airflow/commit/e01ff4749cb2469b21f467a1b0089d0115f39368>`_  2023-06-19   ``Add realtime container execution logs for BatchOperator (#31837)``
+`41fb9b4c49 <https://github.com/apache/airflow/commit/41fb9b4c493dc74be7c21f68a2877cb2de97d983>`_  2023-06-17   ``Deprecate 'wait_for_completion' from 'EcsRegisterTaskDefinitionOperator' and 'EcsDeregisterTaskDefinitionOperator' (#31884)``
+`e0f21f43c6 <https://github.com/apache/airflow/commit/e0f21f43c63b13fd48f55aa660746edc37df1458>`_  2023-06-16   ``Various fixes on ECS run task operator (#31838)``
+`3689cee485 <https://github.com/apache/airflow/commit/3689cee485215651bdb5ef434f24ab8774995a37>`_  2023-06-15   ``Use a continuation token to get logs in ecs (#31824)``
+`9be22e4cc0 <https://github.com/apache/airflow/commit/9be22e4cc09faba5db6432ccac8d2193114d95ee>`_  2023-06-15   ``Add deferrable option to EmrTerminateJobFlowOperator (#31646)``
+`67204565b8 <https://github.com/apache/airflow/commit/67204565b848b29c1c36188183eb27240e5c48bc>`_  2023-06-14   ``Add Deferrable option to EmrCreateJobFlowOperator (#31641)``
+`212a37fbec <https://github.com/apache/airflow/commit/212a37fbeccebce2b8fb14535234a9bdc4b93708>`_  2023-06-14   ``Deferrable mode for EksCreateFargateProfileOperator and EksDeleteFargateProfileOperator (#31657)``
+`688f91b330 <https://github.com/apache/airflow/commit/688f91b330addbc88a5bbda2f0e29cbed2313678>`_  2023-06-14   ``Add deferrable mode to 'BatchSensor'  (#30279)``
+`4e61b654c3 <https://github.com/apache/airflow/commit/4e61b654c39d47bfe72e3004be45ba1bd97be660>`_  2023-06-08   ``Fetch status in while loop so as to not exit too early (#31804)``
+`b9b8da79b5 <https://github.com/apache/airflow/commit/b9b8da79b512d8b62bc753e57ec28b6331761ae1>`_  2023-06-08   ``Add deferrable mode for S3KeySensor (#31018)``
+`0854500769 <https://github.com/apache/airflow/commit/0854500769a07f8251269caeab65c95a05d9c28a>`_  2023-06-08   ``Amazon provider docstring improvements (#31729)``
+`3a7c9f277f <https://github.com/apache/airflow/commit/3a7c9f277f25356783587ea38ccaf852aabc3674>`_  2023-06-07   ``Add Deferrable mode to Emr Add Steps operator (#30928)``
+`359dfb5446 <https://github.com/apache/airflow/commit/359dfb54469cb33b817d0e76641e2be09dc04d2d>`_  2023-06-07   ``Added config template field to EmrServerlessStartJobOperator (#31746)``
+`a3768b44e9 <https://github.com/apache/airflow/commit/a3768b44e9b57aa9334d4a133f6179cd5da0c469>`_  2023-06-07   ``[AWS hook] use provided client to get the official waiter on fallback (#31748)``
+`07ea574fed <https://github.com/apache/airflow/commit/07ea574fed5d56ca9405ee9e47828841289e3a3c>`_  2023-06-07   ``Add D400 pydocstyle check (#31742)``
+`9e268e13b1 <https://github.com/apache/airflow/commit/9e268e13b147401a5665e497aee87ac107ade8d1>`_  2023-06-07   ``Replace spelling directive with spelling:word-list (#31752)``
+`cda83c226b <https://github.com/apache/airflow/commit/cda83c226bf231f3a7e1b78c00bf13f9defb5d6e>`_  2023-06-05   ``Add D400 pydocstyle check - Amazon provider only (#31423)``
+`c255ac411b <https://github.com/apache/airflow/commit/c255ac411b93d222bc9a0dbd4139a15687d2c981>`_  2023-06-05   ``Support of wildcard in S3ListOperator and S3ToGCSOperator (#31640)``
+`62938e945b <https://github.com/apache/airflow/commit/62938e945b94fbc18e14ef8e5d23f374c92af4b3>`_  2023-06-05   ``fix return values on glue operators deferrable mode (#31694)``
+`4c62a4f58b <https://github.com/apache/airflow/commit/4c62a4f58bd7a76e971ecf4ed798bc795afec4c5>`_  2023-06-05   ``Add back missing AsyncIterator import (#31710)``
+`f69dd29e87 <https://github.com/apache/airflow/commit/f69dd29e872ad3db3df1dc2d0b64add0e09d7a10>`_  2023-06-04   ``Remove aws unused code (#31610)``
+`a247a8f7c9 <https://github.com/apache/airflow/commit/a247a8f7c9d3e4ba7dcb01f45d4b089477de5008>`_  2023-06-04   ``Add deferrable mode in Redshift delete cluster (#30244)``
+`5dc6e5bfbe <https://github.com/apache/airflow/commit/5dc6e5bfbe61aae40aef169110e238dfe6b421fc>`_  2023-06-02   ``allow anonymous AWS access (#31659)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`635f94cc39 <https://github.com/apache/airflow/commit/635f94cc392b0393a4f9a38fb78123e842781fca>`_  2023-05-31   ``Add deferrable mode to AWS glue operators (Job & Crawl) (#30948)``
+`a8c45b088e <https://github.com/apache/airflow/commit/a8c45b088e088a5f1d9c924f9efb660c80c0ce12>`_  2023-05-31   ``handle missing LogUri in emr 'describe_cluster' API response (#31482)``
+`ce7766e0a5 <https://github.com/apache/airflow/commit/ce7766e0a52e15b2b1ef7e7f9c613ea686fbfca6>`_  2023-05-31   ``Add docstring and signature for _read_remote_logs (#31623)``
+`5b3382f638 <https://github.com/apache/airflow/commit/5b3382f63898e497d482870636ed156ce861afbc>`_  2023-05-30   ``Add null check for host in Amazon Redshift connection (#31567)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+`fb10108eec <https://github.com/apache/airflow/commit/fb10108eec4d9c621f5bcdba3120d9a88a368e7f>`_  2023-05-27   ``add workgroup to templated fields (#31574)``
+`5b0f668b6d <https://github.com/apache/airflow/commit/5b0f668b6dad448bdf99976658231f6ffa607f8b>`_  2023-05-25   ``Add deferrable param in BatchOperator (#30865)``
+`aac2f8f0a9 <https://github.com/apache/airflow/commit/aac2f8f0a9eff40b02212257079ab3708a4e5745>`_  2023-05-24   ``AWS system test example_dynamodb_to_s3: add retry when fecthing the export time (#31388)``
+`44741f354c <https://github.com/apache/airflow/commit/44741f354cf8b7113099b0e0f147b58a55ecc5d3>`_  2023-05-24   `` Change Deferrable implementation for RedshiftResumeClusterOperator to follow standard (#30864)``
+`911bd1cdb8 <https://github.com/apache/airflow/commit/911bd1cdb869295e267b99cdaa0bfe68cc7ace12>`_  2023-05-24   ``Add Deferrable Mode to RedshiftCreateClusterSnapshotOperator (#30856)``
+`0b7c095c9f <https://github.com/apache/airflow/commit/0b7c095c9fa54981248a72659da9acdf3bf5c2c0>`_  2023-05-23   ``Change Deferrable implementation for RedshiftPauseClusterOperator to follow standard (#30853)``
+`c5597d1fab <https://github.com/apache/airflow/commit/c5597d1fabe5d8f3a170885f6640344d93bf64bf>`_  2023-05-23   ``Add Python 3.11 support (#27264)``
+=================================================================================================  ===========  ===============================================================================================================================
+
 8.1.0
 .....
 
@@ -36,6 +84,7 @@
 =================================================================================================  ===========  ====================================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ====================================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `0b4f1c116a <https://github.com/apache/airflow/commit/0b4f1c116a6129d3125b953312ad0cbf4ebab7ce>`_  2023-05-19   ``Fix AWS system test example_dynamodb (#31395)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
diff --git a/docs/apache-airflow-providers-amazon/index.rst b/docs/apache-airflow-providers-amazon/index.rst
index e063c44..dff699d 100644
--- a/docs/apache-airflow-providers-amazon/index.rst
+++ b/docs/apache-airflow-providers-amazon/index.rst
@@ -74,7 +74,7 @@
 Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__).
 
 
-Release: 8.1.0
+Release: 8.2.0
 
 Provider package
 ----------------
@@ -108,6 +108,7 @@
 ``mypy-boto3-rds``                       ``>=1.24.0``
 ``mypy-boto3-redshift-data``             ``>=1.24.0``
 ``mypy-boto3-appflow``                   ``>=1.24.0``
+``asgiref``
 ``mypy-boto3-s3``                        ``>=1.24.0``
 =======================================  ==================
 
@@ -145,7 +146,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-amazon 8.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-amazon 8.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-amazon 8.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.2.0.tar.gz.sha512>`__)
+* `The apache-airflow-providers-amazon 8.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.2.0-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/amazon/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-beam/commits.rst b/docs/apache-airflow-providers-apache-beam/commits.rst
index b63819e..c0daa94 100644
--- a/docs/apache-airflow-providers-apache-beam/commits.rst
+++ b/docs/apache-airflow-providers-apache-beam/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+5.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 5.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `28d1bf8dfc <https://github.com/apache/airflow/commit/28d1bf8dfc03787cc2b4373bbaa27527bdd91846>`_  2023-05-18   ``Update SDKs for google provider package (#30067)``
diff --git a/docs/apache-airflow-providers-apache-beam/index.rst b/docs/apache-airflow-providers-apache-beam/index.rst
index 65bd976d..30ceaf0 100644
--- a/docs/apache-airflow-providers-apache-beam/index.rst
+++ b/docs/apache-airflow-providers-apache-beam/index.rst
@@ -63,7 +63,7 @@
 `Apache Beam <https://beam.apache.org/>`__.
 
 
-Release: 5.1.0
+Release: 5.1.1
 
 Provider package
 ----------------
@@ -115,7 +115,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-beam 5.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-beam 5.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-beam 5.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-beam 5.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/beam/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-cassandra/commits.rst b/docs/apache-airflow-providers-apache-cassandra/commits.rst
index 4f99a64..aa75b16 100644
--- a/docs/apache-airflow-providers-apache-cassandra/commits.rst
+++ b/docs/apache-airflow-providers-apache-cassandra/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-cassandra/index.rst b/docs/apache-airflow-providers-apache-cassandra/index.rst
index 25757be..d33605c 100644
--- a/docs/apache-airflow-providers-apache-cassandra/index.rst
+++ b/docs/apache-airflow-providers-apache-cassandra/index.rst
@@ -64,7 +64,7 @@
 `Apache Cassandra <http://cassandra.apache.org/>`__.
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-apache-drill/commits.rst b/docs/apache-airflow-providers-apache-drill/commits.rst
index cdae73e..d38a4e2 100644
--- a/docs/apache-airflow-providers-apache-drill/commits.rst
+++ b/docs/apache-airflow-providers-apache-drill/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+2.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 2.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-drill/index.rst b/docs/apache-airflow-providers-apache-drill/index.rst
index 2013827..461f5c0 100644
--- a/docs/apache-airflow-providers-apache-drill/index.rst
+++ b/docs/apache-airflow-providers-apache-drill/index.rst
@@ -64,7 +64,7 @@
 `Apache Drill <https://drill.apache.org/>`__.
 
 
-Release: 2.4.0
+Release: 2.4.1
 
 Provider package
 ----------------
@@ -117,7 +117,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-drill 2.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.4.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-drill 2.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.4.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-drill 2.4.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.4.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.4.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.4.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-drill 2.4.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.4.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.4.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.4.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/drill/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-druid/commits.rst b/docs/apache-airflow-providers-apache-druid/commits.rst
index 55b67ee..3bd3ef2 100644
--- a/docs/apache-airflow-providers-apache-druid/commits.rst
+++ b/docs/apache-airflow-providers-apache-druid/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`13890788ae <https://github.com/apache/airflow/commit/13890788ae939328d451daeaea54f493f4aaaa69>`_  2023-06-07   ``Apache provider docstring improvements (#31730)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 3.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-druid/index.rst b/docs/apache-airflow-providers-apache-druid/index.rst
index 69c737f..967203c 100644
--- a/docs/apache-airflow-providers-apache-druid/index.rst
+++ b/docs/apache-airflow-providers-apache-druid/index.rst
@@ -64,7 +64,7 @@
 `Apache Druid <https://druid.apache.org/>`__.
 
 
-Release: 3.4.0
+Release: 3.4.1
 
 Provider package
 ----------------
@@ -118,7 +118,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-druid 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.4.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-druid 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.4.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-druid 3.4.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.4.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.4.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.4.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-druid 3.4.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.4.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.4.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.4.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/druid/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-flink/commits.rst b/docs/apache-airflow-providers-apache-flink/commits.rst
index e1e15ad..83687f2 100644
--- a/docs/apache-airflow-providers-apache-flink/commits.rst
+++ b/docs/apache-airflow-providers-apache-flink/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+1.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  ==============================================================
+
 1.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-flink/index.rst b/docs/apache-airflow-providers-apache-flink/index.rst
index f810434..cb5958b 100644
--- a/docs/apache-airflow-providers-apache-flink/index.rst
+++ b/docs/apache-airflow-providers-apache-flink/index.rst
@@ -57,7 +57,7 @@
 `Apache Flink <https://flink.apache.org/>`__
 
 
-Release: 1.1.0
+Release: 1.1.1
 
 Provider package
 ----------------
@@ -110,7 +110,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-flink 1.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-flink 1.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-flink 1.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-flink 1.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/flink/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-hdfs/commits.rst b/docs/apache-airflow-providers-apache-hdfs/commits.rst
index a751111..563b26c 100644
--- a/docs/apache-airflow-providers-apache-hdfs/commits.rst
+++ b/docs/apache-airflow-providers-apache-hdfs/commits.rst
@@ -29,14 +29,29 @@
 
 
 
+4.1.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==================================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==================================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`d3c8881cc6 <https://github.com/apache/airflow/commit/d3c8881cc607337d3bede1f1b9a9284227e5ebd1>`_  2023-06-08   ``Add HdfsTaskHandler to store task instance logs on HDFS (#31512)``
+`0261bc57bc <https://github.com/apache/airflow/commit/0261bc57bcad3c1f3c0b7f3a4683584462cf1e0e>`_  2023-06-07   ``Updates release notes for snakebite-py3 incompatibility with protobuf (#31756)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==================================================================================
+
 4.0.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-hive/commits.rst b/docs/apache-airflow-providers-apache-hive/commits.rst
index 7f843b5..7377b4f 100644
--- a/docs/apache-airflow-providers-apache-hive/commits.rst
+++ b/docs/apache-airflow-providers-apache-hive/commits.rst
@@ -28,14 +28,32 @@
 
 
 
+6.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`6724eeb621 <https://github.com/apache/airflow/commit/6724eeb6210d5965937eaf9dae3e476eb30f8268>`_  2023-06-18   ``Sanitize beeline principal parameter (#31983)``
+`13890788ae <https://github.com/apache/airflow/commit/13890788ae939328d451daeaea54f493f4aaaa69>`_  2023-06-07   ``Apache provider docstring improvements (#31730)``
+`fbeb01cb17 <https://github.com/apache/airflow/commit/fbeb01cb17b7cb9c2e27ac7010f423a2bced78b4>`_  2023-06-07   ``Replace unicodecsv with standard csv library (#31693)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+`c5597d1fab <https://github.com/apache/airflow/commit/c5597d1fabe5d8f3a170885f6640344d93bf64bf>`_  2023-05-23   ``Add Python 3.11 support (#27264)``
+=================================================================================================  ===========  ==============================================================
+
 6.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-hive/index.rst b/docs/apache-airflow-providers-apache-hive/index.rst
index 75ac0c2..da4d4e3 100644
--- a/docs/apache-airflow-providers-apache-hive/index.rst
+++ b/docs/apache-airflow-providers-apache-hive/index.rst
@@ -66,7 +66,7 @@
 `Apache Hive <https://hive.apache.org/>`__
 
 
-Release: 6.1.0
+Release: 6.1.1
 
 Provider package
 ----------------
@@ -129,7 +129,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-hive 6.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-hive 6.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-hive 6.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-hive 6.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/hive/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-impala/commits.rst b/docs/apache-airflow-providers-apache-impala/commits.rst
index 283d92d..86c3772 100644
--- a/docs/apache-airflow-providers-apache-impala/commits.rst
+++ b/docs/apache-airflow-providers-apache-impala/commits.rst
@@ -28,14 +28,26 @@
 
 
 
+1.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ====================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ====================================================================
+`547f5846bf <https://github.com/apache/airflow/commit/547f5846bfdf9bd973d40be2dd63484329f95dd4>`_  2023-06-20   ``Add note about dropping Python 3.7 for kafka and impala (#32017)``
+=================================================================================================  ===========  ====================================================================
+
 1.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-impala/index.rst b/docs/apache-airflow-providers-apache-impala/index.rst
index d8bb7ae..516043d 100644
--- a/docs/apache-airflow-providers-apache-impala/index.rst
+++ b/docs/apache-airflow-providers-apache-impala/index.rst
@@ -63,7 +63,7 @@
 `Apache Impala <https://impala.apache.org/>`__.
 
 
-Release: 1.1.0
+Release: 1.1.1
 
 Provider package
 ----------------
@@ -115,7 +115,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-impala 1.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-impala-1.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-impala-1.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-impala-1.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-impala 1.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-impala 1.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-impala-1.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-impala-1.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-impala-1.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-impala 1.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/impala/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-kafka/commits.rst b/docs/apache-airflow-providers-apache-kafka/commits.rst
index 23e938b..e15017b 100644
--- a/docs/apache-airflow-providers-apache-kafka/commits.rst
+++ b/docs/apache-airflow-providers-apache-kafka/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+1.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ====================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ====================================================================
+`547f5846bf <https://github.com/apache/airflow/commit/547f5846bfdf9bd973d40be2dd63484329f95dd4>`_  2023-06-20   ``Add note about dropping Python 3.7 for kafka and impala (#32017)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  ====================================================================
+
 1.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-kafka/index.rst b/docs/apache-airflow-providers-apache-kafka/index.rst
index bf98bef..278a3ac 100644
--- a/docs/apache-airflow-providers-apache-kafka/index.rst
+++ b/docs/apache-airflow-providers-apache-kafka/index.rst
@@ -70,7 +70,7 @@
 `Apache Kafka  <https://kafka.apache.org/>`__
 
 
-Release: 1.1.0
+Release: 1.1.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-apache-kylin/commits.rst b/docs/apache-airflow-providers-apache-kylin/commits.rst
index f6df3d2..d9296d6 100644
--- a/docs/apache-airflow-providers-apache-kylin/commits.rst
+++ b/docs/apache-airflow-providers-apache-kylin/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`13890788ae <https://github.com/apache/airflow/commit/13890788ae939328d451daeaea54f493f4aaaa69>`_  2023-06-07   ``Apache provider docstring improvements (#31730)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-kylin/index.rst b/docs/apache-airflow-providers-apache-kylin/index.rst
index 1fa1490..6312c91 100644
--- a/docs/apache-airflow-providers-apache-kylin/index.rst
+++ b/docs/apache-airflow-providers-apache-kylin/index.rst
@@ -58,7 +58,7 @@
 `Apache Kylin <https://kylin.apache.org/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-apache-livy/commits.rst b/docs/apache-airflow-providers-apache-livy/commits.rst
index a9aa57c..3580de1 100644
--- a/docs/apache-airflow-providers-apache-livy/commits.rst
+++ b/docs/apache-airflow-providers-apache-livy/commits.rst
@@ -28,14 +28,31 @@
 
 
 
+3.5.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ===========================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ===========================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`13890788ae <https://github.com/apache/airflow/commit/13890788ae939328d451daeaea54f493f4aaaa69>`_  2023-06-07   ``Apache provider docstring improvements (#31730)``
+`361aa77d5d <https://github.com/apache/airflow/commit/361aa77d5df47dfece9617147724e9657f14492f>`_  2023-06-05   ``Optimize deferred mode execution (#31685)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+`bfb14f6ffa <https://github.com/apache/airflow/commit/bfb14f6ffa82df3e4fe2bbba8caef18ba768bf72>`_  2023-05-25   ``Push Spark appId to XCOM for LivyOperator with deferrable mode (#31201)``
+=================================================================================================  ===========  ===========================================================================
+
 3.5.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-livy/index.rst b/docs/apache-airflow-providers-apache-livy/index.rst
index e8669e7..fcfd569 100644
--- a/docs/apache-airflow-providers-apache-livy/index.rst
+++ b/docs/apache-airflow-providers-apache-livy/index.rst
@@ -63,7 +63,7 @@
 `Apache Livy <https://livy.apache.org/>`__
 
 
-Release: 3.5.0
+Release: 3.5.1
 
 Provider package
 ----------------
@@ -117,7 +117,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-livy 3.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-livy 3.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-livy 3.5.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-livy 3.5.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/livy/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-pig/commits.rst b/docs/apache-airflow-providers-apache-pig/commits.rst
index b5e1690..c7785fa 100644
--- a/docs/apache-airflow-providers-apache-pig/commits.rst
+++ b/docs/apache-airflow-providers-apache-pig/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+4.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 4.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-pig/index.rst b/docs/apache-airflow-providers-apache-pig/index.rst
index bd0a252..554c54a 100644
--- a/docs/apache-airflow-providers-apache-pig/index.rst
+++ b/docs/apache-airflow-providers-apache-pig/index.rst
@@ -63,7 +63,7 @@
 `Apache Pig <https://pig.apache.org/>`__
 
 
-Release: 4.1.0
+Release: 4.1.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-apache-pinot/commits.rst b/docs/apache-airflow-providers-apache-pinot/commits.rst
index ed4246a..6152491 100644
--- a/docs/apache-airflow-providers-apache-pinot/commits.rst
+++ b/docs/apache-airflow-providers-apache-pinot/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+4.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 4.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-pinot/index.rst b/docs/apache-airflow-providers-apache-pinot/index.rst
index bcef9de..b0f9b2c 100644
--- a/docs/apache-airflow-providers-apache-pinot/index.rst
+++ b/docs/apache-airflow-providers-apache-pinot/index.rst
@@ -57,7 +57,7 @@
 `Apache Pinot <https://pinot.apache.org/>`__
 
 
-Release: 4.1.0
+Release: 4.1.1
 
 Provider package
 ----------------
@@ -110,7 +110,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-apache-pinot 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-apache-pinot 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-apache-pinot 4.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-apache-pinot 4.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/apache/pinot/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-apache-spark/commits.rst b/docs/apache-airflow-providers-apache-spark/commits.rst
index 7e64130..ba6baea 100644
--- a/docs/apache-airflow-providers-apache-spark/commits.rst
+++ b/docs/apache-airflow-providers-apache-spark/commits.rst
@@ -28,14 +28,30 @@
 
 
 
+4.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`6becb70316 <https://github.com/apache/airflow/commit/6becb7031618867bc253aefc9e3e216629575d2d>`_  2023-06-16   ``SparkSubmitOperator: rename spark_conn_id to conn_id (#31952)``
+`13890788ae <https://github.com/apache/airflow/commit/13890788ae939328d451daeaea54f493f4aaaa69>`_  2023-06-07   ``Apache provider docstring improvements (#31730)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  =================================================================
+
 4.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-spark/index.rst b/docs/apache-airflow-providers-apache-spark/index.rst
index 558a9cf..da58352 100644
--- a/docs/apache-airflow-providers-apache-spark/index.rst
+++ b/docs/apache-airflow-providers-apache-spark/index.rst
@@ -64,7 +64,7 @@
 `Apache Spark <https://spark.apache.org/>`__
 
 
-Release: 4.1.0
+Release: 4.1.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-apache-sqoop/commits.rst b/docs/apache-airflow-providers-apache-sqoop/commits.rst
index 81bb7f3..12fde5c0 100644
--- a/docs/apache-airflow-providers-apache-sqoop/commits.rst
+++ b/docs/apache-airflow-providers-apache-sqoop/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`13890788ae <https://github.com/apache/airflow/commit/13890788ae939328d451daeaea54f493f4aaaa69>`_  2023-06-07   ``Apache provider docstring improvements (#31730)``
+`a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_  2023-06-01   ``Add D400 pydocstyle check - Apache providers only (#31424)``
+=================================================================================================  ===========  ==============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-apache-sqoop/index.rst b/docs/apache-airflow-providers-apache-sqoop/index.rst
index dfb52c6..0d627bf 100644
--- a/docs/apache-airflow-providers-apache-sqoop/index.rst
+++ b/docs/apache-airflow-providers-apache-sqoop/index.rst
@@ -51,7 +51,7 @@
 `Apache Sqoop <https://sqoop.apache.org/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-arangodb/commits.rst b/docs/apache-airflow-providers-arangodb/commits.rst
index afc3ac3..ca53a57 100644
--- a/docs/apache-airflow-providers-arangodb/commits.rst
+++ b/docs/apache-airflow-providers-arangodb/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+2.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 2.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-arangodb/index.rst b/docs/apache-airflow-providers-arangodb/index.rst
index 296050b..2e926f8 100644
--- a/docs/apache-airflow-providers-arangodb/index.rst
+++ b/docs/apache-airflow-providers-arangodb/index.rst
@@ -64,7 +64,7 @@
 `ArangoDB <https://www.arangodb.com/>`__
 
 
-Release: 2.2.0
+Release: 2.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-asana/commits.rst b/docs/apache-airflow-providers-asana/commits.rst
index e834ecd..3b0648c 100644
--- a/docs/apache-airflow-providers-asana/commits.rst
+++ b/docs/apache-airflow-providers-asana/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+2.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 2.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-asana/index.rst b/docs/apache-airflow-providers-asana/index.rst
index c37a23a..447e190 100644
--- a/docs/apache-airflow-providers-asana/index.rst
+++ b/docs/apache-airflow-providers-asana/index.rst
@@ -65,7 +65,7 @@
 `Asana <https://app.asana.com/>`__
 
 
-Release: 2.2.0
+Release: 2.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-atlassian-jira/commits.rst b/docs/apache-airflow-providers-atlassian-jira/commits.rst
index acaf885..165dd13 100644
--- a/docs/apache-airflow-providers-atlassian-jira/commits.rst
+++ b/docs/apache-airflow-providers-atlassian-jira/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+2.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ===========================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ===========================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`ab8c9ec254 <https://github.com/apache/airflow/commit/ab8c9ec2545caefb232d8e979b18b4c8c8ad3563>`_  2023-06-08   ``Fix: JiraOperator support any return response from Jira client (#31672)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  ===========================================================================
+
 2.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-atlassian-jira/index.rst b/docs/apache-airflow-providers-atlassian-jira/index.rst
index efd6621..9f73c3b 100644
--- a/docs/apache-airflow-providers-atlassian-jira/index.rst
+++ b/docs/apache-airflow-providers-atlassian-jira/index.rst
@@ -51,7 +51,7 @@
 `Atlassian Jira <https://www.atlassian.com/>`__
 
 
-Release: 2.1.0
+Release: 2.1.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-celery/commits.rst b/docs/apache-airflow-providers-celery/commits.rst
index 0952a64..760e1b6 100644
--- a/docs/apache-airflow-providers-celery/commits.rst
+++ b/docs/apache-airflow-providers-celery/commits.rst
@@ -28,14 +28,26 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-celery/index.rst b/docs/apache-airflow-providers-celery/index.rst
index 469379b..1bc1a5f 100644
--- a/docs/apache-airflow-providers-celery/index.rst
+++ b/docs/apache-airflow-providers-celery/index.rst
@@ -46,7 +46,7 @@
 `Celery <http://www.celeryproject.org/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-cloudant/commits.rst b/docs/apache-airflow-providers-cloudant/commits.rst
index e65d603..2d2513b 100644
--- a/docs/apache-airflow-providers-cloudant/commits.rst
+++ b/docs/apache-airflow-providers-cloudant/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-cloudant/index.rst b/docs/apache-airflow-providers-cloudant/index.rst
index 53ecdf8..067ab2e 100644
--- a/docs/apache-airflow-providers-cloudant/index.rst
+++ b/docs/apache-airflow-providers-cloudant/index.rst
@@ -46,7 +46,7 @@
 `IBM Cloudant <https://www.ibm.com/cloud/cloudant>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-cncf-kubernetes/commits.rst b/docs/apache-airflow-providers-cncf-kubernetes/commits.rst
index b6ef737..d0be3b3 100644
--- a/docs/apache-airflow-providers-cncf-kubernetes/commits.rst
+++ b/docs/apache-airflow-providers-cncf-kubernetes/commits.rst
@@ -28,6 +28,26 @@
 
 
 
+7.1.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`66299338eb <https://github.com/apache/airflow/commit/66299338eb24aa71eb2e27ebd8b76079b39fd305>`_  2023-06-18   ``add a return when the event is yielded in a loop to stop the execution (#31985)``
+`07ea574fed <https://github.com/apache/airflow/commit/07ea574fed5d56ca9405ee9e47828841289e3a3c>`_  2023-06-07   ``Add D400 pydocstyle check (#31742)``
+`d8086a3db5 <https://github.com/apache/airflow/commit/d8086a3db5ef020ef28158249105e7ce5639b1a5>`_  2023-06-05   ``Add possibility to disable logging the pod template in a case when task fails (#31595)``
+`def4b53765 <https://github.com/apache/airflow/commit/def4b5376517919ca08d783ebcfa5f1751cc2aa3>`_  2023-06-05   ``Fix Fargate logging for AWS system tests (#31622)``
+`86b5ba2802 <https://github.com/apache/airflow/commit/86b5ba28026fc6e8b7d868b83080189df9b09306>`_  2023-06-04   ``Remove return statement after yield from triggers class (#31703)``
+`0fa8c44527 <https://github.com/apache/airflow/commit/0fa8c4452764fbc403fc2e1f5c2f61a6aa4f383a>`_  2023-06-04   ``KubernetesResourceOperator - KubernetesDeleteResourceOperator & KubernetesCreateResourceOperator (#29930)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================================================================
+
 7.0.0
 .....
 
@@ -36,6 +56,7 @@
 =================================================================================================  ===========  ================================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ================================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `a1f5a5425e <https://github.com/apache/airflow/commit/a1f5a5425e65c40e9baaf5eb4faeaed01cee3569>`_  2023-05-19   ``Remove deprecated features from KubernetesHook (#31402)``
 `54f1fb0574 <https://github.com/apache/airflow/commit/54f1fb0574a6ecf8f415bbf6da1aaf6f1999bb29>`_  2023-05-19   ``Docstring improvements (#31375)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
diff --git a/docs/apache-airflow-providers-cncf-kubernetes/index.rst b/docs/apache-airflow-providers-cncf-kubernetes/index.rst
index 36dbdcf..5947fd9 100644
--- a/docs/apache-airflow-providers-cncf-kubernetes/index.rst
+++ b/docs/apache-airflow-providers-cncf-kubernetes/index.rst
@@ -65,7 +65,7 @@
 `Kubernetes <https://kubernetes.io/>`__
 
 
-Release: 7.0.0
+Release: 7.1.0
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-common-sql/commits.rst b/docs/apache-airflow-providers-common-sql/commits.rst
index d3c95f3..385dfa4 100644
--- a/docs/apache-airflow-providers-common-sql/commits.rst
+++ b/docs/apache-airflow-providers-common-sql/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+1.5.2
+.....
+
+Latest change: 2023-06-05
+
+=================================================================================================  ===========  ==================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==================================================
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  ==================================================
+
 1.5.1
 .....
 
-Latest change: 2023-05-23
+Latest change: 2023-05-24
 
 =================================================================================================  ===========  ======================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================
+`d745cee3db <https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5>`_  2023-05-24   ``Prepare adhoc wave of Providers (#31478)``
 `547e352578 <https://github.com/apache/airflow/commit/547e352578fac92f072b269dc257d21cdc279d97>`_  2023-05-23   ``Bring back min-airflow-version for preinstalled providers (#31469)``
 =================================================================================================  ===========  ======================================================================
 
diff --git a/docs/apache-airflow-providers-common-sql/index.rst b/docs/apache-airflow-providers-common-sql/index.rst
index 150a46f..afcc24d 100644
--- a/docs/apache-airflow-providers-common-sql/index.rst
+++ b/docs/apache-airflow-providers-common-sql/index.rst
@@ -64,7 +64,7 @@
 `Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__
 
 
-Release: 1.5.1
+Release: 1.5.2
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-databricks/commits.rst b/docs/apache-airflow-providers-databricks/commits.rst
index 91d690c..bfc0585 100644
--- a/docs/apache-airflow-providers-databricks/commits.rst
+++ b/docs/apache-airflow-providers-databricks/commits.rst
@@ -28,14 +28,35 @@
 
 
 
+4.3.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ===========================================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ===========================================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`69bc90b824 <https://github.com/apache/airflow/commit/69bc90b82403b705b3c30176cc3d64b767f2252e>`_  2023-06-19   ``Fix type annotation (#31888)``
+`66299338eb <https://github.com/apache/airflow/commit/66299338eb24aa71eb2e27ebd8b76079b39fd305>`_  2023-06-18   ``add a return when the event is yielded in a loop to stop the execution (#31985)``
+`7b096483fa <https://github.com/apache/airflow/commit/7b096483fa20df921101a09816a1d2701e9ae1dd>`_  2023-06-14   ``Making Databricks run related multi-query string in one session again (#31898) (#31899)``
+`049c6184b7 <https://github.com/apache/airflow/commit/049c6184b730a7ede41db9406654f054ddc8cc5f>`_  2023-06-08   ``Fix Databricks SQL operator serialization (#31780)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`86b5ba2802 <https://github.com/apache/airflow/commit/86b5ba28026fc6e8b7d868b83080189df9b09306>`_  2023-06-04   ``Remove return statement after yield from triggers class (#31703)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  ===========================================================================================
+
 4.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-databricks/index.rst b/docs/apache-airflow-providers-databricks/index.rst
index da868e2..a3d96ee 100644
--- a/docs/apache-airflow-providers-databricks/index.rst
+++ b/docs/apache-airflow-providers-databricks/index.rst
@@ -65,7 +65,7 @@
 `Databricks <https://databricks.com/>`__
 
 
-Release: 4.2.0
+Release: 4.3.0
 
 Provider package
 ----------------
@@ -120,7 +120,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-databricks 4.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.2.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-databricks 4.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.2.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-databricks 4.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.3.0.tar.gz.sha512>`__)
+* `The apache-airflow-providers-databricks 4.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.3.0-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/databricks/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-datadog/commits.rst b/docs/apache-airflow-providers-datadog/commits.rst
index 537ab87..bb028bc 100644
--- a/docs/apache-airflow-providers-datadog/commits.rst
+++ b/docs/apache-airflow-providers-datadog/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-datadog/index.rst b/docs/apache-airflow-providers-datadog/index.rst
index af5e127..74af7c7 100644
--- a/docs/apache-airflow-providers-datadog/index.rst
+++ b/docs/apache-airflow-providers-datadog/index.rst
@@ -57,7 +57,7 @@
 `Datadog <https://www.datadoghq.com/>`__
 
 
-Release: 3.3.0
+Release: 3.3.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-dbt-cloud/commits.rst b/docs/apache-airflow-providers-dbt-cloud/commits.rst
index c0fad95..a67dc83 100644
--- a/docs/apache-airflow-providers-dbt-cloud/commits.rst
+++ b/docs/apache-airflow-providers-dbt-cloud/commits.rst
@@ -28,14 +28,30 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  ==============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-dbt-cloud/index.rst b/docs/apache-airflow-providers-dbt-cloud/index.rst
index 6f0f767..b505237 100644
--- a/docs/apache-airflow-providers-dbt-cloud/index.rst
+++ b/docs/apache-airflow-providers-dbt-cloud/index.rst
@@ -69,7 +69,7 @@
 `dbt Cloud <https://www.getdbt.com/product/what-is-dbt/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
@@ -123,7 +123,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-dbt-cloud 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-dbt-cloud 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-dbt-cloud 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-dbt-cloud 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/dbt/cloud/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-dingding/commits.rst b/docs/apache-airflow-providers-dingding/commits.rst
index 1899aad..c30734c 100644
--- a/docs/apache-airflow-providers-dingding/commits.rst
+++ b/docs/apache-airflow-providers-dingding/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-dingding/index.rst b/docs/apache-airflow-providers-dingding/index.rst
index 20cc79b..eaaca2e 100644
--- a/docs/apache-airflow-providers-dingding/index.rst
+++ b/docs/apache-airflow-providers-dingding/index.rst
@@ -64,7 +64,7 @@
 `Dingding <https://oapi.dingtalk.com/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
@@ -116,7 +116,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-dingding 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.2.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-dingding 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.2.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-dingding 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.2.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-dingding 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.2.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/dingding/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-discord/commits.rst b/docs/apache-airflow-providers-discord/commits.rst
index f0baf3c..bbb590b 100644
--- a/docs/apache-airflow-providers-discord/commits.rst
+++ b/docs/apache-airflow-providers-discord/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.3.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`bdfebad5c9 <https://github.com/apache/airflow/commit/bdfebad5c9491234a78453856bd8c3baac98f75e>`_  2023-06-16   ``Add 'DiscordNotifier' (#31273)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-discord/index.rst b/docs/apache-airflow-providers-discord/index.rst
index b4dc669..81f0753 100644
--- a/docs/apache-airflow-providers-discord/index.rst
+++ b/docs/apache-airflow-providers-discord/index.rst
@@ -46,7 +46,7 @@
 `Discord <https://discordapp.com/>`__
 
 
-Release: 3.2.0
+Release: 3.3.0
 
 Provider package
 ----------------
@@ -98,7 +98,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-discord 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.2.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-discord 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.2.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-discord 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.3.0.tar.gz.sha512>`__)
+* `The apache-airflow-providers-discord 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.3.0-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/discord/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-docker/commits.rst b/docs/apache-airflow-providers-docker/commits.rst
index 66d619e..521f9a4 100644
--- a/docs/apache-airflow-providers-docker/commits.rst
+++ b/docs/apache-airflow-providers-docker/commits.rst
@@ -28,14 +28,30 @@
 
 
 
+3.7.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`07ea574fed <https://github.com/apache/airflow/commit/07ea574fed5d56ca9405ee9e47828841289e3a3c>`_  2023-06-07   ``Add D400 pydocstyle check (#31742)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 3.7.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d8c0e3009a <https://github.com/apache/airflow/commit/d8c0e3009a649ce057595539b96a566b7faa5584>`_  2023-05-17   ``adding docker port expose capability (#30730)``
diff --git a/docs/apache-airflow-providers-docker/index.rst b/docs/apache-airflow-providers-docker/index.rst
index 0505c6d..d306f55 100644
--- a/docs/apache-airflow-providers-docker/index.rst
+++ b/docs/apache-airflow-providers-docker/index.rst
@@ -59,7 +59,7 @@
 `Docker <https://docs.docker.com/install/>`__
 
 
-Release: 3.7.0
+Release: 3.7.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-elasticsearch/commits.rst b/docs/apache-airflow-providers-elasticsearch/commits.rst
index 7389e40..48b8cdb 100644
--- a/docs/apache-airflow-providers-elasticsearch/commits.rst
+++ b/docs/apache-airflow-providers-elasticsearch/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+4.5.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 4.5.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-elasticsearch/index.rst b/docs/apache-airflow-providers-elasticsearch/index.rst
index d739917..24451a7 100644
--- a/docs/apache-airflow-providers-elasticsearch/index.rst
+++ b/docs/apache-airflow-providers-elasticsearch/index.rst
@@ -66,7 +66,7 @@
 `Elasticsearch <https://www.elastic.co/elasticsearch>`__
 
 
-Release: 4.5.0
+Release: 4.5.1
 
 Provider package
 ----------------
@@ -121,7 +121,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-elasticsearch 4.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.5.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-elasticsearch 4.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.5.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-elasticsearch 4.5.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.5.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.5.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.5.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-elasticsearch 4.5.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.5.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.5.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.5.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/elasticsearch/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-exasol/commits.rst b/docs/apache-airflow-providers-exasol/commits.rst
index 258c220..1f393d3 100644
--- a/docs/apache-airflow-providers-exasol/commits.rst
+++ b/docs/apache-airflow-providers-exasol/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+4.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 4.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-exasol/index.rst b/docs/apache-airflow-providers-exasol/index.rst
index 07772d5..e04c31a 100644
--- a/docs/apache-airflow-providers-exasol/index.rst
+++ b/docs/apache-airflow-providers-exasol/index.rst
@@ -51,7 +51,7 @@
 `Exasol <https://docs.exasol.com/home.htm>`__
 
 
-Release: 4.2.0
+Release: 4.2.1
 
 Provider package
 ----------------
@@ -105,7 +105,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-exasol 4.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-exasol 4.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-exasol 4.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-exasol 4.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/exasol/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-facebook/commits.rst b/docs/apache-airflow-providers-facebook/commits.rst
index 575af11..2dae78d 100644
--- a/docs/apache-airflow-providers-facebook/commits.rst
+++ b/docs/apache-airflow-providers-facebook/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-facebook/index.rst b/docs/apache-airflow-providers-facebook/index.rst
index 5cc48c2..3953702 100644
--- a/docs/apache-airflow-providers-facebook/index.rst
+++ b/docs/apache-airflow-providers-facebook/index.rst
@@ -51,7 +51,7 @@
 `Facebook Ads <http://business.facebook.com/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-ftp/commits.rst b/docs/apache-airflow-providers-ftp/commits.rst
index 9c90fdf..61396d3 100644
--- a/docs/apache-airflow-providers-ftp/commits.rst
+++ b/docs/apache-airflow-providers-ftp/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.4.2
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 3.4.1
 .....
 
-Latest change: 2023-05-23
+Latest change: 2023-05-24
 
 =================================================================================================  ===========  ======================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================
+`d745cee3db <https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5>`_  2023-05-24   ``Prepare adhoc wave of Providers (#31478)``
 `547e352578 <https://github.com/apache/airflow/commit/547e352578fac92f072b269dc257d21cdc279d97>`_  2023-05-23   ``Bring back min-airflow-version for preinstalled providers (#31469)``
 =================================================================================================  ===========  ======================================================================
 
diff --git a/docs/apache-airflow-providers-ftp/index.rst b/docs/apache-airflow-providers-ftp/index.rst
index cd1c620..e027aab 100644
--- a/docs/apache-airflow-providers-ftp/index.rst
+++ b/docs/apache-airflow-providers-ftp/index.rst
@@ -71,7 +71,7 @@
 `File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__
 
 
-Release: 3.4.1
+Release: 3.4.2
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-github/commits.rst b/docs/apache-airflow-providers-github/commits.rst
index e67faef..5ce0582 100644
--- a/docs/apache-airflow-providers-github/commits.rst
+++ b/docs/apache-airflow-providers-github/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+2.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 2.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-github/index.rst b/docs/apache-airflow-providers-github/index.rst
index 5a73cbf..83c2445 100644
--- a/docs/apache-airflow-providers-github/index.rst
+++ b/docs/apache-airflow-providers-github/index.rst
@@ -71,7 +71,7 @@
 `GitHub <https://www.github.com/>`__
 
 
-Release: 2.3.0
+Release: 2.3.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-google/commits.rst b/docs/apache-airflow-providers-google/commits.rst
index afae653..22631f1 100644
--- a/docs/apache-airflow-providers-google/commits.rst
+++ b/docs/apache-airflow-providers-google/commits.rst
@@ -35,14 +35,50 @@
 
 
 
+10.2.0
+......
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ========================================================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ========================================================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`f2ebc292fe <https://github.com/apache/airflow/commit/f2ebc292fe63d2ddd0686d90c3acc0630f017a07>`_  2023-06-19   ``Provide missing project id and creds for TabularDataset (#31991)``
+`66299338eb <https://github.com/apache/airflow/commit/66299338eb24aa71eb2e27ebd8b76079b39fd305>`_  2023-06-18   ``add a return when the event is yielded in a loop to stop the execution (#31985)``
+`e6960f1ad6 <https://github.com/apache/airflow/commit/e6960f1ad63f40ff4ccde6c86b17e051b302c104>`_  2023-06-15   ``Revert "Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)" (#31935)``
+`c7072c0490 <https://github.com/apache/airflow/commit/c7072c0490cb80b448622a27eb1056576d6b92a4>`_  2023-06-15   ``Fix 'BIGQUERY_JOB_DETAILS_LINK_FMT' in 'BigQueryConsoleLink' (#31457)``
+`a81ac70b33 <https://github.com/apache/airflow/commit/a81ac70b33a589c58b59864df931d3293fada382>`_  2023-06-15   ``Add deferrable mode to PubsubPullSensor (#31284)``
+`b502e665d6 <https://github.com/apache/airflow/commit/b502e665d633262f3ce52d9c002c0a25e6e4ec9d>`_  2023-06-14   ``Add a new param to set parquet row group size in 'BaseSQLToGCSOperator' (#31831)``
+`810d46776a <https://github.com/apache/airflow/commit/810d46776ad1a52f27ec578e5be875c39c90fc45>`_  2023-06-11   ``Implement MetastoreHivePartitionSensor (#31016)``
+`233663046d <https://github.com/apache/airflow/commit/233663046d5210359ce9f4db2fe3db4f5c38f6ee>`_  2023-06-08   ``Add 'cacheControl' field to google cloud storage (#31338)``
+`ba3665f76a <https://github.com/apache/airflow/commit/ba3665f76a2205bad4553ba00537026a1346e9ae>`_  2023-06-08   ``Bigquery: fix links for already existing tables and datasets. (#31589)``
+`fbeb01cb17 <https://github.com/apache/airflow/commit/fbeb01cb17b7cb9c2e27ac7010f423a2bced78b4>`_  2023-06-07   ``Replace unicodecsv with standard csv library (#31693)``
+`d91861d3bd <https://github.com/apache/airflow/commit/d91861d3bdbde18c937978c878d137d6c758e2c6>`_  2023-06-07   ``Optimize deferrable mode (#31758)``
+`9e268e13b1 <https://github.com/apache/airflow/commit/9e268e13b147401a5665e497aee87ac107ade8d1>`_  2023-06-07   ``Replace spelling directive with spelling:word-list (#31752)``
+`36ffbee4aa <https://github.com/apache/airflow/commit/36ffbee4aae37b83b188d35aedd36add8dedf50e>`_  2023-06-05   ``Add D400 pydocstyle check - Google provider only (#31422)``
+`495ae23d45 <https://github.com/apache/airflow/commit/495ae23d45eda52f2b368d0afa4213f4e69e97cd>`_  2023-06-05   ``Optimize deferrable mode execution for 'DataprocSubmitJobOperator' (#31317)``
+`86b5ba2802 <https://github.com/apache/airflow/commit/86b5ba28026fc6e8b7d868b83080189df9b09306>`_  2023-06-04   ``Remove return statement after yield from triggers class (#31703)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`47c2023df2 <https://github.com/apache/airflow/commit/47c2023df273654bb6ea4b1ec08ab86dfb633092>`_  2023-05-31   ``Add 'preserveAsciiControlCharacters' to 'src_fmt_configs' (#31643)``
+`e3ec1ac72e <https://github.com/apache/airflow/commit/e3ec1ac72eac9aa6a9f3a99154fe0bf53a8d283a>`_  2023-05-30   ``Add support for credential configuation file auth to Google Secrets Manager secrets backend (#31597)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+`ef40148170 <https://github.com/apache/airflow/commit/ef40148170ce1110a4c9a859207d40dcc6ad1cd5>`_  2023-05-26   ``Add credential configuration file support to Google Cloud Hook (#31548)``
+`22e44ab9f2 <https://github.com/apache/airflow/commit/22e44ab9f2f3a68aa2ed236cfe514554dd479a38>`_  2023-05-26   ``FIPS environments: Mark uses of md5 as "not-used-for-security" (#31171)``
+`5ae9728db7 <https://github.com/apache/airflow/commit/5ae9728db7d34d287907ca3a919ac1a94c776799>`_  2023-05-25   ``Add deferrable mode to 'GCSUploadSessionCompleteSensor' (#31081)``
+`28f2e70916 <https://github.com/apache/airflow/commit/28f2e709165a56f0bc1097d7457149330914cea9>`_  2023-05-25   ``Optimize deferrable mode execution for 'BigQueryInsertJobOperator' (#31249)``
+`769e204d53 <https://github.com/apache/airflow/commit/769e204d533769a50f4b40b9f6cfe718960877df>`_  2023-05-24   ``Add append_job_name parameter in DataflowStartFlexTemplateOperator (#31511)``
+=================================================================================================  ===========  ========================================================================================================
+
 10.1.1
 ......
 
-Latest change: 2023-05-23
+Latest change: 2023-05-24
 
 =================================================================================================  ===========  ==============================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ==============================================================================================
+`d745cee3db <https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5>`_  2023-05-24   ``Prepare adhoc wave of Providers (#31478)``
 `c082aec089 <https://github.com/apache/airflow/commit/c082aec089405ed0399cfee548011b0520be0011>`_  2023-05-23   ``Fix accessing a GKE cluster through the private endpoint in 'GKEStartPodOperator' (#31391)``
 `0d6e626b05 <https://github.com/apache/airflow/commit/0d6e626b050a860462224ad64dc5e9831fe8624d>`_  2023-05-22   ``Fix 'BigQueryGetDataOperator''s query job bugs in deferrable mode (#31433)``
 =================================================================================================  ===========  ==============================================================================================
diff --git a/docs/apache-airflow-providers-google/index.rst b/docs/apache-airflow-providers-google/index.rst
index 3c1fd76..a77877b 100644
--- a/docs/apache-airflow-providers-google/index.rst
+++ b/docs/apache-airflow-providers-google/index.rst
@@ -76,7 +76,7 @@
   - `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite)
 
 
-Release: 10.1.1
+Release: 10.2.0
 
 Provider package
 ----------------
@@ -194,7 +194,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-google 10.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.1.1.tar.gz.sha512>`__)
-* `The apache-airflow-providers-google 10.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.1.1-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-google 10.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.2.0.tar.gz.sha512>`__)
+* `The apache-airflow-providers-google 10.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.2.0-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/google/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-grpc/commits.rst b/docs/apache-airflow-providers-grpc/commits.rst
index af8ee65..294dba8 100644
--- a/docs/apache-airflow-providers-grpc/commits.rst
+++ b/docs/apache-airflow-providers-grpc/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-grpc/index.rst b/docs/apache-airflow-providers-grpc/index.rst
index 3ecb1cb..31f6e59 100644
--- a/docs/apache-airflow-providers-grpc/index.rst
+++ b/docs/apache-airflow-providers-grpc/index.rst
@@ -57,7 +57,7 @@
 `gRPC <https://grpc.io/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-hashicorp/commits.rst b/docs/apache-airflow-providers-hashicorp/commits.rst
index ed2e6db..e6bfc9a 100644
--- a/docs/apache-airflow-providers-hashicorp/commits.rst
+++ b/docs/apache-airflow-providers-hashicorp/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+3.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`41ea700cbd <https://github.com/apache/airflow/commit/41ea700cbdce99cddd0f7b51b33b9fab51b993af>`_  2023-05-30   ``Fix hashicorp some client authentication methods (#31593)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 3.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-hashicorp/index.rst b/docs/apache-airflow-providers-hashicorp/index.rst
index bb057e7..df6c372 100644
--- a/docs/apache-airflow-providers-hashicorp/index.rst
+++ b/docs/apache-airflow-providers-hashicorp/index.rst
@@ -58,7 +58,7 @@
 Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__
 
 
-Release: 3.4.0
+Release: 3.4.1
 
 Provider package
 ----------------
@@ -110,7 +110,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-hashicorp 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.4.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-hashicorp 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.4.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-hashicorp 3.4.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.4.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.4.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.4.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-hashicorp 3.4.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.4.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.4.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.4.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/hashicorp/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-http/commits.rst b/docs/apache-airflow-providers-http/commits.rst
index 0c0ea38..4618cdf 100644
--- a/docs/apache-airflow-providers-http/commits.rst
+++ b/docs/apache-airflow-providers-http/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+4.4.2
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 4.4.1
 .....
 
-Latest change: 2023-05-23
+Latest change: 2023-05-24
 
 =================================================================================================  ===========  ======================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================
+`d745cee3db <https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5>`_  2023-05-24   ``Prepare adhoc wave of Providers (#31478)``
 `547e352578 <https://github.com/apache/airflow/commit/547e352578fac92f072b269dc257d21cdc279d97>`_  2023-05-23   ``Bring back min-airflow-version for preinstalled providers (#31469)``
 =================================================================================================  ===========  ======================================================================
 
diff --git a/docs/apache-airflow-providers-http/index.rst b/docs/apache-airflow-providers-http/index.rst
index 9cc6bdb..48c5d42 100644
--- a/docs/apache-airflow-providers-http/index.rst
+++ b/docs/apache-airflow-providers-http/index.rst
@@ -65,7 +65,7 @@
 `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__
 
 
-Release: 4.4.1
+Release: 4.4.2
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-imap/commits.rst b/docs/apache-airflow-providers-imap/commits.rst
index 9e8b4bc..e61ba8b 100644
--- a/docs/apache-airflow-providers-imap/commits.rst
+++ b/docs/apache-airflow-providers-imap/commits.rst
@@ -28,14 +28,26 @@
 
 
 
+3.2.2
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+=================================================================================================  ===========  =============================================================
+
 3.2.1
 .....
 
-Latest change: 2023-05-23
+Latest change: 2023-05-24
 
 =================================================================================================  ===========  ======================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================
+`d745cee3db <https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5>`_  2023-05-24   ``Prepare adhoc wave of Providers (#31478)``
 `547e352578 <https://github.com/apache/airflow/commit/547e352578fac92f072b269dc257d21cdc279d97>`_  2023-05-23   ``Bring back min-airflow-version for preinstalled providers (#31469)``
 =================================================================================================  ===========  ======================================================================
 
diff --git a/docs/apache-airflow-providers-imap/index.rst b/docs/apache-airflow-providers-imap/index.rst
index 121f39c..dba38f5 100644
--- a/docs/apache-airflow-providers-imap/index.rst
+++ b/docs/apache-airflow-providers-imap/index.rst
@@ -52,7 +52,7 @@
 `Internet Message Access Protocol (IMAP) <https://tools.ietf.org/html/rfc3501>`__
 
 
-Release: 3.2.1
+Release: 3.2.2
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-influxdb/commits.rst b/docs/apache-airflow-providers-influxdb/commits.rst
index c4e070b..1f164cc 100644
--- a/docs/apache-airflow-providers-influxdb/commits.rst
+++ b/docs/apache-airflow-providers-influxdb/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+2.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ===============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ===============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9e268e13b1 <https://github.com/apache/airflow/commit/9e268e13b147401a5665e497aee87ac107ade8d1>`_  2023-06-07   ``Replace spelling directive with spelling:word-list (#31752)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  ===============================================================
+
 2.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-influxdb/index.rst b/docs/apache-airflow-providers-influxdb/index.rst
index 61d7cd1..d186e91 100644
--- a/docs/apache-airflow-providers-influxdb/index.rst
+++ b/docs/apache-airflow-providers-influxdb/index.rst
@@ -71,7 +71,7 @@
 `InfluxDB <https://www.influxdata.com/>`__
 
 
-Release: 2.2.0
+Release: 2.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-jdbc/commits.rst b/docs/apache-airflow-providers-jdbc/commits.rst
index d60fd00..53bf13f 100644
--- a/docs/apache-airflow-providers-jdbc/commits.rst
+++ b/docs/apache-airflow-providers-jdbc/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+4.0.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==================================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==================================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`0edbe91368 <https://github.com/apache/airflow/commit/0edbe913685e6a21905bc4bb52c6a084bdcdf953>`_  2023-06-12   ``Restrict direct usage of driver params via extras for JDBC connection (#31849)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  ==================================================================================
+
 3.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-jdbc/index.rst b/docs/apache-airflow-providers-jdbc/index.rst
index c59a125..0d6882e 100644
--- a/docs/apache-airflow-providers-jdbc/index.rst
+++ b/docs/apache-airflow-providers-jdbc/index.rst
@@ -65,7 +65,7 @@
 `Java Database Connectivity (JDBC) <https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/>`__
 
 
-Release: 3.4.0
+Release: 4.0.0
 
 Provider package
 ----------------
@@ -118,7 +118,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-jdbc 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.4.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-jdbc 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.4.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-jdbc 4.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-4.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-4.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-4.0.0.tar.gz.sha512>`__)
+* `The apache-airflow-providers-jdbc 4.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-4.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-4.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-4.0.0-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/jdbc/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-jenkins/commits.rst b/docs/apache-airflow-providers-jenkins/commits.rst
index 754b71d..6e4f13a 100644
--- a/docs/apache-airflow-providers-jenkins/commits.rst
+++ b/docs/apache-airflow-providers-jenkins/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-jenkins/index.rst b/docs/apache-airflow-providers-jenkins/index.rst
index 68bbe05..cce710a 100644
--- a/docs/apache-airflow-providers-jenkins/index.rst
+++ b/docs/apache-airflow-providers-jenkins/index.rst
@@ -63,7 +63,7 @@
 `Jenkins <https://jenkins.io/>`__
 
 
-Release: 3.3.0
+Release: 3.3.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-microsoft-azure/commits.rst b/docs/apache-airflow-providers-microsoft-azure/commits.rst
index 7b5f57e..a812135 100644
--- a/docs/apache-airflow-providers-microsoft-azure/commits.rst
+++ b/docs/apache-airflow-providers-microsoft-azure/commits.rst
@@ -28,14 +28,34 @@
 
 
 
+6.1.2
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ======================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ======================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`4266a545b0 <https://github.com/apache/airflow/commit/4266a545b0cb523d162cb65ad40415593122cbc4>`_  2023-06-20   ``Microsoft provider docstring improvements (#31708)``
+`94128303e1 <https://github.com/apache/airflow/commit/94128303e17412315aacd529d75a2ef549cce1f5>`_  2023-06-08   ``Removed unused variables in AzureBlobStorageToGCSOperator (#31765)``
+`fbeb01cb17 <https://github.com/apache/airflow/commit/fbeb01cb17b7cb9c2e27ac7010f423a2bced78b4>`_  2023-06-07   ``Replace unicodecsv with standard csv library (#31693)``
+`9e268e13b1 <https://github.com/apache/airflow/commit/9e268e13b147401a5665e497aee87ac107ade8d1>`_  2023-06-07   ``Replace spelling directive with spelling:word-list (#31752)``
+`3a0b8bded9 <https://github.com/apache/airflow/commit/3a0b8bded98a1f8256765e5b829c2ba4f1b0369a>`_  2023-06-05   ``Add D400 pydocstyle check - Microsoft provider only (#31425)``
+`dc5bf3fd02 <https://github.com/apache/airflow/commit/dc5bf3fd02c589578209cb0dd5b7d005b1516ae9>`_  2023-06-02   ``Add discoverability for triggers in provider.yaml (#31576)``
+`ce7766e0a5 <https://github.com/apache/airflow/commit/ce7766e0a52e15b2b1ef7e7f9c613ea686fbfca6>`_  2023-05-31   ``Add docstring and signature for _read_remote_logs (#31623)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  ======================================================================
+
 6.1.1
 .....
 
-Latest change: 2023-05-23
+Latest change: 2023-05-24
 
 =================================================================================================  ===========  ==============================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ==============================================================
+`d745cee3db <https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5>`_  2023-05-24   ``Prepare adhoc wave of Providers (#31478)``
 `45b6cfa138 <https://github.com/apache/airflow/commit/45b6cfa138ae23e39802b493075bd5b7531ccdae>`_  2023-05-23   ``Fix deferrable mode execution in WasbPrefixSensor (#31411)``
 `26b8997fb1 <https://github.com/apache/airflow/commit/26b8997fb185fd308c243a9418ade317e533e26b>`_  2023-05-23   ``Optimize deferred mode execution for wasb sensors (#31009)``
 =================================================================================================  ===========  ==============================================================
diff --git a/docs/apache-airflow-providers-microsoft-azure/index.rst b/docs/apache-airflow-providers-microsoft-azure/index.rst
index 4d5fb16..615e7ca 100644
--- a/docs/apache-airflow-providers-microsoft-azure/index.rst
+++ b/docs/apache-airflow-providers-microsoft-azure/index.rst
@@ -67,7 +67,7 @@
 `Microsoft Azure <https://azure.microsoft.com/>`__
 
 
-Release: 6.1.1
+Release: 6.1.2
 
 Provider package
 ----------------
@@ -137,7 +137,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-microsoft-azure 6.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.1.1.tar.gz.sha512>`__)
-* `The apache-airflow-providers-microsoft-azure 6.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.1.1-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-microsoft-azure 6.1.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.1.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.1.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.1.2.tar.gz.sha512>`__)
+* `The apache-airflow-providers-microsoft-azure 6.1.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.1.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.1.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.1.2-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/microsoft/azure/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-microsoft-mssql/commits.rst b/docs/apache-airflow-providers-microsoft-mssql/commits.rst
index 2f4ad63..d4521e6 100644
--- a/docs/apache-airflow-providers-microsoft-mssql/commits.rst
+++ b/docs/apache-airflow-providers-microsoft-mssql/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ===========================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ===========================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`b683698684 <https://github.com/apache/airflow/commit/b6836986846058e9e5fa271fb7b22ae721020787>`_  2023-06-18   ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)``
+`3a0b8bded9 <https://github.com/apache/airflow/commit/3a0b8bded98a1f8256765e5b829c2ba4f1b0369a>`_  2023-06-05   ``Add D400 pydocstyle check - Microsoft provider only (#31425)``
+=================================================================================================  ===========  ===========================================================================
+
 3.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-microsoft-mssql/index.rst b/docs/apache-airflow-providers-microsoft-mssql/index.rst
index 0fb67b3..a74410d 100644
--- a/docs/apache-airflow-providers-microsoft-mssql/index.rst
+++ b/docs/apache-airflow-providers-microsoft-mssql/index.rst
@@ -65,7 +65,7 @@
 `Microsoft SQL Server (MSSQL) <https://www.microsoft.com/en-us/sql-server/sql-server-downloads>`__
 
 
-Release: 3.4.0
+Release: 3.4.1
 
 Provider package
 ----------------
@@ -118,7 +118,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-microsoft-mssql 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.4.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-microsoft-mssql 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.4.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-microsoft-mssql 3.4.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.4.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.4.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.4.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-microsoft-mssql 3.4.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.4.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.4.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.4.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/microsoft/mssql/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-microsoft-psrp/commits.rst b/docs/apache-airflow-providers-microsoft-psrp/commits.rst
index 996a94a..6e89e58 100644
--- a/docs/apache-airflow-providers-microsoft-psrp/commits.rst
+++ b/docs/apache-airflow-providers-microsoft-psrp/commits.rst
@@ -30,14 +30,26 @@
 
 
 
+2.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+=================================================================================================  ===========  =============================================================
+
 2.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-microsoft-psrp/index.rst b/docs/apache-airflow-providers-microsoft-psrp/index.rst
index 42a5a92..3dc668d 100644
--- a/docs/apache-airflow-providers-microsoft-psrp/index.rst
+++ b/docs/apache-airflow-providers-microsoft-psrp/index.rst
@@ -59,7 +59,7 @@
 <https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-psrp/>`__.
 
 
-Release: 2.3.0
+Release: 2.3.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-microsoft-winrm/commits.rst b/docs/apache-airflow-providers-microsoft-winrm/commits.rst
index cac9bbe..772ac90 100644
--- a/docs/apache-airflow-providers-microsoft-winrm/commits.rst
+++ b/docs/apache-airflow-providers-microsoft-winrm/commits.rst
@@ -28,14 +28,26 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-microsoft-winrm/index.rst b/docs/apache-airflow-providers-microsoft-winrm/index.rst
index 3febcb4..fc888a1 100644
--- a/docs/apache-airflow-providers-microsoft-winrm/index.rst
+++ b/docs/apache-airflow-providers-microsoft-winrm/index.rst
@@ -64,7 +64,7 @@
 `Windows Remote Management (WinRM) <https://docs.microsoft.com/en-us/windows/win32/winrm/portal>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-mongo/commits.rst b/docs/apache-airflow-providers-mongo/commits.rst
index 82cba8e..2076462 100644
--- a/docs/apache-airflow-providers-mongo/commits.rst
+++ b/docs/apache-airflow-providers-mongo/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-mongo/index.rst b/docs/apache-airflow-providers-mongo/index.rst
index b3eb1d1..1e1c3ab 100644
--- a/docs/apache-airflow-providers-mongo/index.rst
+++ b/docs/apache-airflow-providers-mongo/index.rst
@@ -52,7 +52,7 @@
 `MongoDB <https://www.mongodb.com/what-is-mongodb>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-mysql/commits.rst b/docs/apache-airflow-providers-mysql/commits.rst
index 436629a..4787707 100644
--- a/docs/apache-airflow-providers-mysql/commits.rst
+++ b/docs/apache-airflow-providers-mysql/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+5.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`fbeb01cb17 <https://github.com/apache/airflow/commit/fbeb01cb17b7cb9c2e27ac7010f423a2bced78b4>`_  2023-06-07   ``Replace unicodecsv with standard csv library (#31693)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 5.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-mysql/index.rst b/docs/apache-airflow-providers-mysql/index.rst
index c6ec411..3f39b5b 100644
--- a/docs/apache-airflow-providers-mysql/index.rst
+++ b/docs/apache-airflow-providers-mysql/index.rst
@@ -65,7 +65,7 @@
 `MySQL <https://www.mysql.com/products/>`__
 
 
-Release: 5.1.0
+Release: 5.1.1
 
 Provider package
 ----------------
@@ -122,7 +122,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-mysql 5.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-mysql 5.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-mysql 5.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-mysql 5.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/mysql/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-neo4j/commits.rst b/docs/apache-airflow-providers-neo4j/commits.rst
index 316f9b0..f1bc28d 100644
--- a/docs/apache-airflow-providers-neo4j/commits.rst
+++ b/docs/apache-airflow-providers-neo4j/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-neo4j/index.rst b/docs/apache-airflow-providers-neo4j/index.rst
index d5a0c7e..9a2924a 100644
--- a/docs/apache-airflow-providers-neo4j/index.rst
+++ b/docs/apache-airflow-providers-neo4j/index.rst
@@ -65,7 +65,7 @@
 `Neo4j <https://neo4j.com/>`__
 
 
-Release: 3.3.0
+Release: 3.3.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-odbc/commits.rst b/docs/apache-airflow-providers-odbc/commits.rst
index c72295b..4141d7e 100644
--- a/docs/apache-airflow-providers-odbc/commits.rst
+++ b/docs/apache-airflow-providers-odbc/commits.rst
@@ -28,14 +28,31 @@
 
 
 
+4.0.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  ==============================================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  ==============================================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`b683698684 <https://github.com/apache/airflow/commit/b6836986846058e9e5fa271fb7b22ae721020787>`_  2023-06-18   ``Check if sqlalchemy_scheme extra contains forbidden characters (#31984)``
+`438ba41e14 <https://github.com/apache/airflow/commit/438ba41e142593f2b0916893eccbd08fbe4d277b>`_  2023-06-07   ``Control permissibility of driver config in extra from airflow.cfg (#31754)``
+`2844dad1c7 <https://github.com/apache/airflow/commit/2844dad1c762f5c7dd1271866d3661bf66657300>`_  2023-06-06   ``Disable setting ODBC driver via extra by default (#31713)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  ==============================================================================
+
 3.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-odbc/index.rst b/docs/apache-airflow-providers-odbc/index.rst
index 4f852b0..1c75129 100644
--- a/docs/apache-airflow-providers-odbc/index.rst
+++ b/docs/apache-airflow-providers-odbc/index.rst
@@ -53,7 +53,7 @@
 `ODBC <https://github.com/mkleehammer/pyodbc/wiki>`__
 
 
-Release: 3.3.0
+Release: 4.0.0
 
 Provider package
 ----------------
@@ -106,7 +106,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-odbc 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.3.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-odbc 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.3.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-odbc 4.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-4.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-4.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-4.0.0.tar.gz.sha512>`__)
+* `The apache-airflow-providers-odbc 4.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-4.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-4.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-4.0.0-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/odbc/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-openfaas/commits.rst b/docs/apache-airflow-providers-openfaas/commits.rst
index 2bf10d8..8bc0f6c 100644
--- a/docs/apache-airflow-providers-openfaas/commits.rst
+++ b/docs/apache-airflow-providers-openfaas/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-openfaas/index.rst b/docs/apache-airflow-providers-openfaas/index.rst
index bee83f6..393f9fe 100644
--- a/docs/apache-airflow-providers-openfaas/index.rst
+++ b/docs/apache-airflow-providers-openfaas/index.rst
@@ -51,7 +51,7 @@
 `OpenFaaS <https://www.openfaas.com/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-opsgenie/commits.rst b/docs/apache-airflow-providers-opsgenie/commits.rst
index 312bb6b..7b20b92 100644
--- a/docs/apache-airflow-providers-opsgenie/commits.rst
+++ b/docs/apache-airflow-providers-opsgenie/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+5.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 5.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-opsgenie/index.rst b/docs/apache-airflow-providers-opsgenie/index.rst
index 8435d3e..f5249c6 100644
--- a/docs/apache-airflow-providers-opsgenie/index.rst
+++ b/docs/apache-airflow-providers-opsgenie/index.rst
@@ -64,7 +64,7 @@
 `Opsgenie <https://www.opsgenie.com/>`__
 
 
-Release: 5.1.0
+Release: 5.1.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-oracle/commits.rst b/docs/apache-airflow-providers-oracle/commits.rst
index 1db0f97..7272817 100644
--- a/docs/apache-airflow-providers-oracle/commits.rst
+++ b/docs/apache-airflow-providers-oracle/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+3.7.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.7.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-oracle/index.rst b/docs/apache-airflow-providers-oracle/index.rst
index 1af53f3..0ff4877 100644
--- a/docs/apache-airflow-providers-oracle/index.rst
+++ b/docs/apache-airflow-providers-oracle/index.rst
@@ -59,7 +59,7 @@
 `Oracle <https://www.oracle.com/en/database/>`__
 
 
-Release: 3.7.0
+Release: 3.7.1
 
 Provider package
 ----------------
@@ -112,7 +112,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-oracle 3.7.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-oracle 3.7.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-oracle 3.7.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-oracle 3.7.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/oracle/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-pagerduty/commits.rst b/docs/apache-airflow-providers-pagerduty/commits.rst
index ac71472..ab810be 100644
--- a/docs/apache-airflow-providers-pagerduty/commits.rst
+++ b/docs/apache-airflow-providers-pagerduty/commits.rst
@@ -28,6 +28,20 @@
 
 
 
+3.3.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`8d78f903ac <https://github.com/apache/airflow/commit/8d78f903ac9d25870c61ffe762da12796475dcaa>`_  2023-06-08   ``Add notifier for pagerduty (#31207)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`30faf4a87a <https://github.com/apache/airflow/commit/30faf4a87a2e1b32de36f130aea5877d5e1003c6>`_  2023-05-23   ``Add send_event method in PagerdutyEventsHook (#31290)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
@@ -36,6 +50,7 @@
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `7bf952b478 <https://github.com/apache/airflow/commit/7bf952b4781925c06d3941530d58b9ba100969ac>`_  2023-05-19   ``Add Change event V2 API support for pagerduty (#31222)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
diff --git a/docs/apache-airflow-providers-pagerduty/index.rst b/docs/apache-airflow-providers-pagerduty/index.rst
index 4b5c076..5d32230 100644
--- a/docs/apache-airflow-providers-pagerduty/index.rst
+++ b/docs/apache-airflow-providers-pagerduty/index.rst
@@ -57,7 +57,7 @@
 `Pagerduty <https://www.pagerduty.com/>`__
 
 
-Release: 3.2.0
+Release: 3.3.0
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-papermill/commits.rst b/docs/apache-airflow-providers-papermill/commits.rst
index 0773382..3a3a5e1 100644
--- a/docs/apache-airflow-providers-papermill/commits.rst
+++ b/docs/apache-airflow-providers-papermill/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-papermill/index.rst b/docs/apache-airflow-providers-papermill/index.rst
index d64db3a..6e4d137 100644
--- a/docs/apache-airflow-providers-papermill/index.rst
+++ b/docs/apache-airflow-providers-papermill/index.rst
@@ -64,7 +64,7 @@
 `Papermill <https://github.com/nteract/papermill>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-plexus/commits.rst b/docs/apache-airflow-providers-plexus/commits.rst
index f33d819..e8b995c 100644
--- a/docs/apache-airflow-providers-plexus/commits.rst
+++ b/docs/apache-airflow-providers-plexus/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-plexus/index.rst b/docs/apache-airflow-providers-plexus/index.rst
index 2f56097..55439df 100644
--- a/docs/apache-airflow-providers-plexus/index.rst
+++ b/docs/apache-airflow-providers-plexus/index.rst
@@ -58,7 +58,7 @@
 `Plexus <https://plexus.corescientific.com/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-postgres/commits.rst b/docs/apache-airflow-providers-postgres/commits.rst
index 2b81228..e5852c2 100644
--- a/docs/apache-airflow-providers-postgres/commits.rst
+++ b/docs/apache-airflow-providers-postgres/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+5.5.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 5.5.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-postgres/index.rst b/docs/apache-airflow-providers-postgres/index.rst
index f0f0a3d..224a841 100644
--- a/docs/apache-airflow-providers-postgres/index.rst
+++ b/docs/apache-airflow-providers-postgres/index.rst
@@ -65,7 +65,7 @@
 `PostgreSQL <https://www.postgresql.org/>`__
 
 
-Release: 5.5.0
+Release: 5.5.1
 
 Provider package
 ----------------
@@ -119,7 +119,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-postgres 5.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.5.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-postgres 5.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.5.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-postgres 5.5.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.5.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.5.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.5.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-postgres 5.5.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.5.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.5.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.5.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/postgres/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-presto/commits.rst b/docs/apache-airflow-providers-presto/commits.rst
index 07cabc0..74c6e12 100644
--- a/docs/apache-airflow-providers-presto/commits.rst
+++ b/docs/apache-airflow-providers-presto/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+5.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 5.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-presto/index.rst b/docs/apache-airflow-providers-presto/index.rst
index ed2f857..8c639fa 100644
--- a/docs/apache-airflow-providers-presto/index.rst
+++ b/docs/apache-airflow-providers-presto/index.rst
@@ -64,7 +64,7 @@
 `Presto <https://prestodb.github.io/>`__
 
 
-Release: 5.1.0
+Release: 5.1.1
 
 Provider package
 ----------------
@@ -119,7 +119,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-presto 5.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-presto 5.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-presto 5.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-presto 5.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/presto/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-qubole/commits.rst b/docs/apache-airflow-providers-qubole/commits.rst
index 862de11..948cfce 100644
--- a/docs/apache-airflow-providers-qubole/commits.rst
+++ b/docs/apache-airflow-providers-qubole/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-qubole/index.rst b/docs/apache-airflow-providers-qubole/index.rst
index 0b266d6..60066a7 100644
--- a/docs/apache-airflow-providers-qubole/index.rst
+++ b/docs/apache-airflow-providers-qubole/index.rst
@@ -64,7 +64,7 @@
 `Qubole <https://www.qubole.com/>`__
 
 
-Release: 3.4.0
+Release: 3.4.1
 
 Provider package
 ----------------
@@ -117,7 +117,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-qubole 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.4.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-qubole 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.4.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-qubole 3.4.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.4.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.4.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.4.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-qubole 3.4.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.4.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.4.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.4.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/qubole/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-redis/commits.rst b/docs/apache-airflow-providers-redis/commits.rst
index f55d1d9..b6fb74d 100644
--- a/docs/apache-airflow-providers-redis/commits.rst
+++ b/docs/apache-airflow-providers-redis/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-redis/index.rst b/docs/apache-airflow-providers-redis/index.rst
index 961d54f..7cf2dec 100644
--- a/docs/apache-airflow-providers-redis/index.rst
+++ b/docs/apache-airflow-providers-redis/index.rst
@@ -58,7 +58,7 @@
 `Redis <https://redis.io/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-salesforce/commits.rst b/docs/apache-airflow-providers-salesforce/commits.rst
index 07232a9..0a4ac9b 100644
--- a/docs/apache-airflow-providers-salesforce/commits.rst
+++ b/docs/apache-airflow-providers-salesforce/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+5.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 5.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-salesforce/index.rst b/docs/apache-airflow-providers-salesforce/index.rst
index 18890e3..b99597d 100644
--- a/docs/apache-airflow-providers-salesforce/index.rst
+++ b/docs/apache-airflow-providers-salesforce/index.rst
@@ -65,7 +65,7 @@
 `Salesforce <https://www.salesforce.com/>`__
 
 
-Release: 5.4.0
+Release: 5.4.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-samba/commits.rst b/docs/apache-airflow-providers-samba/commits.rst
index 8c2be81..db2d84a 100644
--- a/docs/apache-airflow-providers-samba/commits.rst
+++ b/docs/apache-airflow-providers-samba/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+4.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 4.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-samba/index.rst b/docs/apache-airflow-providers-samba/index.rst
index 4a1a539..c7e4935 100644
--- a/docs/apache-airflow-providers-samba/index.rst
+++ b/docs/apache-airflow-providers-samba/index.rst
@@ -51,7 +51,7 @@
 `Samba <https://www.samba.org/>`__
 
 
-Release: 4.2.0
+Release: 4.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-segment/commits.rst b/docs/apache-airflow-providers-segment/commits.rst
index 0fb1fe9..4e2332c 100644
--- a/docs/apache-airflow-providers-segment/commits.rst
+++ b/docs/apache-airflow-providers-segment/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-segment/index.rst b/docs/apache-airflow-providers-segment/index.rst
index 5f2482a..0718601 100644
--- a/docs/apache-airflow-providers-segment/index.rst
+++ b/docs/apache-airflow-providers-segment/index.rst
@@ -51,7 +51,7 @@
 `Segment <https://segment.com/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-sendgrid/commits.rst b/docs/apache-airflow-providers-sendgrid/commits.rst
index 66bae91..3291738 100644
--- a/docs/apache-airflow-providers-sendgrid/commits.rst
+++ b/docs/apache-airflow-providers-sendgrid/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-sendgrid/index.rst b/docs/apache-airflow-providers-sendgrid/index.rst
index 56bb094..5e7b072 100644
--- a/docs/apache-airflow-providers-sendgrid/index.rst
+++ b/docs/apache-airflow-providers-sendgrid/index.rst
@@ -51,7 +51,7 @@
 `Sendgrid <https://sendgrid.com/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-sftp/commits.rst b/docs/apache-airflow-providers-sftp/commits.rst
index c08dc94..af7828a 100644
--- a/docs/apache-airflow-providers-sftp/commits.rst
+++ b/docs/apache-airflow-providers-sftp/commits.rst
@@ -28,14 +28,28 @@
 
 
 
+4.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 4.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-sftp/index.rst b/docs/apache-airflow-providers-sftp/index.rst
index 1781ce9..b0bb0ea 100644
--- a/docs/apache-airflow-providers-sftp/index.rst
+++ b/docs/apache-airflow-providers-sftp/index.rst
@@ -52,7 +52,7 @@
 `SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__
 
 
-Release: 4.3.0
+Release: 4.3.1
 
 Provider package
 ----------------
@@ -104,7 +104,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-sftp 4.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.3.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-sftp 4.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.3.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-sftp 4.3.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.3.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.3.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.3.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-sftp 4.3.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.3.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.3.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.3.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/sftp/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-singularity/commits.rst b/docs/apache-airflow-providers-singularity/commits.rst
index 1463d25..6c992e5 100644
--- a/docs/apache-airflow-providers-singularity/commits.rst
+++ b/docs/apache-airflow-providers-singularity/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-singularity/index.rst b/docs/apache-airflow-providers-singularity/index.rst
index 0ca1dd4..80c6256 100644
--- a/docs/apache-airflow-providers-singularity/index.rst
+++ b/docs/apache-airflow-providers-singularity/index.rst
@@ -58,7 +58,7 @@
 `Singularity <https://sylabs.io/guides/latest/user-guide/>`__
 
 
-Release: 3.2.0
+Release: 3.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-slack/commits.rst b/docs/apache-airflow-providers-slack/commits.rst
index fd1f06c..413e792 100644
--- a/docs/apache-airflow-providers-slack/commits.rst
+++ b/docs/apache-airflow-providers-slack/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+7.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 7.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-slack/index.rst b/docs/apache-airflow-providers-slack/index.rst
index e5086bc..5054fac 100644
--- a/docs/apache-airflow-providers-slack/index.rst
+++ b/docs/apache-airflow-providers-slack/index.rst
@@ -65,7 +65,7 @@
 `Slack <https://slack.com/>`__
 
 
-Release: 7.3.0
+Release: 7.3.1
 
 Provider package
 ----------------
@@ -118,7 +118,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-slack 7.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-slack 7.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-slack 7.3.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-slack 7.3.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/slack/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-smtp/commits.rst b/docs/apache-airflow-providers-smtp/commits.rst
index fa228ca..5df116a 100644
--- a/docs/apache-airflow-providers-smtp/commits.rst
+++ b/docs/apache-airflow-providers-smtp/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+1.2.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`b7796895cb <https://github.com/apache/airflow/commit/b7796895cb41d8e5e79e6d8eee150b11d8c302a7>`_  2023-06-07   ``Fix ruff static check (#31762)``
+`cce4ca5505 <https://github.com/apache/airflow/commit/cce4ca55058b605d19841bb9d43043f0d45665cb>`_  2023-06-07   ``Add notifier for Smtp (#31359)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 1.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-smtp/index.rst b/docs/apache-airflow-providers-smtp/index.rst
index 7c0bb9a..d6d27b9 100644
--- a/docs/apache-airflow-providers-smtp/index.rst
+++ b/docs/apache-airflow-providers-smtp/index.rst
@@ -47,20 +47,13 @@
     Detailed list of commits <commits>
 
 
-.. toctree::
-    :maxdepth: 1
-    :caption: Guides
-
-    SMTP Notifications <notifications/smtp_notifier_howto_guide>
-
-
 Package apache-airflow-providers-smtp
 ------------------------------------------------------
 
 `Simple Mail Transfer Protocol (SMTP) <https://tools.ietf.org/html/rfc5321>`__
 
 
-Release: 1.1.0
+Release: 1.2.0
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-snowflake/commits.rst b/docs/apache-airflow-providers-snowflake/commits.rst
index 9885f10..63908e1 100644
--- a/docs/apache-airflow-providers-snowflake/commits.rst
+++ b/docs/apache-airflow-providers-snowflake/commits.rst
@@ -28,14 +28,32 @@
 
 
 
+4.2.0
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`35845f9fb6 <https://github.com/apache/airflow/commit/35845f9fb62a261c956f32d64516b637b18369fa>`_  2023-06-11   ``SnowflakeSqlApiOperator - Change the base class (#31751)``
+`07ea574fed <https://github.com/apache/airflow/commit/07ea574fed5d56ca9405ee9e47828841289e3a3c>`_  2023-06-07   ``Add D400 pydocstyle check (#31742)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`c55f9ea05c <https://github.com/apache/airflow/commit/c55f9ea05c2a79fef9e56c9406acd8543253a830>`_  2023-05-29   ``Moved sql_api_generate_jwt out of hooks folder (#31586)``
+`739e6b5d77 <https://github.com/apache/airflow/commit/739e6b5d775412f987a3ff5fb71c51fbb7051a89>`_  2023-05-24   ``Add SnowflakeSqlApiOperator operator (#30698)``
+=================================================================================================  ===========  =============================================================
+
 4.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-snowflake/index.rst b/docs/apache-airflow-providers-snowflake/index.rst
index 3f952b4..1a5025d 100644
--- a/docs/apache-airflow-providers-snowflake/index.rst
+++ b/docs/apache-airflow-providers-snowflake/index.rst
@@ -65,7 +65,7 @@
 `Snowflake <https://www.snowflake.com/>`__
 
 
-Release: 4.1.0
+Release: 4.2.0
 
 Provider package
 ----------------
@@ -120,7 +120,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-snowflake 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-snowflake 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-snowflake 4.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.2.0.tar.gz.sha512>`__)
+* `The apache-airflow-providers-snowflake 4.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.2.0-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/snowflake/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-sqlite/commits.rst b/docs/apache-airflow-providers-sqlite/commits.rst
index cb0abc0..2c13a26 100644
--- a/docs/apache-airflow-providers-sqlite/commits.rst
+++ b/docs/apache-airflow-providers-sqlite/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.4.2
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.4.1
 .....
 
-Latest change: 2023-05-23
+Latest change: 2023-05-24
 
 =================================================================================================  ===========  ======================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================
+`d745cee3db <https://github.com/apache/airflow/commit/d745cee3dbde6b437a817aa64e385a1a948389d5>`_  2023-05-24   ``Prepare adhoc wave of Providers (#31478)``
 `547e352578 <https://github.com/apache/airflow/commit/547e352578fac92f072b269dc257d21cdc279d97>`_  2023-05-23   ``Bring back min-airflow-version for preinstalled providers (#31469)``
 =================================================================================================  ===========  ======================================================================
 
diff --git a/docs/apache-airflow-providers-sqlite/index.rst b/docs/apache-airflow-providers-sqlite/index.rst
index 29422b7..c1f54d4 100644
--- a/docs/apache-airflow-providers-sqlite/index.rst
+++ b/docs/apache-airflow-providers-sqlite/index.rst
@@ -65,7 +65,7 @@
 `SQLite <https://www.sqlite.org/>`__
 
 
-Release: 3.4.1
+Release: 3.4.2
 
 Provider package
 ----------------
@@ -117,7 +117,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-sqlite 3.4.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.4.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.4.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.4.1.tar.gz.sha512>`__)
-* `The apache-airflow-providers-sqlite 3.4.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.4.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.4.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.4.1-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-sqlite 3.4.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.4.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.4.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.4.2.tar.gz.sha512>`__)
+* `The apache-airflow-providers-sqlite 3.4.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.4.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.4.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.4.2-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/sqlite/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-ssh/commits.rst b/docs/apache-airflow-providers-ssh/commits.rst
index 57892d2..e07fe39 100644
--- a/docs/apache-airflow-providers-ssh/commits.rst
+++ b/docs/apache-airflow-providers-ssh/commits.rst
@@ -28,14 +28,29 @@
 
 
 
+3.7.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_  2023-06-05   ``Improve docstrings in providers (#31681)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+`9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_  2023-05-29   ``Remove Python 3.7 support (#30963)``
+=================================================================================================  ===========  =============================================================
+
 3.7.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-ssh/index.rst b/docs/apache-airflow-providers-ssh/index.rst
index 0c0ccd3..81e7afd 100644
--- a/docs/apache-airflow-providers-ssh/index.rst
+++ b/docs/apache-airflow-providers-ssh/index.rst
@@ -57,7 +57,7 @@
 `Secure Shell (SSH) <https://tools.ietf.org/html/rfc4251>`__
 
 
-Release: 3.7.0
+Release: 3.7.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-tableau/commits.rst b/docs/apache-airflow-providers-tableau/commits.rst
index 2269726..17da22a 100644
--- a/docs/apache-airflow-providers-tableau/commits.rst
+++ b/docs/apache-airflow-providers-tableau/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+4.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 4.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-tableau/index.rst b/docs/apache-airflow-providers-tableau/index.rst
index 9215aea..e8ed407 100644
--- a/docs/apache-airflow-providers-tableau/index.rst
+++ b/docs/apache-airflow-providers-tableau/index.rst
@@ -60,7 +60,7 @@
 `Tableau <https://www.tableau.com/>`__
 
 
-Release: 4.2.0
+Release: 4.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-tabular/commits.rst b/docs/apache-airflow-providers-tabular/commits.rst
index ad24abf..e10f075 100644
--- a/docs/apache-airflow-providers-tabular/commits.rst
+++ b/docs/apache-airflow-providers-tabular/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+1.2.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 1.2.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-tabular/index.rst b/docs/apache-airflow-providers-tabular/index.rst
index 64b00c8..169237b 100644
--- a/docs/apache-airflow-providers-tabular/index.rst
+++ b/docs/apache-airflow-providers-tabular/index.rst
@@ -60,7 +60,7 @@
 `Tabular <https://tabular.io/>`__
 
 
-Release: 1.2.0
+Release: 1.2.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-telegram/commits.rst b/docs/apache-airflow-providers-telegram/commits.rst
index 6436fe5..56a3a51 100644
--- a/docs/apache-airflow-providers-telegram/commits.rst
+++ b/docs/apache-airflow-providers-telegram/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+4.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 4.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-telegram/index.rst b/docs/apache-airflow-providers-telegram/index.rst
index 1dd4a50..d1e6948 100644
--- a/docs/apache-airflow-providers-telegram/index.rst
+++ b/docs/apache-airflow-providers-telegram/index.rst
@@ -64,7 +64,7 @@
 `Telegram <https://telegram.org/>`__
 
 
-Release: 4.1.0
+Release: 4.1.1
 
 Provider package
 ----------------
diff --git a/docs/apache-airflow-providers-trino/commits.rst b/docs/apache-airflow-providers-trino/commits.rst
index d234fae..83c1355 100644
--- a/docs/apache-airflow-providers-trino/commits.rst
+++ b/docs/apache-airflow-providers-trino/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+5.1.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 5.1.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-trino/index.rst b/docs/apache-airflow-providers-trino/index.rst
index f144675..7c5aca7 100644
--- a/docs/apache-airflow-providers-trino/index.rst
+++ b/docs/apache-airflow-providers-trino/index.rst
@@ -66,7 +66,7 @@
 `Trino <https://trino.io/>`__
 
 
-Release: 5.1.0
+Release: 5.1.1
 
 Provider package
 ----------------
@@ -121,7 +121,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-trino 5.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.1.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-trino 5.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.1.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-trino 5.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.1.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-trino 5.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.1.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/trino/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-vertica/commits.rst b/docs/apache-airflow-providers-vertica/commits.rst
index bb6ee06..35f09c6 100644
--- a/docs/apache-airflow-providers-vertica/commits.rst
+++ b/docs/apache-airflow-providers-vertica/commits.rst
@@ -28,14 +28,27 @@
 
 
 
+3.4.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_  2023-06-02   ``Add D400 pydocstyle check - Providers (#31427)``
+=================================================================================================  ===========  =============================================================
+
 3.4.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-vertica/index.rst b/docs/apache-airflow-providers-vertica/index.rst
index a38aa8d..127bd5f 100644
--- a/docs/apache-airflow-providers-vertica/index.rst
+++ b/docs/apache-airflow-providers-vertica/index.rst
@@ -51,7 +51,7 @@
 `Vertica <https://www.vertica.com/>`__
 
 
-Release: 3.4.0
+Release: 3.4.1
 
 Provider package
 ----------------
@@ -104,7 +104,7 @@
 You can download officially released packages and verify their checksums and signatures from the
 `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_
 
-* `The apache-airflow-providers-vertica 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.4.0.tar.gz.sha512>`__)
-* `The apache-airflow-providers-vertica 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.4.0-py3-none-any.whl.sha512>`__)
+* `The apache-airflow-providers-vertica 3.4.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.4.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.4.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.4.1.tar.gz.sha512>`__)
+* `The apache-airflow-providers-vertica 3.4.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.4.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.4.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.4.1-py3-none-any.whl.sha512>`__)
 
 .. include:: ../../airflow/providers/vertica/CHANGELOG.rst
diff --git a/docs/apache-airflow-providers-zendesk/commits.rst b/docs/apache-airflow-providers-zendesk/commits.rst
index 5e508c3..357fb73 100644
--- a/docs/apache-airflow-providers-zendesk/commits.rst
+++ b/docs/apache-airflow-providers-zendesk/commits.rst
@@ -28,14 +28,26 @@
 
 
 
+4.3.1
+.....
+
+Latest change: 2023-06-20
+
+=================================================================================================  ===========  =============================================================
+Commit                                                                                             Committed    Subject
+=================================================================================================  ===========  =============================================================
+`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_  2023-06-20   ``Add note about dropping Python 3.7 for providers (#32015)``
+=================================================================================================  ===========  =============================================================
+
 4.3.0
 .....
 
-Latest change: 2023-05-18
+Latest change: 2023-05-19
 
 =================================================================================================  ===========  ======================================================================================
 Commit                                                                                             Committed    Subject
 =================================================================================================  ===========  ======================================================================================
+`45548b9451 <https://github.com/apache/airflow/commit/45548b9451fba4e48c6f0c0ba6050482c2ea2956>`_  2023-05-19   ``Prepare RC2 docs for May 2023 wave of Providers (#31416)``
 `abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_  2023-05-18   ``Use '__version__' in providers not 'version' (#31393)``
 `f5aed58d9f <https://github.com/apache/airflow/commit/f5aed58d9fb2137fa5f0e3ce75b6709bf8393a94>`_  2023-05-18   ``Fixing circular import error in providers caused by airflow version check (#31379)``
 `d9ff55cf6d <https://github.com/apache/airflow/commit/d9ff55cf6d95bb342fed7a87613db7b9e7c8dd0f>`_  2023-05-16   ``Prepare docs for May 2023 wave of Providers (#31252)``
diff --git a/docs/apache-airflow-providers-zendesk/index.rst b/docs/apache-airflow-providers-zendesk/index.rst
index c0bcc6b..a8dfa53 100644
--- a/docs/apache-airflow-providers-zendesk/index.rst
+++ b/docs/apache-airflow-providers-zendesk/index.rst
@@ -58,7 +58,7 @@
 `Zendesk <https://www.zendesk.com/>`__
 
 
-Release: 4.3.0
+Release: 4.3.1
 
 Provider package
 ----------------