Skip to content

Commit

Permalink
Prepare docs 1st wave of Providers December 2023 RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
eladkal authored and potiuk committed Dec 12, 2023
1 parent c2f440d commit 78fa7b6
Show file tree
Hide file tree
Showing 15 changed files with 135 additions and 35 deletions.
22 changes: 20 additions & 2 deletions airflow/providers/daskexecutor/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,29 @@
Changelog
---------

1.1.1
1.2.0
.....

* Mark daskexecutor provider as removed according to `consensus on the [email protected] <https://lists.apache.org/thread/fxv44cqqljrrhll3fdpdgc9h9fz5ghcy>`_
.. note::
Mark daskexecutor provider as removed according to `consensus on the [email protected] <https://lists.apache.org/thread/fxv44cqqljrrhll3fdpdgc9h9fz5ghcy>`_

.. note::
This release of provider is only available for Airflow 2.6+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Misc
~~~~

* ``Mark daskexecutor provider as removed (#35965)``

.. Review and move the new changes to one of the sections above:
* ``Fix and reapply templates for provider documentation (#35686)``
* ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
* ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
* ``Use reproducible builds for provider packages (#35693)``
* ``Prepare docs 1st wave of Providers November 2023 (#35537)``
* ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
* ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
1.1.0
.....
Expand Down
6 changes: 3 additions & 3 deletions airflow/providers/daskexecutor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@

__all__ = ["__version__"]

__version__ = "1.1.0"
__version__ = "1.2.0"

try:
from airflow import __version__ as airflow_version
except ImportError:
from airflow.version import version as airflow_version

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.5.0"
"2.6.0"
):
raise RuntimeError(
f"The package `apache-airflow-providers-daskexecutor:{__version__}` needs Apache Airflow 2.5.0+"
f"The package `apache-airflow-providers-daskexecutor:{__version__}` needs Apache Airflow 2.6.0+"
)
4 changes: 2 additions & 2 deletions airflow/providers/daskexecutor/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ removed: true
suspended: true
source-date-epoch: 1700827453
versions:
- 1.1.1
- 1.2.0
- 1.1.0
- 1.0.1
- 1.0.0

dependencies:
- apache-airflow>=2.5.0
- apache-airflow>=2.6.0
# Dask support is limited, we need Dask team to upgrade support for dask if we were to continue
# Supporting it in the future
- cloudpickle>=1.4.1
Expand Down
8 changes: 8 additions & 0 deletions airflow/providers/databricks/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,19 @@ Changelog
This release of provider is only available for Airflow 2.6+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Bug Fixes
~~~~~~~~~

* ``Fix: Implement support for 'fetchone()' in the ODBCHook and the Databricks SQL Hook (#36161)``

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``

.. Review and move the new changes to one of the sections above:
* ``Prepare docs 1st wave of Providers December 2023 (#36112)``
5.0.1
.....

Expand Down
3 changes: 3 additions & 0 deletions airflow/providers/docker/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,18 @@ Bug Fixes
~~~~~~~~~

* ``Fix 'enable_logging=True' not working in 'DockerSwarmOperator' (#35677)``
* ``Fix broken log streaming from #35677 (#36127)``

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
* ``Follow BaseHook connection fields method signature in child classes (#36086)``

.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
* ``Update information about links into the provider.yaml files (#35837)``
* ``Prepare docs 1st wave of Providers December 2023 (#36112)``
3.8.2
.....
Expand Down
9 changes: 8 additions & 1 deletion airflow/providers/google/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Features
* ``GCP Secrets Backend Impersonation (#36072)``
* ``Add OpenLineage support to GcsOperators - Delete, Transform and TimeSpanTransform (#35838)``
* ``Add support for service account impersonation with computeEngineSSHHook (google provider) and IAP tunnel (#35136)``
* ``Add Datascan Profiling (#35696)``
* ``Add overrides to template fields of Google Cloud Run Jobs Execute Operator (#36133)``

Bug Fixes
~~~~~~~~~
Expand All @@ -49,17 +51,22 @@ Bug Fixes
* ``Fix CloudRunExecuteJobOperator not able to retrieve the Cloud Run job status in deferrable mode (#36012)``
* ``Fix gcs listing - ensure blobs are loaded (#34919)``
* ``allow multiple elements in impersonation chain (#35694)``
* ``Change retry type for Google Dataflow Client to async one (#36141)``

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
* ``Deprecate 'CloudComposerEnvironmentSensor' in favor of 'CloudComposerCreateEnvironmentOperator' with defer mode (#35775)``
* ``Follow BaseHook connection fields method signature in child classes (#36086)``
* ``Allow storage options to be passed (#35820)``

.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed. Do not delete the lines(!):
* ``Add feature to build "chicken-egg" packages from sources (#35890)``
* ``Upgrade to latest pre-commit plugins (#36163)``
* ``Review and mark found potential SSH security issues by bandit (#36162)``
* ``Prepare docs 1st wave of Providers December 2023 (#36112)``
10.12.0
.......
Expand Down
8 changes: 8 additions & 0 deletions airflow/providers/odbc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,19 @@ Changelog
This release of provider is only available for Airflow 2.6+ as explained in the
`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.

Bug Fixes
~~~~~~~~~

* ``Fix: Implement support for 'fetchone()' in the ODBCHook and the Databricks SQL Hook (#36161)``

Misc
~~~~

* ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``

.. Review and move the new changes to one of the sections above:
* ``Prepare docs 1st wave of Providers December 2023 (#36112)``
4.2.0
.....

Expand Down
7 changes: 7 additions & 0 deletions docs/apache-airflow-providers-daskexecutor/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

.. Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
Expand All @@ -15,4 +16,10 @@
specific language governing permissions and limitations
under the License.
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
OVERWRITTEN WHEN PREPARING PACKAGES.
.. IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
`PROVIDER_CHANGELOG_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
.. include:: ../../airflow/providers/daskexecutor/CHANGELOG.rst
34 changes: 30 additions & 4 deletions docs/apache-airflow-providers-daskexecutor/commits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
specific language governing permissions and limitations
under the License.
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
OVERWRITTEN WHEN PREPARING PACKAGES.
.. IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
`PROVIDER_COMMITS_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
.. THE REMAINDER OF THE FILE IS AUTOMATICALLY GENERATED. IT WILL BE OVERWRITTEN AT RELEASE TIME!
Package apache-airflow-providers-daskexecutor
------------------------------------------------------
Expand All @@ -28,16 +35,35 @@ For high-level changelog, see :doc:`package information including changelog <ind



1.2.0
.....

Latest change: 2023-11-30

================================================================================================= =========== ==================================================================
Commit Committed Subject
================================================================================================= =========== ==================================================================
`9c1c9f450e <https://github.com/apache/airflow/commit/9c1c9f450e289b40f94639db3f0686f592c8841e>`_ 2023-11-30 ``Mark daskexecutor provider as removed (#35965)``
`0b23d5601c <https://github.com/apache/airflow/commit/0b23d5601c6f833392b0ea816e651dcb13a14685>`_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)``
`99534e47f3 <https://github.com/apache/airflow/commit/99534e47f330ce0efb96402629dda5b2a4f16e8f>`_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)``
`99df205f42 <https://github.com/apache/airflow/commit/99df205f42a754aa67f80b5983e1d228ff23267f>`_ 2023-11-16 ``Fix and reapply templates for provider documentation (#35686)``
`1b059c57d6 <https://github.com/apache/airflow/commit/1b059c57d6d57d198463e5388138bee8a08591b1>`_ 2023-11-08 ``Prepare docs 1st wave of Providers November 2023 (#35537)``
`d1c58d86de <https://github.com/apache/airflow/commit/d1c58d86de1267d9268a1efe0a0c102633c051a1>`_ 2023-10-28 ``Prepare docs 3rd wave of Providers October 2023 - FIX (#35233)``
`3592ff4046 <https://github.com/apache/airflow/commit/3592ff40465032fa041600be740ee6bc25e7c242>`_ 2023-10-28 ``Prepare docs 3rd wave of Providers October 2023 (#35187)``
`dd7ba3cae1 <https://github.com/apache/airflow/commit/dd7ba3cae139cb10d71c5ebc25fc496c67ee784e>`_ 2023-10-19 ``Pre-upgrade 'ruff==0.0.292' changes in providers (#35053)``
================================================================================================= =========== ==================================================================

1.1.0
.....

Latest change: 2023-10-05
Latest change: 2023-10-13

================================================================================================= =========== ==================================================
================================================================================================= =========== ===============================================================
Commit Committed Subject
================================================================================================= =========== ==================================================
================================================================================================= =========== ===============================================================
`e9987d5059 <https://github.com/apache/airflow/commit/e9987d50598f70d84cbb2a5d964e21020e81c080>`_ 2023-10-13 ``Prepare docs 1st wave of Providers in October 2023 (#34916)``
`0c8e30e43b <https://github.com/apache/airflow/commit/0c8e30e43b70e9d033e1686b327eb00aab82479c>`_ 2023-10-05 ``Bump min airflow version of providers (#34728)``
================================================================================================= =========== ==================================================
================================================================================================= =========== ===============================================================

1.0.1
.....
Expand Down
14 changes: 11 additions & 3 deletions docs/apache-airflow-providers-daskexecutor/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,22 @@ Package apache-airflow-providers-daskexecutor
`Dask <https://www.dask.org/>`__


Release: 1.1.0
Release: 1.2.0

Provider package
----------------

This is a provider package for ``daskexecutor`` provider. All classes for this provider package
are in ``airflow.providers.daskexecutor`` python package.

.. warning::

This provider is not maintained anymore by the community. It has been removed and is not going to be
updated anymore. The removal was done according to the process described in
`Removing community providers <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#removing-community-providers>`_

Feel free to contact Airflow Development Mailing List if you have any questions.

Installation
------------

Expand All @@ -74,12 +82,12 @@ for the minimum Airflow version supported) via
Requirements
------------

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

================== ==================================
PIP package Version required
================== ==================================
``apache-airflow`` ``>=2.5.0``
``apache-airflow`` ``>=2.6.0``
``cloudpickle`` ``>=1.4.1``
``dask`` ``>=2.9.0,!=2022.10.1,!=2023.5.0``
``distributed`` ``>=2.11.1,!=2023.5.0``
Expand Down
10 changes: 6 additions & 4 deletions docs/apache-airflow-providers-databricks/commits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@ For high-level changelog, see :doc:`package information including changelog <ind
5.1.0
.....

Latest change: 2023-12-07
Latest change: 2023-12-11

================================================================================================= =========== =======================================================================
================================================================================================= =========== ================================================================================================
Commit Committed Subject
================================================================================================= =========== =======================================================================
================================================================================================= =========== ================================================================================================
`36010f6d0e <https://github.com/apache/airflow/commit/36010f6d0e3231081dbae095baff5a5b5c5b34eb>`_ 2023-12-11 ``Fix: Implement support for 'fetchone()' in the ODBCHook and the Databricks SQL Hook (#36161)``
`999b70178a <https://github.com/apache/airflow/commit/999b70178a1f5d891fd2c88af4831a4ba4c2cbc9>`_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)``
`d0918d77ee <https://github.com/apache/airflow/commit/d0918d77ee05ab08c83af6956e38584a48574590>`_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
================================================================================================= =========== =======================================================================
================================================================================================= =========== ================================================================================================

5.0.1
.....
Expand Down
11 changes: 7 additions & 4 deletions docs/apache-airflow-providers-docker/commits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,18 @@ For high-level changelog, see :doc:`package information including changelog <ind
3.9.0
.....

Latest change: 2023-12-07
Latest change: 2023-12-11

================================================================================================= =========== ===========================================================================
================================================================================================= =========== ================================================================================
Commit Committed Subject
================================================================================================= =========== ===========================================================================
================================================================================================= =========== ================================================================================
`cd476acd8f <https://github.com/apache/airflow/commit/cd476acd8f1684f613c20dddaa9e988bcfb3ac1c>`_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)``
`f9c952bb7f <https://github.com/apache/airflow/commit/f9c952bb7f5b8dd321bd33697d3fcddc16c39d8c>`_ 2023-12-09 ``Fix broken log streaming from #35677 (#36127)``
`999b70178a <https://github.com/apache/airflow/commit/999b70178a1f5d891fd2c88af4831a4ba4c2cbc9>`_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)``
`d0918d77ee <https://github.com/apache/airflow/commit/d0918d77ee05ab08c83af6956e38584a48574590>`_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
`882108862d <https://github.com/apache/airflow/commit/882108862dcaf08e7f5da519b3d186048d4ec7f9>`_ 2023-12-06 ``Fix 'enable_logging=True' not working in 'DockerSwarmOperator' (#35677)``
`c905fe88de <https://github.com/apache/airflow/commit/c905fe88de6382cbf610b1fffa0159a7a0b5558f>`_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)``
================================================================================================= =========== ===========================================================================
================================================================================================= =========== ================================================================================

3.8.2
.....
Expand Down
10 changes: 9 additions & 1 deletion docs/apache-airflow-providers-google/commits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,19 @@ For high-level changelog, see :doc:`package information including changelog <ind
10.13.0
.......

Latest change: 2023-12-07
Latest change: 2023-12-12

================================================================================================= =========== ============================================================================================================================
Commit Committed Subject
================================================================================================= =========== ============================================================================================================================
`47a9c8a4a4 <https://github.com/apache/airflow/commit/47a9c8a4a4ecc4da34bd210d56331e97f9fe8e7e>`_ 2023-12-12 ``Added Datascan Profiling (#35696)``
`3dddfb4a4a <https://github.com/apache/airflow/commit/3dddfb4a4ae112544fd02e09a5633961fa725a36>`_ 2023-12-11 ``Add overrides to template fields of Google Cloud Run Jobs Execute Operator (#36133)``
`fcd993b852 <https://github.com/apache/airflow/commit/fcd993b852b91b6227e7a4b316c8c912797ac4a9>`_ 2023-12-11 ``Upgrade to latest pre-commit plugins (#36163)``
`343bac956b <https://github.com/apache/airflow/commit/343bac956b48aac80a7daaf0715e04d2cc37b373>`_ 2023-12-11 ``Review and mark found potential SSH security issues by bandit (#36162)``
`cd476acd8f <https://github.com/apache/airflow/commit/cd476acd8f1684f613c20dddaa9e988bcfb3ac1c>`_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)``
`8d0c5d9008 <https://github.com/apache/airflow/commit/8d0c5d900875ce3b9dda1a86f1de534759e9d7f6>`_ 2023-12-09 ``Change retry type for Google Dataflow Client to async one (#36141)``
`aba58adb83 <https://github.com/apache/airflow/commit/aba58adb83435e96e66027de5163756301a6ddf5>`_ 2023-12-08 ``Allow storage options to be passed (#35820)``
`999b70178a <https://github.com/apache/airflow/commit/999b70178a1f5d891fd2c88af4831a4ba4c2cbc9>`_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)``
`d0918d77ee <https://github.com/apache/airflow/commit/d0918d77ee05ab08c83af6956e38584a48574590>`_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)``
`ca20f07a16 <https://github.com/apache/airflow/commit/ca20f07a16934d93792773d788b64652009065ce>`_ 2023-12-06 ``GCP Secrets Backend Impersonation (#36072)``
`d0f4512ecb <https://github.com/apache/airflow/commit/d0f4512ecb9c0683a60be7b0de8945948444df8e>`_ 2023-12-04 ``Fix DataprocSubmitJobOperator to retrieve failed job error message (#36053)``
Expand Down
Loading

0 comments on commit 78fa7b6

Please sign in to comment.