Skip to content

Commit

Permalink
Prepare Providers docs ad hoc release (apache#41074)
Browse files Browse the repository at this point in the history
* Prepare Providers docs ad hoc release

* add fab
  • Loading branch information
eladkal committed Jul 28, 2024
1 parent 681b884 commit 7126678
Show file tree
Hide file tree
Showing 15 changed files with 234 additions and 100 deletions.
30 changes: 30 additions & 0 deletions airflow/providers/amazon/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,36 @@
Changelog
---------

8.27.0
......

Features
~~~~~~~~

* ``Add RedriveExecution support to 'StepFunctionStartExecutionOperator' (#40976)``
* ``openlineage: add support for hook lineage for S3Hook (#40819)``
* ``Introduce Amazon Kinesis Analytics V2 (Managed Service for Apache Flink application) (#40765)``

Bug Fixes
~~~~~~~~~

* ``Make EMR Container Trigger max attempts retries match the Operator (#41008)``
* ``Fix 'RdsStopDbOperator' operator in deferrable mode (#41059)``
* ``Fix 'RedshiftCreateClusterOperator' to always specify 'PubliclyAccessible' (#40872)``

Misc
~~~~

* ``Update 'example_redshift' and 'example_redshift_s3_transfers' to use 'RedshiftDataHook' instead of 'RedshiftSQLHook' (#40970)``
* ``openlineage: migrate OpenLineage provider to V2 facets. (#39530)``
* ``[AIP-62] Translate AIP-60 URI to OpenLineage (#40173)``
* ``Move AWS Managed Service for Apache Flink sensor states to Hook (#40896)``
* ``Replace usages of task context logger with the log table (#40867)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
8.26.0
......

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/amazon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "8.26.0"
__version__ = "8.27.0"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.7.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/amazon/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ description: |
Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__).
state: ready
source-date-epoch: 1720288090
source-date-epoch: 1722145222
# note that those versions are maintained by release manager - do not update them manually
versions:
- 8.27.0
- 8.26.0
- 8.25.0
- 8.24.0
Expand Down
18 changes: 18 additions & 0 deletions airflow/providers/fab/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,24 @@
Changelog
---------

1.2.2
.....

Bug Fixes
~~~~~~~~~

* ``Bug fix: sync perm command not able to use custom security manager (#41020)``
* ``Bump version checked by FAB provider on logout CSRF protection to 2.10.0 (#40784)``

Misc
~~~~

* ``AIP-44 make database isolation mode work in Breeze (#40894)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
1.2.1
.....

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/fab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "1.2.1"
__version__ = "1.2.2"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.9.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/fab/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ description: |
# For providers until we think it should be released.
state: ready

source-date-epoch: 1720423149
source-date-epoch: 1722149665

# note that those versions are maintained by release manager - do not update them manually
versions:
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.1
Expand Down
23 changes: 23 additions & 0 deletions airflow/providers/google/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,29 @@
Changelog
---------

10.21.1
.......

Bug Fixes
~~~~~~~~~

* ``fix unnecessary imports for CloudSQL hook (#41009)``
* ``Move sensitive information to the secret manager for the system test google_analytics_admin (#40951)``
* ``Fix Custom Training Job operators to accept results without managed model (#40685)``
* ``Fix behavior for reattach_state parameter in BigQueryInsertJobOperator (#40664)``

Misc
~~~~

* ``Refactor dataproc system tests (#40720)``
* ``openlineage: migrate OpenLineage provider to V2 facets. (#39530)``
* ``Resolve CloudSQLDatabaseHook deprecation warning (#40834)``
* ``Fix BeamRunJavaPipelineOperator fails without job_name set (#40645)``


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
10.21.0
.......

Expand Down
2 changes: 1 addition & 1 deletion airflow/providers/google/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

__all__ = ["__version__"]

__version__ = "10.21.0"
__version__ = "10.21.1"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.7.0"
Expand Down
3 changes: 2 additions & 1 deletion airflow/providers/google/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ description: |
- `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite)
state: ready
source-date-epoch: 1720423376
source-date-epoch: 1722145669
# note that those versions are maintained by release manager - do not update them manually
versions:
- 10.21.1
- 10.21.0
- 10.20.0
- 10.19.0
Expand Down
24 changes: 23 additions & 1 deletion docs/apache-airflow-providers-amazon/commits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,36 @@ For high-level changelog, see :doc:`package information including changelog <ind



8.27.0
......

Latest change: 2024-07-26

================================================================================================= =========== =================================================================================================================================
Commit Committed Subject
================================================================================================= =========== =================================================================================================================================
`c519920661 <https://github.com/apache/airflow/commit/c519920661133a06e917a781e73caeac111b26f5>`_ 2024-07-26 ``Make EMR Container Trigger max attempts retries match the Operator (#41008)``
`83ca61a501 <https://github.com/apache/airflow/commit/83ca61a501d755669fc83b1ad9038d0ca9d600ad>`_ 2024-07-26 ``Fix 'RdsStopDbOperator' operator in deferrable mode (#41059)``
`68b3159210 <https://github.com/apache/airflow/commit/68b3159210fc4bb1dc0a18fb99ae610ffd0a7b2a>`_ 2024-07-24 ``Add RedriveExecution support to 'StepFunctionStartExecutionOperator' (#40976)``
`b4e82cf66f <https://github.com/apache/airflow/commit/b4e82cf66fb4d833a25de5e2688b44e7b4ddf4bb>`_ 2024-07-24 ``Update 'example_redshift' and 'example_redshift_s3_transfers' to use 'RedshiftDataHook' instead of 'RedshiftSQLHook' (#40970)``
`0206a4cbcf <https://github.com/apache/airflow/commit/0206a4cbcfbf85ab035c25533b12f022c22cae3a>`_ 2024-07-23 ``openlineage: migrate OpenLineage provider to V2 facets. (#39530)``
`8a912f9fa0 <https://github.com/apache/airflow/commit/8a912f9fa00bf25763e70323f15eef5f94826495>`_ 2024-07-23 ``[AIP-62] Translate AIP-60 URI to OpenLineage (#40173)``
`5702481af4 <https://github.com/apache/airflow/commit/5702481af4d699f09eda53e12cfc04ebb0df9c39>`_ 2024-07-22 ``Move AWS Managed Service for Apache Flink sensor states to Hook (#40896)``
`0212f67192 <https://github.com/apache/airflow/commit/0212f671921fc5da15085eefbde8b0a76db40fd9>`_ 2024-07-22 ``openlineage: add support for hook lineage for S3Hook (#40819)``
`f684a58822 <https://github.com/apache/airflow/commit/f684a5882225a45a360a4311ecab11535a65be05>`_ 2024-07-19 ``Replace usages of task context logger with the log table (#40867)``
`06b19eb8b0 <https://github.com/apache/airflow/commit/06b19eb8b099ba192d8bdb9877e784221ca6297d>`_ 2024-07-18 ``Fix 'RedshiftCreateClusterOperator' to always specify 'PubliclyAccessible' (#40872)``
`a4e3fbed1a <https://github.com/apache/airflow/commit/a4e3fbed1a07b5685820a468e2d2ebb986b7d6b4>`_ 2024-07-18 ``Introduce Amazon Kinesis Analytics V2 (Managed Service for Apache Flink application) (#40765)``
================================================================================================= =========== =================================================================================================================================

8.26.0
......

Latest change: 2024-07-11
Latest change: 2024-07-12

================================================================================================= =========== =================================================================================
Commit Committed Subject
================================================================================================= =========== =================================================================================
`c09fcdf1d0 <https://github.com/apache/airflow/commit/c09fcdf1d0e69497cf1b628df9ba3349eb688256>`_ 2024-07-12 ``Prepare Providers docs RC2 1st wave July 2024 (#40750)``
`6b9214508a <https://github.com/apache/airflow/commit/6b9214508ae8ff4d6d39e9ecda5138b5ba717ceb>`_ 2024-07-11 ``Send important executor logs to task logs in 'AwsBatchExecutor' (#40698)``
`a11d273af5 <https://github.com/apache/airflow/commit/a11d273af5ec51150e6a9c75bced1dc5446e608a>`_ 2024-07-11 ``Fix deferrable AWS SageMaker operators (#40706)``
`aca140a2c1 <https://github.com/apache/airflow/commit/aca140a2c1c96d2b880b15534524c76ce8441429>`_ 2024-07-10 ``Send important executor logs to task logs (#40468)``
Expand Down
41 changes: 22 additions & 19 deletions docs/apache-airflow-providers-amazon/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ apache-airflow-providers-amazon package
Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__).


Release: 8.26.0
Release: 8.27.0

Provider package
----------------
Expand All @@ -106,23 +106,25 @@ Requirements

The minimum Apache Airflow version supported by this provider package is ``2.7.0``.

======================================= ==================
PIP package Version required
======================================= ==================
``apache-airflow`` ``>=2.7.0``
``apache-airflow-providers-common-sql`` ``>=1.3.1``
========================================== ==================
PIP package Version required
========================================== ==================
``apache-airflow`` ``>=2.7.0``
``apache-airflow-providers-common-compat`` ``>=1.1.0``
``apache-airflow-providers-common-sql`` ``>=1.3.1``
``apache-airflow-providers-http``
``boto3`` ``>=1.34.90``
``botocore`` ``>=1.34.90``
``inflection`` ``>=0.5.1``
``watchtower`` ``>=3.0.0,<4``
``jsonpath_ng`` ``>=1.5.3``
``redshift_connector`` ``>=2.0.918``
``sqlalchemy_redshift`` ``>=0.8.6``
``asgiref`` ``>=2.3.0``
``PyAthena`` ``>=3.0.10``
``jmespath`` ``>=0.7.0``
======================================= ==================
``apache-airflow-providers-common-compat`` ``>=1.1.0``
``boto3`` ``>=1.34.90``
``botocore`` ``>=1.34.90``
``inflection`` ``>=0.5.1``
``watchtower`` ``>=3.0.0,<4``
``jsonpath_ng`` ``>=1.5.3``
``redshift_connector`` ``>=2.0.918``
``sqlalchemy_redshift`` ``>=0.8.6``
``asgiref`` ``>=2.3.0``
``PyAthena`` ``>=3.0.10``
``jmespath`` ``>=0.7.0``
========================================== ==================

Cross provider package dependencies
-----------------------------------
Expand All @@ -142,6 +144,7 @@ Dependent package
====================================================================================================================== ===================
`apache-airflow-providers-apache-hive <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive>`_ ``apache.hive``
`apache-airflow-providers-cncf-kubernetes <https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes>`_ ``cncf.kubernetes``
`apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
`apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
`apache-airflow-providers-exasol <https://airflow.apache.org/docs/apache-airflow-providers-exasol>`_ ``exasol``
`apache-airflow-providers-ftp <https://airflow.apache.org/docs/apache-airflow-providers-ftp>`_ ``ftp``
Expand All @@ -161,5 +164,5 @@ Downloading official packages
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.26.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.26.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.26.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.26.0.tar.gz.sha512>`__)
* `The apache-airflow-providers-amazon 8.26.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.26.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.26.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.26.0-py3-none-any.whl.sha512>`__)
* `The apache-airflow-providers-amazon 8.27.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.27.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.27.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.27.0.tar.gz.sha512>`__)
* `The apache-airflow-providers-amazon 8.27.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.27.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.27.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.27.0-py3-none-any.whl.sha512>`__)
16 changes: 15 additions & 1 deletion docs/apache-airflow-providers-fab/commits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,28 @@ For high-level changelog, see :doc:`package information including changelog <ind



1.2.2
.....

Latest change: 2024-07-25

================================================================================================= =========== =====================================================================================
Commit Committed Subject
================================================================================================= =========== =====================================================================================
`95cab23792 <https://github.com/apache/airflow/commit/95cab23792c80f0ecf980ac0a74b8d08431fb3bb>`_ 2024-07-25 ``Bug fix: sync perm command not able to use custom security manager (#41020)``
`6684481c67 <https://github.com/apache/airflow/commit/6684481c67f6a21a72e7f1512b450a433c5313b5>`_ 2024-07-20 ``AIP-44 make database isolation mode work in Breeze (#40894)``
`d029e77f2f <https://github.com/apache/airflow/commit/d029e77f2fd704bec4f4797b09d54c5c824a8536>`_ 2024-07-15 ``Bump version checked by FAB provider on logout CSRF protection to 2.10.0 (#40784)``
================================================================================================= =========== =====================================================================================

1.2.1
.....

Latest change: 2024-06-28
Latest change: 2024-07-09

================================================================================================= =========== ==============================================================================
Commit Committed Subject
================================================================================================= =========== ==============================================================================
`09a7bd1d58 <https://github.com/apache/airflow/commit/09a7bd1d585d2d306dd30435689f22b614fe0abf>`_ 2024-07-09 ``Prepare docs 1st wave July 2024 (#40644)``
`2423238295 <https://github.com/apache/airflow/commit/242323829502eece2f6c7748cc9db051f9c247bc>`_ 2024-06-28 ``Add backward compatibility to CSRF protection of '/logout' method (#40479)``
`a62bd83188 <https://github.com/apache/airflow/commit/a62bd831885957c55b073bf309bc59a1d505e8fb>`_ 2024-06-27 ``Enable enforcing pydocstyle rule D213 in ruff. (#40448)``
================================================================================================= =========== ==============================================================================
Expand Down
2 changes: 1 addition & 1 deletion docs/apache-airflow-providers-fab/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ apache-airflow-providers-fab package
`Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__


Release: 1.2.1
Release: 1.2.2

Provider package
----------------
Expand Down
Loading

0 comments on commit 7126678

Please sign in to comment.