Apache Airflow Hive Provider vulnerability (command injection via hive_cli connection)
Description
OS command injection in Apache Airflow Hive Provider allows arbitrary command execution without write access to DAG files.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
OS command injection in Apache Airflow Hive Provider allows arbitrary command execution without write access to DAG files.
Vulnerability
CVE-2022-41131 is an OS command injection vulnerability in the Apache Airflow Hive Provider. The improper neutralization of special elements used in an OS command allows an attacker to execute arbitrary commands in the task execution context [2]. The root cause lies in the Hive hook's handling of schema inputs, which did not properly filter out invalid characters or schemas before passing them to the underlying shell command [3].
Exploitation
An attacker can exploit this vulnerability without requiring write access to DAG files, significantly lowering the prerequisites for a successful attack [1]. The vulnerability affects Hive Provider versions prior to 4.1.0 and any Apache Airflow versions prior to 2.3.0 where the Hive Provider is installed. Notably, even Airflow 2.3.0+ installations may be vulnerable if a lower version of Hive Provider is installed [2].
Impact
Successful exploitation allows an attacker to execute arbitrary commands in the task execution context of the Airflow worker [1][2]. This could lead to unauthorized data access, privilege escalation, or further compromise of the Airflow environment and connected systems [1].
Mitigation
The vulnerability is fixed in Hive Provider version 4.1.0, which can only be installed on Airflow 2.3.0+ [2]. Users should upgrade the Hive Provider to version 4.1.0 or later. For Airflow versions before 2.3.0, upgrading to the latest Airflow release (2.3.0 or later) is required, and then Hive Provider 4.1.0 should be installed [2].
AI Insight generated on May 21, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
apache-airflow-providers-apache-hivePyPI | < 4.1.0 | 4.1.0 |
Affected products
4- osv-coords2 versions
< 2.3.0+ 1 more
- (no CPE)range: < 2.3.0
- (no CPE)range: < 4.1.0
- Range: unspecified
Patches
31c98f573a29dPrepare release for 2025-11-27 wave of providers (#58697)
300 files changed · +1686 −753
providers/airbyte/docs/changelog.rst+21 −0 modified@@ -27,6 +27,27 @@ Changelog --------- +5.3.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~~~~~~ + +* ``Make Airbyte connection fields properly labeled in Airflow 3 (#58342)`` + +Misc +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 5.2.5 .....
providers/airbyte/docs/index.rst+5 −5 modified@@ -76,7 +76,7 @@ apache-airflow-providers-airbyte package `Airbyte <https://airbyte.com/>`__ -Release: 5.2.5 +Release: 5.3.0 Provider package ---------------- @@ -94,12 +94,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``airbyte-api`` ``>=0.52.0`` ``requests`` ``>=2.32.0`` @@ -130,5 +130,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-airbyte 5.2.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.2.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.2.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.2.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-airbyte 5.2.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.2.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.2.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.2.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-airbyte 5.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-airbyte 5.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-5.3.0-py3-none-any.whl.sha512>`__)
providers/airbyte/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Airbyte <https://airbyte.com/>`__ state: ready -source-date-epoch: 1763067783 +source-date-epoch: 1764109402 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 5.3.0 - 5.2.5 - 5.2.4 - 5.2.3
providers/airbyte/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-airbyte" -version = "5.2.5" +version = "5.3.0" description = "Provider package apache-airflow-providers-airbyte for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "airbyte-api>=0.52.0", "requests>=2.32.0", @@ -99,8 +99,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.2.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.2.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.3.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.3.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/airbyte/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-airbyte`` -Release: ``5.2.5`` +Release: ``5.3.0`` `Airbyte <https://airbyte.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``airbyte`` provider. All classes for this provid are in ``airflow.providers.airbyte`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.2.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.3.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``airbyte-api`` ``>=0.52.0`` ``requests`` ``>=2.32.0`` @@ -79,4 +79,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.2.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-airbyte/5.3.0/changelog.html>`_.
providers/airbyte/src/airflow/providers/airbyte/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "5.2.5" +__version__ = "5.3.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/alibaba/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +3.3.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.2.5 .....
providers/alibaba/docs/index.rst+5 −5 modified@@ -77,7 +77,7 @@ apache-airflow-providers-alibaba package Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com/>`__). -Release: 3.2.5 +Release: 3.3.0 Provider package ---------------- @@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``oss2`` ``>=2.14.0`` ``alibabacloud_adb20211201`` ``>=1.0.0`` @@ -133,5 +133,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-alibaba 3.2.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.2.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.2.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.2.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-alibaba 3.2.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.2.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.2.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.2.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-alibaba 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-alibaba 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_alibaba-3.3.0-py3-none-any.whl.sha512>`__)
providers/alibaba/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com/>`__). state: ready -source-date-epoch: 1763067867 +source-date-epoch: 1764109410 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.3.0 - 3.2.5 - 3.2.4 - 3.2.3
providers/alibaba/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-alibaba" -version = "3.2.5" +version = "3.3.0" description = "Provider package apache-airflow-providers-alibaba for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "oss2>=2.14.0", "alibabacloud_adb20211201>=1.0.0", @@ -101,8 +101,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.2.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.2.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.3.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.3.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/alibaba/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-alibaba`` -Release: ``3.2.5`` +Release: ``3.3.0`` Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com/>`__). @@ -36,7 +36,7 @@ This is a provider package for ``alibaba`` provider. All classes for this provid are in ``airflow.providers.alibaba`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.2.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.3.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``oss2`` ``>=2.14.0`` ``alibabacloud_adb20211201`` ``>=1.0.0`` @@ -81,4 +81,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.2.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-alibaba/3.3.0/changelog.html>`_.
providers/alibaba/src/airflow/providers/alibaba/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.2.5" +__version__ = "3.3.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/amazon/docs/changelog.rst+23 −0 modified@@ -26,6 +26,29 @@ Changelog --------- +9.18.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` +* ``Remove the limitation for sagemaker for Python 3.13 (#58388)`` +* ``Remove SDK reference for NOTSET in Airflow Core (#58258)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + * ``Check for cluster stability just before the transfer (#58690)`` + * ``Increase wait for redshift clusters (#58645)`` + * ``Remove global from lineage.hook (#58285)`` + * ``Increase waiter delay for ecs run tasks in system tests (#58338)`` + 9.17.0 ......
providers/amazon/docs/index.rst+11 −10 modified@@ -87,7 +87,7 @@ apache-airflow-providers-amazon package Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__). -Release: 9.17.0 +Release: 9.18.0 Provider package ---------------- @@ -105,12 +105,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. -========================================== ============================================ +========================================== ====================================== PIP package Version required -========================================== ============================================ -``apache-airflow`` ``>=2.10.0`` +========================================== ====================================== +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``apache-airflow-providers-http`` @@ -123,10 +123,11 @@ PIP package Version required ``asgiref`` ``>=2.3.0`` ``PyAthena`` ``>=3.10.0`` ``jmespath`` ``>=0.7.0`` -``sagemaker-studio`` ``>=1.0.9; python_version < "3.13"`` -``sagemaker-studio`` ``>=1.0.9,<1.1.0; python_version >= "3.13"`` +``sagemaker-studio`` ``>=1.0.9`` +``pydynamodb`` ``>=0.7.5; python_version >= "3.13"`` +``sqlean.py`` ``>=3.47.0; python_version >= "3.13"`` ``marshmallow`` ``>=3`` -========================================== ============================================ +========================================== ====================================== Cross provider package dependencies ----------------------------------- @@ -167,5 +168,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 9.17.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.17.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.17.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.17.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-amazon 9.17.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.17.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.17.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.17.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-amazon 9.18.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.18.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.18.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.18.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-amazon 9.18.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.18.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.18.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-9.18.0-py3-none-any.whl.sha512>`__)
providers/amazon/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__). state: ready -source-date-epoch: 1763068180 +source-date-epoch: 1764109431 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 9.18.0 - 9.17.0 - 9.16.0 - 9.15.0
providers/amazon/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-amazon" -version = "9.17.0" +version = "9.18.0" description = "Provider package apache-airflow-providers-amazon for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-common-sql>=1.27.0", "apache-airflow-providers-http", @@ -211,8 +211,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.17.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.17.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.18.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.18.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/amazon/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-amazon`` -Release: ``9.17.0`` +Release: ``9.18.0`` Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__). @@ -36,7 +36,7 @@ This is a provider package for ``amazon`` provider. All classes for this provide are in ``airflow.providers.amazon`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.17.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.18.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ====================================== PIP package Version required ========================================== ====================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``apache-airflow-providers-http`` @@ -131,4 +131,4 @@ Extra Dependencies ==================== ======================================================================================================================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.17.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-amazon/9.18.0/changelog.html>`_.
providers/amazon/src/airflow/providers/amazon/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "9.17.0" +__version__ = "9.18.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/beam/docs/changelog.rst+17 −0 modified@@ -26,6 +26,23 @@ Changelog --------- +6.2.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + * ``Move Airflow Config Parser to shared library (#57744)`` + 6.1.7 .....
providers/apache/beam/docs/index.rst+5 −5 modified@@ -75,7 +75,7 @@ apache-airflow-providers-apache-beam package `Apache Beam <https://beam.apache.org/>`__. -Release: 6.1.7 +Release: 6.2.0 Provider package ---------------- @@ -93,12 +93,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ================== ================================================================== PIP package Version required ================== ================================================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-beam`` ``>=2.60.0; python_version < "3.13"`` ``pyarrow`` ``>=16.1.0; python_version < "3.13"`` ``numpy`` ``>=1.22.4; python_version < "3.11"`` @@ -132,5 +132,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-apache-beam 6.1.7 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.1.7.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.1.7.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.1.7.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-beam 6.1.7 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.1.7-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.1.7-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.1.7-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-beam 6.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-beam 6.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-6.2.0-py3-none-any.whl.sha512>`__)
providers/apache/beam/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Beam <https://beam.apache.org/>`__. state: ready -source-date-epoch: 1763068212 +source-date-epoch: 1764109442 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 6.2.0 - 6.1.7 - 6.1.6 - 6.1.5
providers/apache/beam/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-beam" -version = "6.1.7" +version = "6.2.0" description = "Provider package apache-airflow-providers-apache-beam for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -57,7 +57,7 @@ requires-python = ">=3.10,!=3.13" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", 'apache-beam>=2.60.0; python_version < "3.13"', "pyarrow>=16.1.0; python_version < '3.13'", "numpy>=1.22.4; python_version<'3.11'", @@ -111,8 +111,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.1.7" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.1.7/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.2.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.2.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/beam/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-beam`` -Release: ``6.1.7`` +Release: ``6.2.0`` `Apache Beam <https://beam.apache.org/>`__. @@ -36,7 +36,7 @@ This is a provider package for ``apache.beam`` provider. All classes for this pr are in ``airflow.providers.apache.beam`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.1.7/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.2.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ================== ================================================================== PIP package Version required ================== ================================================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-beam`` ``>=2.60.0; python_version < "3.13"`` ``pyarrow`` ``>=16.1.0; python_version < "3.13"`` ``numpy`` ``>=1.22.4; python_version < "3.11"`` @@ -92,4 +92,4 @@ Extra Dependencies ================= =================================================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.1.7/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-beam/6.2.0/changelog.html>`_.
providers/apache/beam/src/airflow/providers/apache/beam/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "6.1.7" +__version__ = "6.2.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/cassandra/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +3.9.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.8.4 .....
providers/apache/cassandra/docs/index.rst+5 −5 modified@@ -76,7 +76,7 @@ apache-airflow-providers-apache-cassandra package `Apache Cassandra <https://cassandra.apache.org/>`__. -Release: 3.8.4 +Release: 3.9.0 Provider package ---------------- @@ -94,12 +94,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ==================== ================== PIP package Version required ==================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``cassandra-driver`` ``>=3.29.1`` ==================== ================== @@ -128,5 +128,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-apache-cassandra 3.8.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.8.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.8.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.8.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-cassandra 3.8.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.8.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.8.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.8.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-cassandra 3.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.9.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-cassandra 3.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_cassandra-3.9.0-py3-none-any.whl.sha512>`__)
providers/apache/cassandra/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Cassandra <https://cassandra.apache.org/>`__. state: ready -source-date-epoch: 1763068250 +source-date-epoch: 1764109450 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.9.0 - 3.8.4 - 3.8.3 - 3.8.2
providers/apache/cassandra/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-cassandra" -version = "3.8.4" +version = "3.9.0" description = "Provider package apache-airflow-providers-apache-cassandra for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "cassandra-driver>=3.29.1", ] @@ -104,8 +104,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.8.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.8.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.9.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.9.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/cassandra/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-cassandra`` -Release: ``3.8.4`` +Release: ``3.9.0`` `Apache Cassandra <https://cassandra.apache.org/>`__. @@ -36,7 +36,7 @@ This is a provider package for ``apache.cassandra`` provider. All classes for th are in ``airflow.providers.apache.cassandra`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.8.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.9.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ==================== ================== PIP package Version required ==================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``cassandra-driver`` ``>=3.29.1`` ==================== ================== @@ -86,4 +86,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.8.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-cassandra/3.9.0/changelog.html>`_.
providers/apache/cassandra/src/airflow/providers/apache/cassandra/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.8.4" +__version__ = "3.9.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/drill/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +3.2.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.1.4 .....
providers/apache/drill/docs/index.rst+5 −5 modified@@ -76,7 +76,7 @@ apache-airflow-providers-apache-drill package `Apache Drill <https://drill.apache.org/>`__. -Release: 3.1.4 +Release: 3.2.0 Provider package ---------------- @@ -94,12 +94,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== =========================== PIP package Version required ========================================== =========================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``sqlalchemy-drill`` ``>=1.1.0,!=1.1.6,!=1.1.7`` @@ -130,5 +130,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-apache-drill 3.1.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.1.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.1.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.1.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-drill 3.1.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.1.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.1.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.1.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-drill 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-drill 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-3.2.0-py3-none-any.whl.sha512>`__)
providers/apache/drill/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Drill <https://drill.apache.org/>`__. state: ready -source-date-epoch: 1763068298 +source-date-epoch: 1764109464 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.2.0 - 3.1.4 - 3.1.3 - 3.1.2
providers/apache/drill/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-drill" -version = "3.1.4" +version = "3.2.0" description = "Provider package apache-airflow-providers-apache-drill for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-sql>=1.26.0", "apache-airflow-providers-common-compat>=1.8.0", # Workaround until we get https://github.com/JohnOmernik/sqlalchemy-drill/issues/94 fixed. @@ -101,8 +101,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.1.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.1.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.2.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.2.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/drill/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-drill`` -Release: ``3.1.4`` +Release: ``3.2.0`` `Apache Drill <https://drill.apache.org/>`__. @@ -36,7 +36,7 @@ This is a provider package for ``apache.drill`` provider. All classes for this p are in ``airflow.providers.apache.drill`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.1.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.2.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== =========================== PIP package Version required ========================================== =========================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``sqlalchemy-drill`` ``>=1.1.0,!=1.1.6,!=1.1.7`` @@ -79,4 +79,4 @@ Dependent package ============================================================================================================ ============== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.1.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-drill/3.2.0/changelog.html>`_.
providers/apache/drill/src/airflow/providers/apache/drill/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.1.4" +__version__ = "3.2.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/druid/docs/changelog.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +4.4.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 4.3.1 .....
providers/apache/druid/docs/index.rst+5 −5 modified@@ -76,7 +76,7 @@ apache-airflow-providers-apache-druid package `Apache Druid <https://druid.apache.org/>`__. -Release: 4.3.1 +Release: 4.4.0 Provider package ---------------- @@ -94,12 +94,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``pydruid`` ``>=0.6.6`` @@ -132,5 +132,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-apache-druid 4.3.1 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.3.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.3.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.3.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-druid 4.3.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.3.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.3.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.3.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-druid 4.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.4.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-druid 4.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-4.4.0-py3-none-any.whl.sha512>`__)
providers/apache/druid/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Druid <https://druid.apache.org/>`__. state: ready -source-date-epoch: 1763068332 +source-date-epoch: 1764109478 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.4.0 - 4.3.1 - 4.3.0 - 4.2.1
providers/apache/druid/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-druid" -version = "4.3.1" +version = "4.4.0" description = "Provider package apache-airflow-providers-apache-druid for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-sql>=1.26.0", "apache-airflow-providers-common-compat>=1.8.0", "pydruid>=0.6.6", @@ -112,8 +112,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.3.1" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.3.1/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.4.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.4.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/druid/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-druid`` -Release: ``4.3.1`` +Release: ``4.4.0`` `Apache Druid <https://druid.apache.org/>`__. @@ -36,7 +36,7 @@ This is a provider package for ``apache.druid`` provider. All classes for this p are in ``airflow.providers.apache.druid`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.3.1/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.4.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``pydruid`` ``>=0.6.6`` @@ -91,4 +91,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.3.1/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-druid/4.4.0/changelog.html>`_.
providers/apache/druid/src/airflow/providers/apache/druid/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.3.1" +__version__ = "4.4.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/flink/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +1.8.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 1.7.4 .....
providers/apache/flink/docs/index.rst+5 −5 modified@@ -68,7 +68,7 @@ apache-airflow-providers-apache-flink package `Apache Flink <https://flink.apache.org/>`__ -Release: 1.7.4 +Release: 1.8.0 Provider package ---------------- @@ -86,12 +86,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ============================================ ==================== PIP package Version required ============================================ ==================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``cryptography`` ``>=41.0.0,<46.0.0`` ``apache-airflow-providers-cncf-kubernetes`` ``>=5.1.0`` ============================================ ==================== @@ -122,5 +122,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-apache-flink 1.7.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.7.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.7.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.7.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-flink 1.7.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.7.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.7.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.7.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-flink 1.8.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.8.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.8.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.8.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-flink 1.8.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.8.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.8.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.8.0-py3-none-any.whl.sha512>`__)
providers/apache/flink/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Flink <https://flink.apache.org/>`__ state: ready -source-date-epoch: 1763068371 +source-date-epoch: 1764109485 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.8.0 - 1.7.4 - 1.7.3 - 1.7.2
providers/apache/flink/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-flink" -version = "1.7.4" +version = "1.8.0" description = "Provider package apache-airflow-providers-apache-flink for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", # TODO(potiuk): We should bump cryptography to >=46.0.0 when sqlalchemy>=2.0 is required "cryptography>=41.0.0,<46.0.0", "apache-airflow-providers-cncf-kubernetes>=5.1.0", @@ -107,8 +107,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.7.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.7.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.8.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.8.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/flink/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-flink`` -Release: ``1.7.4`` +Release: ``1.8.0`` `Apache Flink <https://flink.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.flink`` provider. All classes for this p are in ``airflow.providers.apache.flink`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.7.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.8.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ============================================ ==================== PIP package Version required ============================================ ==================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``cryptography`` ``>=41.0.0,<46.0.0`` ``apache-airflow-providers-cncf-kubernetes`` ``>=5.1.0`` ============================================ ==================== @@ -88,4 +88,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.7.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-flink/1.8.0/changelog.html>`_.
providers/apache/flink/src/airflow/providers/apache/flink/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.7.4" +__version__ = "1.8.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/hdfs/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +4.11.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.10.5 ......
providers/apache/hdfs/docs/index.rst+5 −5 modified@@ -65,7 +65,7 @@ apache-airflow-providers-apache-hdfs package and `WebHDFS <https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/WebHDFS.html>`__. -Release: 4.10.5 +Release: 4.11.0 Provider package ---------------- @@ -83,12 +83,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ================================= ===================================== PIP package Version required ================================= ===================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``hdfs[avro,dataframe,kerberos]`` ``>=2.5.4; python_version < "3.12"`` ``hdfs[avro,dataframe,kerberos]`` ``>=2.7.3; python_version >= "3.12"`` ``pandas`` ``>=2.1.2; python_version < "3.13"`` @@ -120,5 +120,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-apache-hdfs 4.10.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.10.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.10.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.10.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-hdfs 4.10.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.10.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.10.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.10.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-hdfs 4.11.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.11.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.11.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.11.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-hdfs 4.11.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.11.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.11.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hdfs-4.11.0-py3-none-any.whl.sha512>`__)
providers/apache/hdfs/provider.yaml+2 −1 modified@@ -23,12 +23,13 @@ description: | and `WebHDFS <https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/WebHDFS.html>`__. state: ready -source-date-epoch: 1763068384 +source-date-epoch: 1764109494 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.11.0 - 4.10.5 - 4.10.4 - 4.10.3
providers/apache/hdfs/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-hdfs" -version = "4.10.5" +version = "4.11.0" description = "Provider package apache-airflow-providers-apache-hdfs for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", 'hdfs[avro,dataframe,kerberos]>=2.5.4;python_version<"3.12"', 'hdfs[avro,dataframe,kerberos]>=2.7.3;python_version>="3.12"', 'pandas>=2.1.2; python_version <"3.13"', @@ -107,8 +107,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.10.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.10.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.11.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.11.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/hdfs/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-hdfs`` -Release: ``4.10.5`` +Release: ``4.11.0`` `Hadoop Distributed File System (HDFS) <https://hadoop.apache.org/docs/r1.2.1/hdfs_design.html>`__ @@ -37,7 +37,7 @@ This is a provider package for ``apache.hdfs`` provider. All classes for this pr are in ``airflow.providers.apache.hdfs`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.10.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.11.0/>`_. Installation ------------ @@ -54,7 +54,7 @@ Requirements ================================= ===================================== PIP package Version required ================================= ===================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``hdfs[avro,dataframe,kerberos]`` ``>=2.5.4; python_version < "3.12"`` ``hdfs[avro,dataframe,kerberos]`` ``>=2.7.3; python_version >= "3.12"`` ``pandas`` ``>=2.1.2; python_version < "3.13"`` @@ -90,4 +90,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.10.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hdfs/4.11.0/changelog.html>`_.
providers/apache/hdfs/src/airflow/providers/apache/hdfs/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.10.5" +__version__ = "4.11.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/hive/docs/changelog.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +9.2.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 9.1.4 .....
providers/apache/hive/docs/index.rst+5 −5 modified@@ -79,7 +79,7 @@ apache-airflow-providers-apache-hive package `Apache Hive <https://hive.apache.org/>`__ -Release: 9.1.4 +Release: 9.2.0 Provider package ---------------- @@ -97,12 +97,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ===================================== PIP package Version required ========================================== ===================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``hmsclient`` ``>=0.1.0`` @@ -144,5 +144,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-apache-hive 9.1.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.1.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.1.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.1.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-hive 9.1.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.1.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.1.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.1.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-hive 9.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-hive 9.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-9.2.0-py3-none-any.whl.sha512>`__)
providers/apache/hive/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Hive <https://hive.apache.org/>`__ state: ready -source-date-epoch: 1763068409 +source-date-epoch: 1764109503 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 9.2.0 - 9.1.4 - 9.1.3 - 9.1.2
providers/apache/hive/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-hive" -version = "9.1.4" +version = "9.2.0" description = "Provider package apache-airflow-providers-apache-hive for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-common-sql>=1.26.0", "hmsclient>=0.1.0", @@ -141,8 +141,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.1.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.1.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.2.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.2.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/hive/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-hive`` -Release: ``9.1.4`` +Release: ``9.2.0`` `Apache Hive <https://hive.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.hive`` provider. All classes for this pr are in ``airflow.providers.apache.hive`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.1.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.2.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ===================================== PIP package Version required ========================================== ===================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``hmsclient`` ``>=0.1.0`` @@ -106,4 +106,4 @@ Extra Dependencies =================== ============================================================================================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.1.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/9.2.0/changelog.html>`_.
providers/apache/hive/src/airflow/providers/apache/hive/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "9.1.4" +__version__ = "9.2.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/iceberg/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +1.4.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 1.3.4 .....
providers/apache/iceberg/docs/index.rst+5 −5 modified@@ -73,7 +73,7 @@ apache-airflow-providers-apache-iceberg package `Iceberg <https://iceberg.apache.org/>`__ -Release: 1.3.4 +Release: 1.4.0 Provider package ---------------- @@ -91,12 +91,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ================== ================== Cross provider package dependencies @@ -124,5 +124,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-apache-iceberg 1.3.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.3.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.3.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.3.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-iceberg 1.3.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.3.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.3.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.3.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-iceberg 1.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.4.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-iceberg 1.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_iceberg-1.4.0-py3-none-any.whl.sha512>`__)
providers/apache/iceberg/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Iceberg <https://iceberg.apache.org/>`__ state: ready -source-date-epoch: 1763068428 +source-date-epoch: 1764109512 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.4.0 - 1.3.4 - 1.3.3 - 1.3.2
providers/apache/iceberg/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-iceberg" -version = "1.3.4" +version = "1.4.0" description = "Provider package apache-airflow-providers-apache-iceberg for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", ] # The optional dependencies should be modified in place in the generated file @@ -104,8 +104,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.3.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.3.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.4.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.4.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/iceberg/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-iceberg`` -Release: ``1.3.4`` +Release: ``1.4.0`` `Iceberg <https://iceberg.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.iceberg`` provider. All classes for this are in ``airflow.providers.apache.iceberg`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.3.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.4.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ================== ================== Cross provider package dependencies @@ -85,4 +85,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.3.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-iceberg/1.4.0/changelog.html>`_.
providers/apache/iceberg/src/airflow/providers/apache/iceberg/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.3.4" +__version__ = "1.4.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/impala/docs/changelog.rst+15 −0 modified@@ -26,6 +26,21 @@ Changelog --------- +1.8.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.7.4 .....
providers/apache/impala/docs/index.rst+5 −5 modified@@ -84,7 +84,7 @@ apache-airflow-providers-apache-impala package `Apache Impala <https://impala.apache.org/>`__. -Release: 1.7.4 +Release: 1.8.0 Provider package ---------------- @@ -102,14 +102,14 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ======================================= ================== PIP package Version required ======================================= ================== ``impyla`` ``>=0.22.0,<1.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ======================================= ================== Cross provider package dependencies @@ -137,5 +137,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-apache-impala 1.7.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.7.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.7.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.7.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-impala 1.7.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.7.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.7.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.7.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-impala 1.8.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.8.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.8.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.8.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-impala 1.8.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.8.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.8.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_impala-1.8.0-py3-none-any.whl.sha512>`__)
providers/apache/impala/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Impala <https://impala.apache.org/>`__. state: ready -source-date-epoch: 1763068456 +source-date-epoch: 1764109517 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.8.0 - 1.7.4 - 1.7.3 - 1.7.2
providers/apache/impala/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-impala" -version = "1.7.4" +version = "1.8.0" description = "Provider package apache-airflow-providers-apache-impala for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -60,7 +60,7 @@ requires-python = ">=3.10" dependencies = [ "impyla>=0.22.0,<1.0", "apache-airflow-providers-common-sql>=1.26.0", - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", ] # The optional dependencies should be modified in place in the generated file @@ -107,8 +107,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.7.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.7.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.8.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.8.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/impala/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-impala`` -Release: ``1.7.4`` +Release: ``1.8.0`` `Apache Impala <https://impala.apache.org/>`__. @@ -36,7 +36,7 @@ This is a provider package for ``apache.impala`` provider. All classes for this are in ``airflow.providers.apache.impala`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.7.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.8.0/>`_. Installation ------------ @@ -55,7 +55,7 @@ PIP package Version required ======================================= ================== ``impyla`` ``>=0.22.0,<1.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ======================================= ================== Cross provider package dependencies @@ -87,4 +87,4 @@ Extra Dependencies ============ =================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.7.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-impala/1.8.0/changelog.html>`_.
providers/apache/impala/src/airflow/providers/apache/impala/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.7.4" +__version__ = "1.8.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/kafka/docs/changelog.rst+21 −0 modified@@ -27,6 +27,27 @@ Changelog --------- +1.11.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 AwaitMessageSensor to accept timeout and soft_fail parameters (#57863) (#58070)`` + +Misc +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 1.10.6 ......
providers/apache/kafka/docs/index.rst+5 −5 modified@@ -83,7 +83,7 @@ apache-airflow-providers-apache-kafka package `Apache Kafka <https://kafka.apache.org/>`__ -Release: 1.10.6 +Release: 1.11.0 Provider package ---------------- @@ -101,12 +101,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. =================== ================== PIP package Version required =================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``asgiref`` ``>=2.3.0`` ``confluent-kafka`` ``>=2.6.0`` =================== ================== @@ -138,5 +138,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-apache-kafka 1.10.6 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.10.6.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.10.6.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.10.6.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-kafka 1.10.6 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.10.6-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.10.6-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.10.6-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-kafka 1.11.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.11.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.11.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.11.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-kafka 1.11.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.11.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.11.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kafka-1.11.0-py3-none-any.whl.sha512>`__)
providers/apache/kafka/provider.yaml+2 −1 modified@@ -20,14 +20,15 @@ package-name: apache-airflow-providers-apache-kafka name: Apache Kafka state: ready -source-date-epoch: 1763068477 +source-date-epoch: 1764109527 description: | `Apache Kafka <https://kafka.apache.org/>`__ # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.11.0 - 1.10.6 - 1.10.5 - 1.10.4
providers/apache/kafka/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-kafka" -version = "1.10.6" +version = "1.11.0" description = "Provider package apache-airflow-providers-apache-kafka for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -57,7 +57,7 @@ requires-python = ">=3.10,!=3.13" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "asgiref>=2.3.0", "confluent-kafka>=2.6.0", ] @@ -113,8 +113,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.10.6" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.10.6/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.11.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.11.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/kafka/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-kafka`` -Release: ``1.10.6`` +Release: ``1.11.0`` `Apache Kafka <https://kafka.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.kafka`` provider. All classes for this p are in ``airflow.providers.apache.kafka`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.10.6/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.11.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements =================== ================== PIP package Version required =================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``asgiref`` ``>=2.3.0`` ``confluent-kafka`` ``>=2.6.0`` =================== ================== @@ -91,4 +91,4 @@ Extra Dependencies ==================== ==================================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.10.6/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-kafka/1.11.0/changelog.html>`_.
providers/apache/kafka/src/airflow/providers/apache/kafka/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.10.6" +__version__ = "1.11.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/kylin/docs/changelog.rst+16 −0 modified@@ -29,6 +29,22 @@ Changelog --------- +3.10.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.9.3 .....
providers/apache/kylin/docs/index.rst+5 −5 modified@@ -77,7 +77,7 @@ apache-airflow-providers-apache-kylin package `Apache Kylin <https://kylin.apache.org/>`__ -Release: 3.9.3 +Release: 3.10.0 Provider package ---------------- @@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``kylinpy`` ``>2.7.0`` ========================================== ================== @@ -130,5 +130,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-apache-kylin 3.9.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.9.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.9.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.9.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-kylin 3.9.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.9.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.9.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.9.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-kylin 3.10.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.10.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.10.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.10.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-kylin 3.10.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.10.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.10.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_kylin-3.10.0-py3-none-any.whl.sha512>`__)
providers/apache/kylin/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Kylin <https://kylin.apache.org/>`__ state: ready -source-date-epoch: 1763068502 +source-date-epoch: 1764109534 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.10.0 - 3.9.3 - 3.9.2 - 3.9.1
providers/apache/kylin/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-kylin" -version = "3.9.3" +version = "3.10.0" description = "Provider package apache-airflow-providers-apache-kylin for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "kylinpy>2.7.0", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.9.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.9.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.10.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.10.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/kylin/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-kylin`` -Release: ``3.9.3`` +Release: ``3.10.0`` `Apache Kylin <https://kylin.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.kylin`` provider. All classes for this p are in ``airflow.providers.apache.kylin`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.9.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.10.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``kylinpy`` ``>2.7.0`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.9.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-kylin/3.10.0/changelog.html>`_.
providers/apache/kylin/src/airflow/providers/apache/kylin/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.9.3" +__version__ = "3.10.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/livy/docs/changelog.rst+16 −0 modified@@ -28,6 +28,22 @@ Changelog --------- +4.5.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 4.4.5 .....
providers/apache/livy/docs/index.rst+5 −5 modified@@ -76,7 +76,7 @@ apache-airflow-providers-apache-livy package `Apache Livy <https://livy.apache.org/>`__ -Release: 4.4.5 +Release: 4.5.0 Provider package ---------------- @@ -94,12 +94,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-http`` ``>=5.1.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``aiohttp`` ``>=3.9.2`` @@ -132,5 +132,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-apache-livy 4.4.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.4.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.4.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.4.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-livy 4.4.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.4.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.4.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.4.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-livy 4.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.5.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-livy 4.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-4.5.0-py3-none-any.whl.sha512>`__)
providers/apache/livy/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Livy <https://livy.apache.org/>`__ state: ready -source-date-epoch: 1763068516 +source-date-epoch: 1764109540 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.5.0 - 4.4.5 - 4.4.4 - 4.4.3
providers/apache/livy/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-livy" -version = "4.4.5" +version = "4.5.0" description = "Provider package apache-airflow-providers-apache-livy for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-http>=5.1.0", "apache-airflow-providers-common-compat>=1.8.0", "aiohttp>=3.9.2", @@ -102,8 +102,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.4.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.4.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.5.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.5.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/livy/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-livy`` -Release: ``4.4.5`` +Release: ``4.5.0`` `Apache Livy <https://livy.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.livy`` provider. All classes for this pr are in ``airflow.providers.apache.livy`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.4.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.5.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-http`` ``>=5.1.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``aiohttp`` ``>=3.9.2`` @@ -81,4 +81,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.4.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-livy/4.5.0/changelog.html>`_.
providers/apache/livy/src/airflow/providers/apache/livy/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.4.5" +__version__ = "4.5.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/pig/docs/changelog.rst+16 −0 modified@@ -29,6 +29,22 @@ Changelog --------- +4.8.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 4.7.4 .....
providers/apache/pig/docs/index.rst+5 −5 modified@@ -75,7 +75,7 @@ apache-airflow-providers-apache-pig package `Apache Pig <https://pig.apache.org/>`__ -Release: 4.7.4 +Release: 4.8.0 Provider package ---------------- @@ -93,12 +93,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ================== ================== Cross provider package dependencies @@ -126,5 +126,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-apache-pig 4.7.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.7.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.7.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.7.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-pig 4.7.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.7.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.7.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.7.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-pig 4.8.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.8.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.8.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.8.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-pig 4.8.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.8.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.8.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pig-4.8.0-py3-none-any.whl.sha512>`__)
providers/apache/pig/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Pig <https://pig.apache.org/>`__ state: ready -source-date-epoch: 1763068537 +source-date-epoch: 1764109551 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.8.0 - 4.7.4 - 4.7.3 - 4.7.2
providers/apache/pig/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-pig" -version = "4.7.4" +version = "4.8.0" description = "Provider package apache-airflow-providers-apache-pig for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", ] # The optional dependencies should be modified in place in the generated file @@ -103,8 +103,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.7.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.7.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.8.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.8.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/pig/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-pig`` -Release: ``4.7.4`` +Release: ``4.8.0`` `Apache Pig <https://pig.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.pig`` provider. All classes for this pro are in ``airflow.providers.apache.pig`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.7.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.8.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ================== ================== Cross provider package dependencies @@ -85,4 +85,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.7.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-pig/4.8.0/changelog.html>`_.
providers/apache/pig/src/airflow/providers/apache/pig/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.7.4" +__version__ = "4.8.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/pinot/docs/changelog.rst+16 −0 modified@@ -29,6 +29,22 @@ Changelog --------- +4.9.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 4.8.4 .....
providers/apache/pinot/docs/index.rst+5 −5 modified@@ -70,7 +70,7 @@ apache-airflow-providers-apache-pinot package `Apache Pinot <https://pinot.apache.org/>`__ -Release: 4.8.4 +Release: 4.9.0 Provider package ---------------- @@ -88,12 +88,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``pinotdb`` ``>=5.1.0`` ======================================= ================== @@ -124,5 +124,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-apache-pinot 4.8.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.8.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.8.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.8.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-pinot 4.8.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.8.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.8.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.8.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-pinot 4.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.9.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-pinot 4.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.9.0-py3-none-any.whl.sha512>`__)
providers/apache/pinot/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Pinot <https://pinot.apache.org/>`__ state: ready -source-date-epoch: 1763068548 +source-date-epoch: 1764109559 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.9.0 - 4.8.4 - 4.8.3 - 4.8.2
providers/apache/pinot/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-pinot" -version = "4.8.4" +version = "4.9.0" description = "Provider package apache-airflow-providers-apache-pinot for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-sql>=1.26.0", "pinotdb>=5.1.0", ] @@ -107,8 +107,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.8.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.8.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.9.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.9.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/pinot/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-pinot`` -Release: ``4.8.4`` +Release: ``4.9.0`` `Apache Pinot <https://pinot.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.pinot`` provider. All classes for this p are in ``airflow.providers.apache.pinot`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.8.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.9.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``pinotdb`` ``>=5.1.0`` ======================================= ================== @@ -88,4 +88,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.8.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-pinot/4.9.0/changelog.html>`_.
providers/apache/pinot/src/airflow/providers/apache/pinot/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.8.4" +__version__ = "4.9.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/spark/docs/changelog.rst+16 −0 modified@@ -29,6 +29,22 @@ Changelog --------- +5.4.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 5.3.4 .....
providers/apache/spark/docs/index.rst+5 −5 modified@@ -77,7 +77,7 @@ apache-airflow-providers-apache-spark package `Apache Spark <https://spark.apache.org/>`__ -Release: 5.3.4 +Release: 5.4.0 Provider package ---------------- @@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``pyspark`` ``>=3.5.2`` ``grpcio-status`` ``>=1.59.0`` @@ -132,5 +132,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-apache-spark 5.3.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.3.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.3.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.3.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-spark 5.3.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.3.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.3.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.3.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-spark 5.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.4.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-spark 5.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-5.4.0-py3-none-any.whl.sha512>`__)
providers/apache/spark/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Apache Spark <https://spark.apache.org/>`__ state: ready -source-date-epoch: 1763068562 +source-date-epoch: 1764109566 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 5.4.0 - 5.3.4 - 5.3.3 - 5.3.2
providers/apache/spark/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-spark" -version = "5.3.4" +version = "5.4.0" description = "Provider package apache-airflow-providers-apache-spark for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "pyspark>=3.5.2", "grpcio-status>=1.59.0", @@ -111,8 +111,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.3.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.3.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.4.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.4.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/spark/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-spark`` -Release: ``5.3.4`` +Release: ``5.4.0`` `Apache Spark <https://spark.apache.org/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apache.spark`` provider. All classes for this p are in ``airflow.providers.apache.spark`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.3.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.4.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``pyspark`` ``>=3.5.2`` ``grpcio-status`` ``>=1.59.0`` @@ -90,4 +90,4 @@ Extra Dependencies =================== =================================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.3.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-spark/5.4.0/changelog.html>`_.
providers/apache/spark/src/airflow/providers/apache/spark/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "5.3.4" +__version__ = "5.4.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apache/tinkerpop/docs/changelog.rst+15 −0 modified@@ -18,6 +18,21 @@ ``apache-airflow-providers-apache-tinkerpop`` +1.1.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.0.5 .....
providers/apache/tinkerpop/docs/index.rst+5 −5 modified@@ -78,7 +78,7 @@ Apache TinkerPop is a graph computing framework for both graph databases (OLTP) systems (OLAP) and Gremlin is its graph traversal language. -Release: 1.0.5 +Release: 1.1.0 Provider package ---------------- @@ -96,12 +96,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``gremlinpython`` ``>=3.7.3`` ================== ================== @@ -130,5 +130,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-apache-tinkerpop 1.0.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.0.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.0.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.0.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-tinkerpop 1.0.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.0.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.0.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.0.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-tinkerpop 1.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-tinkerpop 1.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_tinkerpop-1.1.0-py3-none-any.whl.sha512>`__)
providers/apache/tinkerpop/provider.yaml+2 −1 modified@@ -22,9 +22,10 @@ description: | Apache TinkerPop is a graph computing framework for both graph databases (OLTP) and graph analytic systems (OLAP) and Gremlin is its graph traversal language. state: ready -source-date-epoch: 1763068580 +source-date-epoch: 1764109571 # note that these versions are maintained by the release manager - do not update them manually versions: + - 1.1.0 - 1.0.5 - 1.0.4 - 1.0.3
providers/apache/tinkerpop/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apache-tinkerpop" -version = "1.0.5" +version = "1.1.0" description = "Provider package apache-airflow-providers-apache-tinkerpop for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "gremlinpython>=3.7.3", ] @@ -104,8 +104,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.0.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.0.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.1.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.1.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apache/tinkerpop/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apache-tinkerpop`` -Release: ``1.0.5`` +Release: ``1.1.0`` `Apache TinkerPop <https://tinkerpop.apache.org/>`__. @@ -38,7 +38,7 @@ This is a provider package for ``apache.tinkerpop`` provider. All classes for th are in ``airflow.providers.apache.tinkerpop`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.0.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.1.0/>`_. Installation ------------ @@ -55,7 +55,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``gremlinpython`` ``>=3.7.3`` ================== ================== @@ -88,4 +88,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.0.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-tinkerpop/1.1.0/changelog.html>`_.
providers/apache/tinkerpop/src/airflow/providers/apache/tinkerpop/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.0.5" +__version__ = "1.1.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/apprise/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +2.3.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 2.2.0 .....
providers/apprise/docs/index.rst+6 −6 modified@@ -64,7 +64,7 @@ apache-airflow-providers-apprise package `Apprise <https://github.com/caronc/apprise>`__ -Release: 2.2.0 +Release: 2.3.0 Provider package ---------------- @@ -82,13 +82,13 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` -``apache-airflow-providers-common-compat`` ``>=1.8.0`` +``apache-airflow`` ``>=2.11.0`` +``apache-airflow-providers-common-compat`` ``>=1.9.0`` ``apprise`` ``>=1.8.0`` ========================================== ================== @@ -117,5 +117,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-apprise 2.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.2.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-apprise 2.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.2.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apprise 2.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apprise 2.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apprise-2.3.0-py3-none-any.whl.sha512>`__)
providers/apprise/provider.yaml+2 −1 modified@@ -24,13 +24,14 @@ description: | `Apprise <https://github.com/caronc/apprise>`__ state: ready -source-date-epoch: 1763068595 +source-date-epoch: 1764109576 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 2.3.0 - 2.2.0 - 2.1.3 - 2.1.2
providers/apprise/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-apprise" -version = "2.2.0" +version = "2.3.0" description = "Provider package apache-airflow-providers-apprise for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.9.0", "apprise>=1.8.0", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.2.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.2.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.3.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.3.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/apprise/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-apprise`` -Release: ``2.2.0`` +Release: ``2.3.0`` `Apprise <https://github.com/caronc/apprise>`__ @@ -36,7 +36,7 @@ This is a provider package for ``apprise`` provider. All classes for this provid are in ``airflow.providers.apprise`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.2.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.3.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.9.0`` ``apprise`` ``>=1.8.0`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.2.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apprise/2.3.0/changelog.html>`_.
providers/apprise/src/airflow/providers/apprise/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "2.2.0" +__version__ = "2.3.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/arangodb/docs/changelog.rst+15 −0 modified@@ -28,6 +28,21 @@ Changelog --------- +2.9.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 2.8.4 .....
providers/arangodb/docs/index.rst+5 −5 modified@@ -70,7 +70,7 @@ apache-airflow-providers-arangodb package `ArangoDB <https://www.arangodb.com/>`__ -Release: 2.8.4 +Release: 2.9.0 Provider package ---------------- @@ -88,12 +88,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``python-arango`` ``>=7.3.2`` ========================================== ================== @@ -123,5 +123,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-arangodb 2.8.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.8.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.8.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.8.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-arangodb 2.8.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.8.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.8.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.8.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-arangodb 2.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.9.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-arangodb 2.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_arangodb-2.9.0-py3-none-any.whl.sha512>`__)
providers/arangodb/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `ArangoDB <https://www.arangodb.com/>`__ state: ready -source-date-epoch: 1763068604 +source-date-epoch: 1764109581 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 2.9.0 - 2.8.4 - 2.8.3 - 2.8.2
providers/arangodb/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-arangodb" -version = "2.8.4" +version = "2.9.0" description = "Provider package apache-airflow-providers-arangodb for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "python-arango>=7.3.2", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.8.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.8.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.9.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.9.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/arangodb/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-arangodb`` -Release: ``2.8.4`` +Release: ``2.9.0`` `ArangoDB <https://www.arangodb.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``arangodb`` provider. All classes for this provi are in ``airflow.providers.arangodb`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.8.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.9.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``python-arango`` ``>=7.3.2`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.8.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-arangodb/2.9.0/changelog.html>`_.
providers/arangodb/src/airflow/providers/arangodb/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "2.8.4" +__version__ = "2.9.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/asana/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +2.11.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 2.10.4 ......
providers/asana/docs/index.rst+5 −5 modified@@ -77,7 +77,7 @@ apache-airflow-providers-asana package `Asana <https://asana.com/>`__ -Release: 2.10.4 +Release: 2.11.0 Provider package ---------------- @@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``asana`` ``>=5.0.0`` ========================================== ================== @@ -130,5 +130,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-asana 2.10.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.10.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.10.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.10.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-asana 2.10.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.10.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.10.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.10.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-asana 2.11.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.11.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.11.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.11.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-asana 2.11.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.11.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.11.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_asana-2.11.0-py3-none-any.whl.sha512>`__)
providers/asana/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Asana <https://asana.com/>`__ state: ready -source-date-epoch: 1763068626 +source-date-epoch: 1764109587 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 2.11.0 - 2.10.4 - 2.10.3 - 2.10.2
providers/asana/pyproject.toml+3 −3 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-asana" -version = "2.10.4" +version = "2.11.0" description = "Provider package apache-airflow-providers-asana for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-asana/2.10.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-asana/2.10.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-asana/2.11.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-asana/2.11.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/asana/README.rst+3 −3 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-asana`` -Release: ``2.10.4`` +Release: ``2.11.0`` `Asana <https://asana.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``asana`` provider. All classes for this provider are in ``airflow.providers.asana`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-asana/2.10.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-asana/2.11.0/>`_. Installation ------------ @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-asana/2.10.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-asana/2.11.0/changelog.html>`_.
providers/asana/src/airflow/providers/asana/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "2.10.4" +__version__ = "2.11.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/atlassian/jira/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +3.3.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.2.1 .....
providers/atlassian/jira/docs/index.rst+5 −5 modified@@ -69,7 +69,7 @@ apache-airflow-providers-atlassian-jira package `Atlassian Jira <https://www.atlassian.com/software/jira/>`__ -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -87,12 +87,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-http`` ``atlassian-python-api`` ``>3.41.10`` @@ -124,5 +124,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-atlassian-jira 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-atlassian-jira 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-atlassian-jira 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-atlassian-jira 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_atlassian_jira-3.3.0-py3-none-any.whl.sha512>`__)
providers/atlassian/jira/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Atlassian Jira <https://www.atlassian.com/software/jira/>`__ state: ready -source-date-epoch: 1763068642 +source-date-epoch: 1764109592 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.2
providers/atlassian/jira/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-atlassian-jira" -version = "3.2.1" +version = "3.3.0" description = "Provider package apache-airflow-providers-atlassian-jira for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-http", "atlassian-python-api>3.41.10", @@ -100,8 +100,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.2.1" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.2.1/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.3.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.3.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/atlassian/jira/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-atlassian-jira`` -Release: ``3.2.1`` +Release: ``3.3.0`` `Atlassian Jira <https://www.atlassian.com/software/jira/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``atlassian.jira`` provider. All classes for this are in ``airflow.providers.atlassian.jira`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.2.1/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.3.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-http`` ``atlassian-python-api`` ``>3.41.10`` @@ -80,4 +80,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.2.1/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-atlassian-jira/3.3.0/changelog.html>`_.
providers/atlassian/jira/src/airflow/providers/atlassian/jira/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.2.1" +__version__ = "3.3.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/celery/docs/changelog.rst+23 −0 modified@@ -27,6 +27,29 @@ Changelog --------- +3.14.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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>_. + +Features +~~~~~~~~ + +* ``Send executor integration info in workload (#57800)`` +* ``Add duplicate hostname check for Celery workers (#58591)`` + +Misc +~~~~ + +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.13.1 ......
providers/celery/docs/index.rst+5 −5 modified@@ -67,7 +67,7 @@ apache-airflow-providers-celery package `Celery <https://docs.celeryq.dev/en/stable/>`__ -Release: 3.13.1 +Release: 3.14.0 Provider package ---------------- @@ -85,12 +85,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``celery[redis]`` ``>=5.5.0,<6`` ``flower`` ``>=1.0.0`` @@ -122,5 +122,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-celery 3.13.1 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.13.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.13.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.13.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-celery 3.13.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.13.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.13.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.13.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-celery 3.14.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.14.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.14.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.14.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-celery 3.14.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.14.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.14.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.14.0-py3-none-any.whl.sha512>`__)
providers/celery/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Celery <https://docs.celeryq.dev/en/stable/>`__ state: ready -source-date-epoch: 1763068666 +source-date-epoch: 1764109769 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.14.0 - 3.13.1 - 3.13.0 - 3.12.4
providers/celery/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-celery" -version = "3.13.1" +version = "3.14.0" description = "Provider package apache-airflow-providers-celery for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", # The Celery is known to introduce problems when upgraded to a MAJOR version. Airflow Core # Uses Celery for CeleryExecutor, and we also know that Kubernetes Python client follows SemVer @@ -111,8 +111,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-celery/3.13.1" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-celery/3.13.1/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-celery/3.14.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-celery/3.14.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/celery/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-celery`` -Release: ``3.13.1`` +Release: ``3.14.0`` `Celery <https://docs.celeryq.dev/en/stable/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``celery`` provider. All classes for this provide are in ``airflow.providers.celery`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-celery/3.13.1/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-celery/3.14.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``celery[redis]`` ``>=5.5.0,<6`` ``flower`` ``>=1.0.0`` @@ -89,4 +89,4 @@ Extra Dependencies =================== =================================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-celery/3.13.1/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-celery/3.14.0/changelog.html>`_.
providers/celery/src/airflow/providers/celery/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.13.1" +__version__ = "3.14.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/cloudant/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +4.3.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.2.3 .....
providers/cloudant/docs/index.rst+5 −5 modified@@ -55,7 +55,7 @@ apache-airflow-providers-cloudant package `IBM Cloudant <https://www.ibm.com/cloud/cloudant>`__ -Release: 4.2.3 +Release: 4.3.0 Provider package ---------------- @@ -73,12 +73,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``ibmcloudant`` ``>=0.10.0`` ========================================== ================== @@ -108,5 +108,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-cloudant 4.2.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.2.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.2.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.2.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-cloudant 4.2.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.2.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.2.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.2.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-cloudant 4.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-cloudant 4.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cloudant-4.3.0-py3-none-any.whl.sha512>`__)
providers/cloudant/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `IBM Cloudant <https://www.ibm.com/cloud/cloudant>`__ state: ready -source-date-epoch: 1763068700 +source-date-epoch: 1764109776 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.3.0 - 4.2.3 - 4.2.2 - 4.2.1
providers/cloudant/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-cloudant" -version = "4.2.3" +version = "4.3.0" description = "Provider package apache-airflow-providers-cloudant for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "ibmcloudant>=0.10.0", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.2.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.2.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.3.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.3.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/cloudant/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-cloudant`` -Release: ``4.2.3`` +Release: ``4.3.0`` `IBM Cloudant <https://www.ibm.com/cloud/cloudant>`__ @@ -36,7 +36,7 @@ This is a provider package for ``cloudant`` provider. All classes for this provi are in ``airflow.providers.cloudant`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.2.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.3.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``ibmcloudant`` ``>=0.10.0`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.2.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-cloudant/4.3.0/changelog.html>`_.
providers/cloudant/src/airflow/providers/cloudant/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.2.3" +__version__ = "4.3.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/cncf/kubernetes/docs/changelog.rst+29 −0 modified@@ -28,6 +28,35 @@ Changelog --------- +10.11.0 +....... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 Account for job- prefix when truncating job names (#58391)`` +* ``KubernetesPodOperator: Rework of Kubernetes API retry behavior (#58397)`` +* ``Fix KuberetesPodTriggerer use correct parameter name to read pod logs. (#58489)`` +* ``KubernetesPodOperator pushes XCom on successful execution. (#58488)`` +* ``KubernetesPodOperator PodManager retries during create pod on too many requests error (#58033)`` +* ``Add JSON serialization for kubeconfig in AsyncKubernetesHook (#57169)`` + +Misc +~~~~ + +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + * ``Send executor integration info in workload (#57800)`` + * ``Fixes #57515 - Fix test_async_write_logs_should_execute_successfully test (#58276)`` + 10.10.0 .......
providers/cncf/kubernetes/docs/index.rst+5 −5 modified@@ -87,7 +87,7 @@ apache-airflow-providers-cncf-kubernetes package `Kubernetes <https://kubernetes.io/>`__ -Release: 10.10.0 +Release: 10.11.0 Provider package ---------------- @@ -105,13 +105,13 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ==================== PIP package Version required ========================================== ==================== ``aiofiles`` ``>=23.2.0`` -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``asgiref`` ``>=3.5.2`` ``cryptography`` ``>=41.0.0,<46.0.0`` @@ -144,5 +144,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-cncf-kubernetes 10.10.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.10.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.10.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.10.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-cncf-kubernetes 10.10.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.10.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.10.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.10.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-cncf-kubernetes 10.11.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.11.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.11.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.11.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-cncf-kubernetes 10.11.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.11.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.11.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cncf_kubernetes-10.11.0-py3-none-any.whl.sha512>`__)
providers/cncf/kubernetes/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Kubernetes <https://kubernetes.io/>`__ state: ready -source-date-epoch: 1763068815 +source-date-epoch: 1764109853 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 10.11.0 - 10.10.0 - 10.9.0 - 10.8.2
providers/cncf/kubernetes/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-cncf-kubernetes" -version = "10.10.0" +version = "10.11.0" description = "Provider package apache-airflow-providers-cncf-kubernetes for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -59,7 +59,7 @@ requires-python = ">=3.10" # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ "aiofiles>=23.2.0", - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "asgiref>=3.5.2", # TODO(potiuk): We should bump cryptography to >=46.0.0 when sqlalchemy>=2.0 is required @@ -112,8 +112,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.10.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.10.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.11.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.11.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/cncf/kubernetes/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-cncf-kubernetes`` -Release: ``10.10.0`` +Release: ``10.11.0`` `Kubernetes <https://kubernetes.io/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``cncf.kubernetes`` provider. All classes for thi are in ``airflow.providers.cncf.kubernetes`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.10.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.11.0/>`_. Installation ------------ @@ -54,7 +54,7 @@ Requirements PIP package Version required ========================================== ==================== ``aiofiles`` ``>=23.2.0`` -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``asgiref`` ``>=3.5.2`` ``cryptography`` ``>=41.0.0,<46.0.0`` @@ -82,4 +82,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.10.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/10.11.0/changelog.html>`_.
providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "10.10.0" +__version__ = "10.11.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/cohere/docs/changelog.rst+15 −0 modified@@ -20,6 +20,21 @@ Changelog --------- +1.6.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.5.4 .....
providers/cohere/docs/index.rst+5 −5 modified@@ -71,7 +71,7 @@ apache-airflow-providers-cohere package `Cohere <https://docs.cohere.com/docs>`__ -Release: 1.5.4 +Release: 1.6.0 Provider package ---------------- @@ -89,12 +89,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``cohere`` ``>=5.13.4`` ========================================== ================== @@ -124,5 +124,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-cohere 1.5.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.5.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.5.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.5.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-cohere 1.5.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.5.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.5.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.5.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-cohere 1.6.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.6.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-cohere 1.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_cohere-1.6.0-py3-none-any.whl.sha512>`__)
providers/cohere/provider.yaml+2 −1 modified@@ -24,13 +24,14 @@ description: | `Cohere <https://docs.cohere.com/docs>`__ state: ready -source-date-epoch: 1763068843 +source-date-epoch: 1764109865 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.6.0 - 1.5.4 - 1.5.3 - 1.5.2
providers/cohere/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-cohere" -version = "1.5.4" +version = "1.6.0" description = "Provider package apache-airflow-providers-cohere for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "cohere>=5.13.4", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.5.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.5.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.6.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.6.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/cohere/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-cohere`` -Release: ``1.5.4`` +Release: ``1.6.0`` `Cohere <https://docs.cohere.com/docs>`__ @@ -36,7 +36,7 @@ This is a provider package for ``cohere`` provider. All classes for this provide are in ``airflow.providers.cohere`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.5.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.6.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``cohere`` ``>=5.13.4`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.5.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-cohere/1.6.0/changelog.html>`_.
providers/cohere/src/airflow/providers/cohere/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.5.4" +__version__ = "1.6.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/common/compat/docs/changelog.rst+22 −0 modified@@ -25,6 +25,28 @@ Changelog --------- +1.10.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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>_. + +Features +~~~~~~~~ + +* ``Adjust compat HookLevelLineage for new add_extra method (#58057)`` + +Misc +~~~~ + +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 1.9.0 .....
providers/common/compat/docs/index.rst+5 −5 modified@@ -62,7 +62,7 @@ apache-airflow-providers-common-compat package Common Compatibility Provider - providing compatibility code for previous Airflow versions -Release: 1.9.0 +Release: 1.10.0 Provider package ---------------- @@ -80,12 +80,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``asgiref`` ``>=2.3.0`` ================== ================== @@ -114,5 +114,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-common-compat 1.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.9.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-common-compat 1.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.9.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-common-compat 1.10.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.10.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.10.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.10.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-common-compat 1.10.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.10.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.10.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_compat-1.10.0-py3-none-any.whl.sha512>`__)
providers/common/compat/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | Common Compatibility Provider - providing compatibility code for previous Airflow versions state: ready -source-date-epoch: 1763068892 +source-date-epoch: 1764109873 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.10.0 - 1.9.0 - 1.8.0 - 1.7.4
providers/common/compat/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-common-compat" -version = "1.9.0" +version = "1.10.0" description = "Provider package apache-airflow-providers-common-compat for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "asgiref>=2.3.0", ] @@ -107,8 +107,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.9.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.9.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/common/compat/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-common-compat`` -Release: ``1.9.0`` +Release: ``1.10.0`` Common Compatibility Provider - providing compatibility code for previous Airflow versions @@ -36,7 +36,7 @@ This is a provider package for ``common.compat`` provider. All classes for this are in ``airflow.providers.common.compat`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.9.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``asgiref`` ``>=2.3.0`` ================== ================== @@ -87,4 +87,4 @@ Extra Dependencies =============== ======================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.9.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.10.0/changelog.html>`_.
providers/common/compat/src/airflow/providers/common/compat/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.9.0" +__version__ = "1.10.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/common/io/docs/changelog.rst+16 −0 modified@@ -25,6 +25,22 @@ Changelog --------- +1.7.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 1.6.5 .....
providers/common/io/docs/index.rst+5 −5 modified@@ -79,7 +79,7 @@ apache-airflow-providers-common-io package Common IO Provider -Release: 1.6.5 +Release: 1.7.0 Provider package ---------------- @@ -97,12 +97,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ================== ================== Cross provider package dependencies @@ -131,5 +131,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-common-io 1.6.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.6.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.6.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.6.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-common-io 1.6.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.6.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.6.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.6.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-common-io 1.7.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.7.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.7.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.7.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-common-io 1.7.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.7.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.7.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_io-1.7.0-py3-none-any.whl.sha512>`__)
providers/common/io/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | Common IO Provider state: ready -source-date-epoch: 1763068916 +source-date-epoch: 1764109882 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.7.0 - 1.6.5 - 1.6.4 - 1.6.3
providers/common/io/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-common-io" -version = "1.6.5" +version = "1.7.0" description = "Provider package apache-airflow-providers-common-io for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", ] # The optional dependencies should be modified in place in the generated file @@ -107,8 +107,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.6.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.6.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.7.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.7.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/common/io/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-common-io`` -Release: ``1.6.5`` +Release: ``1.7.0`` Common IO Provider @@ -36,7 +36,7 @@ This is a provider package for ``common.io`` provider. All classes for this prov are in ``airflow.providers.common.io`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.6.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.7.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ================== ================== Cross provider package dependencies @@ -87,4 +87,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.6.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-io/1.7.0/changelog.html>`_.
providers/common/io/src/airflow/providers/common/io/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.6.5" +__version__ = "1.7.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/common/sql/docs/changelog.rst+17 −0 modified@@ -25,6 +25,23 @@ Changelog --------- +1.30.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 1.29.0 ......
providers/common/sql/docs/index.rst+5 −5 modified@@ -79,7 +79,7 @@ apache-airflow-providers-common-sql package `Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__ -Release: 1.29.0 +Release: 1.30.0 Provider package ---------------- @@ -97,12 +97,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``sqlparse`` ``>=0.5.1`` ``more-itertools`` ``>=9.0.0`` @@ -135,5 +135,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-common-sql 1.29.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.29.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.29.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.29.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-common-sql 1.29.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.29.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.29.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.29.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-common-sql 1.30.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.30.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.30.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.30.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-common-sql 1.30.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.30.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.30.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.30.0-py3-none-any.whl.sha512>`__)
providers/common/sql/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__ state: ready -source-date-epoch: 1763068967 +source-date-epoch: 1764109960 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.30.0 - 1.29.0 - 1.28.2 - 1.28.1
providers/common/sql/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-common-sql" -version = "1.29.0" +version = "1.30.0" description = "Provider package apache-airflow-providers-common-sql for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "sqlparse>=0.5.1", "more-itertools>=9.0.0", @@ -127,8 +127,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.29.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.29.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.30.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.30.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/common/sql/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-common-sql`` -Release: ``1.29.0`` +Release: ``1.30.0`` `Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__ @@ -36,7 +36,7 @@ This is a provider package for ``common.sql`` provider. All classes for this pro are in ``airflow.providers.common.sql`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.29.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.30.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``sqlparse`` ``>=0.5.1`` ``more-itertools`` ``>=9.0.0`` @@ -93,4 +93,4 @@ Extra Dependencies ================= ================================================================================================ The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.29.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-sql/1.30.0/changelog.html>`_.
providers/common/sql/src/airflow/providers/common/sql/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.29.0" +__version__ = "1.30.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/databricks/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +7.8.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 7.7.5 .....
providers/databricks/docs/index.rst+5 −5 modified@@ -78,7 +78,7 @@ apache-airflow-providers-databricks package `Databricks <https://databricks.com/>`__ -Release: 7.7.5 +Release: 7.8.0 Provider package ---------------- @@ -96,12 +96,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ====================================== PIP package Version required ========================================== ====================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``requests`` ``>=2.32.0,<3`` @@ -142,5 +142,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-databricks 7.7.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.7.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.7.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.7.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-databricks 7.7.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.7.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.7.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.7.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-databricks 7.8.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.8.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.8.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.8.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-databricks 7.8.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.8.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.8.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-7.8.0-py3-none-any.whl.sha512>`__)
providers/databricks/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Databricks <https://databricks.com/>`__ state: ready -source-date-epoch: 1763069001 +source-date-epoch: 1764109970 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 7.8.0 - 7.7.5 - 7.7.4 - 7.7.3
providers/databricks/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-databricks" -version = "7.7.5" +version = "7.8.0" description = "Provider package apache-airflow-providers-databricks for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-common-sql>=1.27.0", "requests>=2.32.0,<3", @@ -134,8 +134,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.7.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.7.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.8.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.8.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/databricks/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-databricks`` -Release: ``7.7.5`` +Release: ``7.8.0`` `Databricks <https://databricks.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``databricks`` provider. All classes for this pro are in ``airflow.providers.databricks`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.7.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.8.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ====================================== PIP package Version required ========================================== ====================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``requests`` ``>=2.32.0,<3`` @@ -102,4 +102,4 @@ Extra Dependencies ================== ================================================================ The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.7.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-databricks/7.8.0/changelog.html>`_.
providers/databricks/src/airflow/providers/databricks/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "7.7.5" +__version__ = "7.8.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/datadog/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +3.10.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.9.3 .....
providers/datadog/docs/index.rst+5 −5 modified@@ -68,7 +68,7 @@ apache-airflow-providers-datadog package `Datadog <https://www.datadoghq.com/>`__ -Release: 3.9.3 +Release: 3.10.0 Provider package ---------------- @@ -86,12 +86,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``datadog`` ``>=0.50.0`` ========================================== ================== @@ -121,5 +121,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-datadog 3.9.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.9.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.9.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.9.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-datadog 3.9.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.9.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.9.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.9.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-datadog 3.10.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.10.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.10.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.10.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-datadog 3.10.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.10.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.10.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_datadog-3.10.0-py3-none-any.whl.sha512>`__)
providers/datadog/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Datadog <https://www.datadoghq.com/>`__ state: ready -source-date-epoch: 1763069068 +source-date-epoch: 1764109982 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.10.0 - 3.9.3 - 3.9.2 - 3.9.1
providers/datadog/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-datadog" -version = "3.9.3" +version = "3.10.0" description = "Provider package apache-airflow-providers-datadog for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "datadog>=0.50.0", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.9.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.9.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.10.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.10.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/datadog/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-datadog`` -Release: ``3.9.3`` +Release: ``3.10.0`` `Datadog <https://www.datadoghq.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``datadog`` provider. All classes for this provid are in ``airflow.providers.datadog`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.9.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.10.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``datadog`` ``>=0.50.0`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.9.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-datadog/3.10.0/changelog.html>`_.
providers/datadog/src/airflow/providers/datadog/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.9.3" +__version__ = "3.10.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/dbt/cloud/docs/changelog.rst+17 −0 modified@@ -28,6 +28,23 @@ Changelog --------- +4.6.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + * ``Bump min version of openlineage libraries to 1.40.0 to fix compat issues (#58302)`` + 4.5.0 .....
providers/dbt/cloud/docs/index.rst+5 −5 modified@@ -81,7 +81,7 @@ apache-airflow-providers-dbt-cloud package `dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__ -Release: 4.5.0 +Release: 4.6.0 Provider package ---------------- @@ -99,12 +99,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-http`` ``asgiref`` ``>=2.3.0`` @@ -139,5 +139,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-dbt-cloud 4.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.5.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-dbt-cloud 4.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.5.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-dbt-cloud 4.6.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.6.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-dbt-cloud 4.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-4.6.0-py3-none-any.whl.sha512>`__)
providers/dbt/cloud/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__ state: ready -source-date-epoch: 1763069126 +source-date-epoch: 1764109988 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.6.0 - 4.5.0 - 4.4.4 - 4.4.3
providers/dbt/cloud/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-dbt-cloud" -version = "4.5.0" +version = "4.6.0" description = "Provider package apache-airflow-providers-dbt-cloud for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-http", "asgiref>=2.3.0", @@ -111,8 +111,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.5.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.5.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/dbt/cloud/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-dbt-cloud`` -Release: ``4.5.0`` +Release: ``4.6.0`` `dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov are in ``airflow.providers.dbt.cloud`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.5.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-http`` ``asgiref`` ``>=2.3.0`` @@ -92,4 +92,4 @@ Extra Dependencies =============== =============================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.5.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.0/changelog.html>`_.
providers/dbt/cloud/src/airflow/providers/dbt/cloud/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.5.0" +__version__ = "4.6.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/dingding/docs/changelog.rst+16 −0 modified@@ -28,6 +28,22 @@ Changelog --------- +3.9.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.8.3 .....
providers/dingding/docs/index.rst+5 −5 modified@@ -76,7 +76,7 @@ apache-airflow-providers-dingding package `DingTalk <https://www.dingtalk.com/>`__ -Release: 3.8.3 +Release: 3.9.0 Provider package ---------------- @@ -94,12 +94,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-http`` ========================================== ================== @@ -130,5 +130,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-dingding 3.8.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.8.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.8.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.8.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-dingding 3.8.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.8.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.8.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.8.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-dingding 3.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.9.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-dingding 3.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.9.0-py3-none-any.whl.sha512>`__)
providers/dingding/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `DingTalk <https://www.dingtalk.com/>`__ state: ready -source-date-epoch: 1763069159 +source-date-epoch: 1764110000 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.9.0 - 3.8.3 - 3.8.2 - 3.8.1
providers/dingding/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-dingding" -version = "3.8.3" +version = "3.9.0" description = "Provider package apache-airflow-providers-dingding for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-http", ] @@ -99,8 +99,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.8.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.8.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.9.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.9.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/dingding/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-dingding`` -Release: ``3.8.3`` +Release: ``3.9.0`` `DingTalk <https://www.dingtalk.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``dingding`` provider. All classes for this provi are in ``airflow.providers.dingding`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.8.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.9.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-http`` ========================================== ================== @@ -79,4 +79,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.8.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dingding/3.9.0/changelog.html>`_.
providers/dingding/src/airflow/providers/dingding/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.8.3" +__version__ = "3.9.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/discord/docs/changelog.rst+20 −0 modified@@ -27,6 +27,26 @@ Changelog --------- +3.11.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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>_. + +Features +~~~~~~~~ + +* ``Add async discord notifier (#56911)`` + +Misc +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.10.3 ......
providers/discord/docs/index.rst+6 −6 modified@@ -62,7 +62,7 @@ apache-airflow-providers-discord package `Discord <https://discord.com/>`__ -Release: 3.10.3 +Release: 3.11.0 Provider package ---------------- @@ -80,13 +80,13 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` -``apache-airflow-providers-common-compat`` ``>=1.8.0`` +``apache-airflow`` ``>=2.11.0`` +``apache-airflow-providers-common-compat`` ``>=1.10.0`` ``apache-airflow-providers-http`` ========================================== ================== @@ -116,5 +116,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-discord 3.10.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.10.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.10.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.10.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-discord 3.10.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.10.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.10.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.10.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-discord 3.11.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.11.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.11.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.11.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-discord 3.11.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.11.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.11.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.11.0-py3-none-any.whl.sha512>`__)
providers/discord/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Discord <https://discord.com/>`__ state: ready -source-date-epoch: 1763069188 +source-date-epoch: 1764110013 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.11.0 - 3.10.3 - 3.10.2 - 3.10.1
providers/discord/pyproject.toml+5 −5 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-discord" -version = "3.10.3" +version = "3.11.0" description = "Provider package apache-airflow-providers-discord for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,8 +58,8 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", - "apache-airflow-providers-common-compat>=1.8.0", # use next version + "apache-airflow>=2.11.0", + "apache-airflow-providers-common-compat>=1.10.0", "apache-airflow-providers-http", ] @@ -99,8 +99,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-discord/3.10.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-discord/3.10.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-discord/3.11.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-discord/3.11.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/discord/README.rst+5 −5 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-discord`` -Release: ``3.10.3`` +Release: ``3.11.0`` `Discord <https://discord.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``discord`` provider. All classes for this provid are in ``airflow.providers.discord`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-discord/3.10.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-discord/3.11.0/>`_. Installation ------------ @@ -53,8 +53,8 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` -``apache-airflow-providers-common-compat`` ``>=1.8.0`` +``apache-airflow`` ``>=2.11.0`` +``apache-airflow-providers-common-compat`` ``>=1.10.0`` ``apache-airflow-providers-http`` ========================================== ================== @@ -79,4 +79,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-discord/3.10.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-discord/3.11.0/changelog.html>`_.
providers/discord/src/airflow/providers/discord/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.10.3" +__version__ = "3.11.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/docker/docs/changelog.rst+17 −0 modified@@ -28,6 +28,23 @@ Changelog --------- +4.5.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 4.4.5 .....
providers/docker/docs/index.rst+5 −5 modified@@ -70,7 +70,7 @@ apache-airflow-providers-docker package `Docker <https://www.docker.com/>`__ -Release: 4.4.5 +Release: 4.5.0 Provider package ---------------- @@ -88,12 +88,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``docker`` ``>=7.1.0`` ``python-dotenv`` ``>=0.21.0`` @@ -124,5 +124,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-docker 4.4.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.4.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.4.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.4.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-docker 4.4.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.4.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.4.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.4.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-docker 4.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.5.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-docker 4.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_docker-4.5.0-py3-none-any.whl.sha512>`__)
providers/docker/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Docker <https://www.docker.com/>`__ state: ready -source-date-epoch: 1763069218 +source-date-epoch: 1764110022 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.5.0 - 4.4.5 - 4.4.4 - 4.4.3
providers/docker/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-docker" -version = "4.4.5" +version = "4.5.0" description = "Provider package apache-airflow-providers-docker for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "docker>=7.1.0", "python-dotenv>=0.21.0", @@ -106,8 +106,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-docker/4.4.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-docker/4.4.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-docker/4.5.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-docker/4.5.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/docker/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-docker`` -Release: ``4.4.5`` +Release: ``4.5.0`` `Docker <https://www.docker.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``docker`` provider. All classes for this provide are in ``airflow.providers.docker`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-docker/4.4.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-docker/4.5.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``docker`` ``>=7.1.0`` ``python-dotenv`` ``>=0.21.0`` @@ -88,4 +88,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-docker/4.4.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-docker/4.5.0/changelog.html>`_.
providers/docker/src/airflow/providers/docker/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.4.5" +__version__ = "4.5.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/edge3/docs/changelog.rst+33 −0 modified@@ -27,6 +27,39 @@ Changelog --------- +1.6.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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>_. + +Features +~~~~~~~~ + +* ``Send executor integration info in workload (#57800)`` +* ``Prevent duplicate edge workers unless existing worker is offline or unkown (#58586)`` +* ``Add multi-select state filter to worker page (#58505)`` +* ``Add queue name filtering to Edge Worker tab (#58416)`` +* ``Add search functionality to Edge Worker tab (#58331)`` + +Bug Fixes +~~~~~~~~~ + +* ``Use 'before_sleep_log' in retries of Edge Worker (#58480)`` + +Misc +~~~~ + +* ``Bump the edge-ui-package-updates group across 1 directory with 8 updates (#58780)`` +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` +* ``Upgrade Edge TS dependencies (#58413)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Remove SDK reference for NOTSET in Airflow Core (#58258)`` + 1.5.0 .....
providers/edge3/docs/index.rst+5 −5 modified@@ -90,7 +90,7 @@ Additional REST API endpoints are provided to distribute tasks and manage the ed are provided by the API server. -Release: 1.5.0 +Release: 1.6.0 Provider package ---------------- @@ -108,12 +108,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ==================== PIP package Version required ========================================== ==================== -``apache-airflow`` ``>=2.10.0,!=3.1.0`` +``apache-airflow`` ``>=2.11.0,!=3.1.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``pydantic`` ``>=2.11.0`` ``retryhttp`` ``>=1.2.0,!=1.3.0`` @@ -144,5 +144,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-edge3 1.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.5.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-edge3 1.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.5.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-edge3 1.6.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.6.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-edge3 1.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_edge3-1.6.0-py3-none-any.whl.sha512>`__)
providers/edge3/provider.yaml+2 −1 modified@@ -33,13 +33,14 @@ description: | are provided by the API server. state: ready -source-date-epoch: 1763069258 +source-date-epoch: 1764110065 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 1.6.0 - 1.5.0 - 1.4.1 - 1.4.0
providers/edge3/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-edge3" -version = "1.5.0" +version = "1.6.0" description = "Provider package apache-airflow-providers-edge3 for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0,!=3.1.0", + "apache-airflow>=2.11.0,!=3.1.0", "apache-airflow-providers-common-compat>=1.8.0", "pydantic>=2.11.0", "retryhttp>=1.2.0,!=1.3.0", @@ -99,8 +99,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.6.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.6.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/edge3/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-edge3`` -Release: ``1.5.0`` +Release: ``1.6.0`` Handle edge workers on remote sites via HTTP(s) connection and orchestrates work over distributed sites. @@ -48,7 +48,7 @@ This is a provider package for ``edge3`` provider. All classes for this provider are in ``airflow.providers.edge3`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.6.0/>`_. Installation ------------ @@ -65,7 +65,7 @@ Requirements ========================================== ==================== PIP package Version required ========================================== ==================== -``apache-airflow`` ``>=2.10.0,!=3.1.0`` +``apache-airflow`` ``>=2.11.0,!=3.1.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``pydantic`` ``>=2.11.0`` ``retryhttp`` ``>=1.2.0,!=1.3.0`` @@ -91,4 +91,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.5.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.6.0/changelog.html>`_.
providers/edge3/src/airflow/providers/edge3/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "1.5.0" +__version__ = "1.6.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/elasticsearch/docs/changelog.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +6.4.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 6.3.5 .....
providers/elasticsearch/docs/index.rst+5 −5 modified@@ -79,7 +79,7 @@ apache-airflow-providers-elasticsearch package `Elasticsearch <https://www.elastic.co/elasticsearch>`__ -Release: 6.3.5 +Release: 6.4.0 Provider package ---------------- @@ -97,12 +97,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``elasticsearch`` ``>=8.10,<9`` @@ -134,5 +134,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-elasticsearch 6.3.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.3.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.3.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.3.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-elasticsearch 6.3.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.3.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.3.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.3.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-elasticsearch 6.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.4.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-elasticsearch 6.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-6.4.0-py3-none-any.whl.sha512>`__)
providers/elasticsearch/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Elasticsearch <https://www.elastic.co/elasticsearch>`__ state: ready -source-date-epoch: 1763069268 +source-date-epoch: 1764110073 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 6.4.0 - 6.3.5 - 6.3.4 - 6.3.3
providers/elasticsearch/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-elasticsearch" -version = "6.3.5" +version = "6.4.0" description = "Provider package apache-airflow-providers-elasticsearch for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-common-sql>=1.27.0", "elasticsearch>=8.10,<9", @@ -101,8 +101,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.3.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.3.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/elasticsearch/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-elasticsearch`` -Release: ``6.3.5`` +Release: ``6.4.0`` `Elasticsearch <https://www.elastic.co/elasticsearch>`__ @@ -36,7 +36,7 @@ This is a provider package for ``elasticsearch`` provider. All classes for this are in ``airflow.providers.elasticsearch`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.3.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``elasticsearch`` ``>=8.10,<9`` @@ -80,4 +80,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.3.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/changelog.html>`_.
providers/elasticsearch/src/airflow/providers/elasticsearch/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "6.3.5" +__version__ = "6.4.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/exasol/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +4.9.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.8.4 .....
providers/exasol/docs/index.rst+5 −5 modified@@ -75,7 +75,7 @@ apache-airflow-providers-exasol package `Exasol <https://www.exasol.com/>`__ -Release: 4.8.4 +Release: 4.9.0 Provider package ---------------- @@ -93,12 +93,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ======================================= ===================================== PIP package Version required ======================================= ===================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``pyexasol`` ``>=0.26.0`` ``pandas`` ``>=2.1.2; python_version < "3.13"`` @@ -130,5 +130,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-exasol 4.8.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.8.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.8.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.8.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-exasol 4.8.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.8.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.8.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.8.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-exasol 4.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.9.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-exasol 4.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.9.0-py3-none-any.whl.sha512>`__)
providers/exasol/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Exasol <https://www.exasol.com/>`__ state: ready -source-date-epoch: 1763069292 +source-date-epoch: 1764110080 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.9.0 - 4.8.4 - 4.8.3 - 4.8.2
providers/exasol/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-exasol" -version = "4.8.4" +version = "4.9.0" description = "Provider package apache-airflow-providers-exasol for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-sql>=1.26.0", "pyexasol>=0.26.0", 'pandas>=2.1.2; python_version <"3.13"', @@ -100,8 +100,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.8.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.8.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/exasol/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-exasol`` -Release: ``4.8.4`` +Release: ``4.9.0`` `Exasol <https://www.exasol.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``exasol`` provider. All classes for this provide are in ``airflow.providers.exasol`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.8.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ======================================= ===================================== PIP package Version required ======================================= ===================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-sql`` ``>=1.26.0`` ``pyexasol`` ``>=0.26.0`` ``pandas`` ``>=2.1.2; python_version < "3.13"`` @@ -80,4 +80,4 @@ Dependent package ============================================================================================================ ============== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.8.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.9.0/changelog.html>`_.
providers/exasol/src/airflow/providers/exasol/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.8.4" +__version__ = "4.9.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/fab/docs/changelog.rst+17 −0 modified@@ -20,6 +20,23 @@ Changelog --------- +3.0.3 +..... + +Misc +~~~~ + +* ``Bump stylelint from 16.25.0 to 16.26.0 in /providers/fab/src/airflow/providers/fab/www in the fab-ui-package-updates group across 1 directory (#58678)`` +* ``Remove deprecation warning in Fab provider (#58686)`` +* ``Fix mypy errors in providers (#58644)`` +* ``Bump webpack from 5.102.1 to 5.103.0 in /providers/fab/src/airflow/providers/fab/www in the fab-ui-package-updates group across 1 directory (#58634)`` +* ``Upgrade js-yaml to 4.1.1 in FAB (#58501)`` +* ``Migrate FAB PATCH /roles/{name} to FastAPI (#58023)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.0.2 .....
providers/fab/docs/index.rst+3 −3 modified@@ -84,7 +84,7 @@ apache-airflow-providers-fab package `Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__ -Release: 3.0.2 +Release: 3.0.3 Provider package ---------------- @@ -150,5 +150,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-fab 3.0.2 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-fab 3.0.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-fab 3.0.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.3.tar.gz.sha512>`__) +* `The apache-airflow-providers-fab 3.0.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_fab-3.0.3-py3-none-any.whl.sha512>`__)
providers/fab/provider.yaml+2 −1 modified@@ -28,13 +28,14 @@ description: | # For providers until we think it should be released. state: ready -source-date-epoch: 1763069463 +source-date-epoch: 1764110130 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.0.3 - 3.0.2 - 3.0.1 - 3.0.0
providers/fab/pyproject.toml+3 −3 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-fab" -version = "3.0.2" +version = "3.0.3" description = "Provider package apache-airflow-providers-fab for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -134,8 +134,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.2" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.2/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.3" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.3/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/fab/README.rst+3 −3 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-fab`` -Release: ``3.0.2`` +Release: ``3.0.3`` `Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``fab`` provider. All classes for this provider p are in ``airflow.providers.fab`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.2/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.3/>`_. Installation ------------ @@ -100,4 +100,4 @@ Extra Dependencies ============ ============================================ The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.2/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/3.0.3/changelog.html>`_.
providers/fab/src/airflow/providers/fab/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.0.2" +__version__ = "3.0.3" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "3.0.2"
providers/facebook/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +3.9.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.8.3 .....
providers/facebook/docs/index.rst+5 −5 modified@@ -61,7 +61,7 @@ apache-airflow-providers-facebook package `Facebook Ads <https://www.facebook.com/about/ads>`__ -Release: 3.8.3 +Release: 3.9.0 Provider package ---------------- @@ -79,12 +79,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``facebook-business`` ``>=22.0.0`` ========================================== ================== @@ -114,5 +114,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-facebook 3.8.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.8.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.8.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.8.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-facebook 3.8.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.8.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.8.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.8.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-facebook 3.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.9.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-facebook 3.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_facebook-3.9.0-py3-none-any.whl.sha512>`__)
providers/facebook/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Facebook Ads <https://www.facebook.com/about/ads>`__ state: ready -source-date-epoch: 1763069492 +source-date-epoch: 1764110146 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.9.0 - 3.8.3 - 3.8.2 - 3.8.1
providers/facebook/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-facebook" -version = "3.8.3" +version = "3.9.0" description = "Provider package apache-airflow-providers-facebook for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "facebook-business>=22.0.0", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.8.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.8.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.9.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.9.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/facebook/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-facebook`` -Release: ``3.8.3`` +Release: ``3.9.0`` `Facebook Ads <https://www.facebook.com/about/ads>`__ @@ -36,7 +36,7 @@ This is a provider package for ``facebook`` provider. All classes for this provi are in ``airflow.providers.facebook`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.8.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.9.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``facebook-business`` ``>=22.0.0`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.8.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-facebook/3.9.0/changelog.html>`_.
providers/facebook/src/airflow/providers/facebook/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.8.3" +__version__ = "3.9.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/ftp/docs/changelog.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +3.14.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 3.13.3 ......
providers/ftp/docs/index.rst+5 −5 modified@@ -84,7 +84,7 @@ apache-airflow-providers-ftp package `File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__ -Release: 3.13.3 +Release: 3.14.0 Provider package ---------------- @@ -102,12 +102,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ========================================== ================== @@ -137,5 +137,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-ftp 3.13.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.13.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.13.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.13.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-ftp 3.13.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.13.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.13.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.13.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-ftp 3.14.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.14.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.14.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.14.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-ftp 3.14.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.14.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.14.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.14.0-py3-none-any.whl.sha512>`__)
providers/ftp/provider.yaml+2 −1 modified@@ -22,8 +22,9 @@ description: | `File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__ state: ready -source-date-epoch: 1763069509 +source-date-epoch: 1764110152 versions: + - 3.14.0 - 3.13.3 - 3.13.2 - 3.13.1
providers/ftp/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-ftp" -version = "3.13.3" +version = "3.14.0" description = "Provider package apache-airflow-providers-ftp for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", ] @@ -108,8 +108,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.13.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.13.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.14.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.14.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/ftp/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-ftp`` -Release: ``3.13.3`` +Release: ``3.14.0`` `File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__ @@ -36,7 +36,7 @@ This is a provider package for ``ftp`` provider. All classes for this provider p are in ``airflow.providers.ftp`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.13.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.14.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ========================================== ================== @@ -88,4 +88,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.13.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-ftp/3.14.0/changelog.html>`_.
providers/ftp/src/airflow/providers/ftp/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.13.3" +__version__ = "3.14.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/github/docs/changelog.rst+21 −0 modified@@ -29,6 +29,27 @@ Changelog --------- +2.10.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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>_. + +Features +~~~~~~~~ + +* ``Add Support for GitHub App Installation Authentication in 'GithubHook' (#54812)`` + +Misc +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 2.9.4 .....
providers/github/docs/index.rst+5 −5 modified@@ -77,7 +77,7 @@ apache-airflow-providers-github package `GitHub <https://www.github.com/>`__ -Release: 2.9.4 +Release: 2.10.0 Provider package ---------------- @@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``PyGithub`` ``>=2.1.1`` ========================================== ================== @@ -130,5 +130,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-github 2.9.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.9.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.9.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.9.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-github 2.9.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.9.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.9.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.9.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-github 2.10.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.10.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.10.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.10.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-github 2.10.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.10.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.10.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_github-2.10.0-py3-none-any.whl.sha512>`__)
providers/github/provider.yaml+2 −1 modified@@ -23,12 +23,13 @@ description: | `GitHub <https://www.github.com/>`__ state: ready -source-date-epoch: 1763069564 +source-date-epoch: 1764110187 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 2.10.0 - 2.9.4 - 2.9.3 - 2.9.2
providers/github/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-github" -version = "2.9.4" +version = "2.10.0" description = "Provider package apache-airflow-providers-github for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "PyGithub>=2.1.1", ] @@ -98,8 +98,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-github/2.9.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-github/2.9.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-github/2.10.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-github/2.10.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/github/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-github`` -Release: ``2.9.4`` +Release: ``2.10.0`` `GitHub <https://www.github.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``github`` provider. All classes for this provide are in ``airflow.providers.github`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-github/2.9.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-github/2.10.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``PyGithub`` ``>=2.1.1`` ========================================== ================== @@ -78,4 +78,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-github/2.9.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-github/2.10.0/changelog.html>`_.
providers/github/src/airflow/providers/github/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "2.9.4" +__version__ = "2.10.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/google/docs/changelog.rst+34 −0 modified@@ -51,6 +51,40 @@ Changelog * ``Remove CloudAutoMLHook use airflow.providers.google.cloud.hooks.vertex_ai.auto_ml.AutoMLHook, airflow.providers.google.cloud.hooks.translate.TranslateHook instead`` +19.1.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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>_. + +Features +~~~~~~~~ + +* ``Create CloudComposerExternalTaskSensor for Cloud Composer service (#57971)`` +* ``Add gcp_conn_id as template field (#58298)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix generate_if for BQ if the run_type=scheduled (#58035)`` +* ``Fix incorrect default docstring for gke_finish_action in GKEStartPodOperator (#58349)`` +* ``Fix Google provider to handle False boolean values in connection extras (#58348)`` + +Misc +~~~~ + +* ``Move out some exceptions to TaskSDK (#54505)`` +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` +* ``Remove SDK reference for NOTSET in Airflow Core (#58258)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + * ``Update create_airflow_connection helper method for making able to create Connection in Composer environment (#57804)`` + * ``Fix race condition in test_execute_wildcard for LocalFilesystemToGCSOperator (#58613)`` + * ``Fix KuberetesPodTriggerer use correct parameter name to read pod logs. (#58489)`` + 19.0.0 ......
providers/google/docs/index.rst+6 −5 modified@@ -88,7 +88,7 @@ Google services including: - `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite) -Release: 19.0.0 +Release: 19.1.0 Provider package ---------------- @@ -106,12 +106,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ====================================== PIP package Version required ========================================== ====================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``asgiref`` ``>=3.5.2`` @@ -219,6 +219,7 @@ Dependent package `apache-airflow-providers-salesforce <https://airflow.apache.org/docs/apache-airflow-providers-salesforce>`_ ``salesforce`` `apache-airflow-providers-sftp <https://airflow.apache.org/docs/apache-airflow-providers-sftp>`_ ``sftp`` `apache-airflow-providers-ssh <https://airflow.apache.org/docs/apache-airflow-providers-ssh>`_ ``ssh`` +`apache-airflow-providers-standard <https://airflow.apache.org/docs/apache-airflow-providers-standard>`_ ``standard`` `apache-airflow-providers-trino <https://airflow.apache.org/docs/apache-airflow-providers-trino>`_ ``trino`` ======================================================================================================================== ==================== @@ -228,5 +229,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-google 19.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.0.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-google 19.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.0.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-google 19.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-google 19.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-19.1.0-py3-none-any.whl.sha512>`__)
providers/google/provider.yaml+2 −1 modified@@ -29,12 +29,13 @@ description: | - `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite) state: ready -source-date-epoch: 1763069646 +source-date-epoch: 1764110222 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 19.1.0 - 19.0.0 - 18.1.0 - 18.0.0
providers/google/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-google" -version = "19.0.0" +version = "19.1.0" description = "Provider package apache-airflow-providers-google for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-common-sql>=1.27.0", "asgiref>=3.5.2", @@ -264,8 +264,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-google/19.0.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-google/19.0.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-google/19.1.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-google/19.1.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/google/README.rst+6 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-google`` -Release: ``19.0.0`` +Release: ``19.1.0`` Google services including: @@ -43,7 +43,7 @@ This is a provider package for ``google`` provider. All classes for this provide are in ``airflow.providers.google`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-google/19.0.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-google/19.1.0/>`_. Installation ------------ @@ -60,7 +60,7 @@ Requirements ========================================== ====================================== PIP package Version required ========================================== ====================================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.27.0`` ``asgiref`` ``>=3.5.2`` @@ -168,6 +168,7 @@ Dependent package `apache-airflow-providers-salesforce <https://airflow.apache.org/docs/apache-airflow-providers-salesforce>`_ ``salesforce`` `apache-airflow-providers-sftp <https://airflow.apache.org/docs/apache-airflow-providers-sftp>`_ ``sftp`` `apache-airflow-providers-ssh <https://airflow.apache.org/docs/apache-airflow-providers-ssh>`_ ``ssh`` +`apache-airflow-providers-standard <https://airflow.apache.org/docs/apache-airflow-providers-standard>`_ ``standard`` `apache-airflow-providers-trino <https://airflow.apache.org/docs/apache-airflow-providers-trino>`_ ``trino`` ======================================================================================================================== ==================== @@ -196,7 +197,8 @@ Extra Dependencies ``ssh`` ``apache-airflow-providers-ssh`` ``trino`` ``apache-airflow-providers-trino`` ``http`` ``apache-airflow-providers-http`` +``standard`` ``apache-airflow-providers-standard`` ==================== ========================================================================================================================================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-google/19.0.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-google/19.1.0/changelog.html>`_.
providers/google/src/airflow/providers/google/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "19.0.0" +__version__ = "19.1.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/grpc/docs/changelog.rst+15 −0 modified@@ -27,6 +27,21 @@ Changelog --------- +3.9.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.8.3 .....
providers/grpc/docs/index.rst+5 −5 modified@@ -68,7 +68,7 @@ apache-airflow-providers-grpc package `gRPC <https://grpc.io/>`__ -Release: 3.8.3 +Release: 3.9.0 Provider package ---------------- @@ -86,12 +86,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``google-auth`` ``>=1.0.0,<3.0.0`` ``google-auth-httplib2`` ``>=0.0.1`` @@ -123,5 +123,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-grpc 3.8.3 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.8.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.8.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.8.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-grpc 3.8.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.8.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.8.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.8.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-grpc 3.9.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.9.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.9.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.9.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-grpc 3.9.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.9.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.9.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_grpc-3.9.0-py3-none-any.whl.sha512>`__)
providers/grpc/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `gRPC <https://grpc.io/>`__ state: ready -source-date-epoch: 1763069674 +source-date-epoch: 1764110231 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.9.0 - 3.8.3 - 3.8.2 - 3.8.1
providers/grpc/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-grpc" -version = "3.8.3" +version = "3.9.0" description = "Provider package apache-airflow-providers-grpc for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", # Google has very clear rules on what dependencies should be used. All the limits below # follow strict guidelines of Google Libraries as quoted here: @@ -105,8 +105,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.8.3" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.8.3/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.9.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.9.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/grpc/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-grpc`` -Release: ``3.8.3`` +Release: ``3.9.0`` `gRPC <https://grpc.io/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``grpc`` provider. All classes for this provider are in ``airflow.providers.grpc`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.8.3/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.9.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``google-auth`` ``>=1.0.0,<3.0.0`` ``google-auth-httplib2`` ``>=0.0.1`` @@ -80,4 +80,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.8.3/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-grpc/3.9.0/changelog.html>`_.
providers/grpc/src/airflow/providers/grpc/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.8.3" +__version__ = "3.9.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/hashicorp/docs/changelog.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +4.4.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 4.3.4 .....
providers/hashicorp/docs/index.rst+5 −5 modified@@ -69,7 +69,7 @@ apache-airflow-providers-hashicorp package Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__ -Release: 4.3.4 +Release: 4.4.0 Provider package ---------------- @@ -87,12 +87,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``hvac`` ``>=1.1.0`` ========================================== ================== @@ -123,5 +123,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-hashicorp 4.3.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-hashicorp 4.3.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.3.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-hashicorp 4.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.4.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-hashicorp 4.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-4.4.0-py3-none-any.whl.sha512>`__)
providers/hashicorp/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__ state: ready -source-date-epoch: 1763069695 +source-date-epoch: 1764110238 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 4.4.0 - 4.3.4 - 4.3.3 - 4.3.2
providers/hashicorp/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-hashicorp" -version = "4.3.4" +version = "4.4.0" description = "Provider package apache-airflow-providers-hashicorp for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "hvac>=1.1.0", ] @@ -110,8 +110,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.4.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.4.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/hashicorp/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-hashicorp`` -Release: ``4.3.4`` +Release: ``4.4.0`` Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``hashicorp`` provider. All classes for this prov are in ``airflow.providers.hashicorp`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.4.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``hvac`` ``>=1.1.0`` ========================================== ================== @@ -89,4 +89,4 @@ Extra Dependencies ========== =================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.3.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-hashicorp/4.4.0/changelog.html>`_.
providers/hashicorp/src/airflow/providers/hashicorp/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "4.3.4" +__version__ = "4.4.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/http/docs/changelog.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +5.6.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 5.5.0 .....
providers/http/docs/index.rst+5 −5 modified@@ -78,7 +78,7 @@ apache-airflow-providers-http package `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__ -Release: 5.5.0 +Release: 5.6.0 Provider package ---------------- @@ -96,12 +96,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``requests`` ``>=2.32.0,<3`` ``requests-toolbelt`` ``>=1.0.0`` @@ -134,5 +134,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-http 5.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.5.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-http 5.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.5.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-http 5.6.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-http 5.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_http-5.6.0-py3-none-any.whl.sha512>`__)
providers/http/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__ state: ready -source-date-epoch: 1763069717 +source-date-epoch: 1764110245 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 5.6.0 - 5.5.0 - 5.4.0 - 5.3.4
providers/http/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-http" -version = "5.5.0" +version = "5.6.0" description = "Provider package apache-airflow-providers-http for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", # The 2.26.0 release of requests got rid of the chardet LGPL mandatory dependency, allowing us to # release it as a requirement for airflow @@ -110,8 +110,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-http/5.5.0" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-http/5.5.0/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/http/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-http`` -Release: ``5.5.0`` +Release: ``5.6.0`` `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``http`` provider. All classes for this provider are in ``airflow.providers.http`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.5.0/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``requests`` ``>=2.32.0,<3`` ``requests-toolbelt`` ``>=1.0.0`` @@ -90,4 +90,4 @@ Extra Dependencies ================= ========================================== The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.5.0/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-http/5.6.0/changelog.html>`_.
providers/http/src/airflow/providers/http/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "5.5.0" +__version__ = "5.6.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/imap/docs/changelog.rst+15 −0 modified@@ -26,6 +26,21 @@ Changelog --------- +3.10.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.9.4 .....
providers/imap/docs/index.rst+5 −5 modified@@ -63,7 +63,7 @@ apache-airflow-providers-imap package `Internet Message Access Protocol (IMAP) <https://tools.ietf.org/html/rfc3501>`__ -Release: 3.9.4 +Release: 3.10.0 Provider package ---------------- @@ -81,12 +81,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ========================================== ================== @@ -115,5 +115,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-imap 3.9.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.9.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.9.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.9.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-imap 3.9.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.9.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.9.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.9.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-imap 3.10.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.10.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.10.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.10.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-imap 3.10.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.10.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.10.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_imap-3.10.0-py3-none-any.whl.sha512>`__)
providers/imap/provider.yaml+2 −1 modified@@ -23,12 +23,13 @@ description: | `Internet Message Access Protocol (IMAP) <https://tools.ietf.org/html/rfc3501>`__ state: ready -source-date-epoch: 1763069732 +source-date-epoch: 1764110254 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 3.10.0 - 3.9.4 - 3.9.3 - 3.9.2
providers/imap/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-imap" -version = "3.9.4" +version = "3.10.0" description = "Provider package apache-airflow-providers-imap for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", ] @@ -97,8 +97,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-imap/3.9.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-imap/3.9.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-imap/3.10.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-imap/3.10.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/imap/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-imap`` -Release: ``3.9.4`` +Release: ``3.10.0`` `Internet Message Access Protocol (IMAP) <https://tools.ietf.org/html/rfc3501>`__ @@ -36,7 +36,7 @@ This is a provider package for ``imap`` provider. All classes for this provider are in ``airflow.providers.imap`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-imap/3.9.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-imap/3.10.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ========================================== ================== @@ -77,4 +77,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-imap/3.9.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-imap/3.10.0/changelog.html>`_.
providers/imap/src/airflow/providers/imap/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "3.9.4" +__version__ = "3.10.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/influxdb/docs/changelog.rst+16 −0 modified@@ -28,6 +28,22 @@ Changelog --------- +2.10.0 +...... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 2.9.4 .....
providers/influxdb/docs/index.rst+5 −5 modified@@ -77,7 +77,7 @@ apache-airflow-providers-influxdb package `InfluxDB <https://www.influxdata.com/>`__ -Release: 2.9.4 +Release: 2.10.0 Provider package ---------------- @@ -95,12 +95,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``influxdb-client`` ``>=1.19.0`` ``requests`` ``>=2.32.0,<3`` @@ -131,5 +131,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-influxdb 2.9.4 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.9.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.9.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.9.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-influxdb 2.9.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.9.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.9.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.9.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-influxdb 2.10.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.10.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.10.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.10.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-influxdb 2.10.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.10.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.10.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_influxdb-2.10.0-py3-none-any.whl.sha512>`__)
providers/influxdb/provider.yaml+2 −1 modified@@ -24,12 +24,13 @@ description: | `InfluxDB <https://www.influxdata.com/>`__ state: ready -source-date-epoch: 1763069749 +source-date-epoch: 1764110261 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 2.10.0 - 2.9.4 - 2.9.3 - 2.9.2
providers/influxdb/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-influxdb" -version = "2.9.4" +version = "2.10.0" description = "Provider package apache-airflow-providers-influxdb for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "influxdb-client>=1.19.0", "requests>=2.32.0,<3", @@ -99,8 +99,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.9.4" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.9.4/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.10.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.10.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/influxdb/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-influxdb`` -Release: ``2.9.4`` +Release: ``2.10.0`` `InfluxDB <https://www.influxdata.com/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``influxdb`` provider. All classes for this provi are in ``airflow.providers.influxdb`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.9.4/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.10.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``influxdb-client`` ``>=1.19.0`` ``requests`` ``>=2.32.0,<3`` @@ -79,4 +79,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.9.4/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-influxdb/2.10.0/changelog.html>`_.
providers/influxdb/src/airflow/providers/influxdb/__init__.py+1 −1 modified@@ -29,7 +29,7 @@ __all__ = ["__version__"] -__version__ = "2.9.4" +__version__ = "2.10.0" if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( "2.11.0"
providers/jdbc/docs/changelog.rst+16 −0 modified@@ -26,6 +26,22 @@ Changelog --------- +5.3.0 +..... + +.. note:: + This release of provider is only available for Airflow 2.11+ 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 +~~~~ + +* ``Bump minimum Airflow version in providers to Airflow 2.11.0 (#58612)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Updates to release process of providers (#58316)`` + 5.2.5 .....
providers/jdbc/docs/index.rst+5 −5 modified@@ -78,7 +78,7 @@ apache-airflow-providers-jdbc package `Java Database Connectivity (JDBC) <https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/>`__ -Release: 5.2.5 +Release: 5.3.0 Provider package ---------------- @@ -96,12 +96,12 @@ For the minimum Airflow version supported, see ``Requirements`` below. Requirements ------------ -The minimum Apache Airflow version supported by this provider distribution is ``2.10.0``. +The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.20.0`` ``jaydebeapi`` ``>=1.1.1`` @@ -133,5 +133,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-jdbc 5.2.5 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.2.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.2.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.2.5.tar.gz.sha512>`__) -* `The apache-airflow-providers-jdbc 5.2.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.2.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.2.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.2.5-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-jdbc 5.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-jdbc 5.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-5.3.0-py3-none-any.whl.sha512>`__)
providers/jdbc/provider.yaml+2 −1 modified@@ -22,12 +22,13 @@ description: | `Java Database Connectivity (JDBC) <https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/>`__ state: ready -source-date-epoch: 1763069761 +source-date-epoch: 1764110268 # Note that those versions are maintained by release manager - do not update them manually # with the exception of case where other provider in sources has >= new provider version. # In such case adding >= NEW_VERSION and bumping to NEW_VERSION in a provider have # to be done in the same PR versions: + - 5.3.0 - 5.2.5 - 5.2.4 - 5.2.3
providers/jdbc/pyproject.toml+4 −4 modified@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi" [project] name = "apache-airflow-providers-jdbc" -version = "5.2.5" +version = "5.3.0" description = "Provider package apache-airflow-providers-jdbc for Apache Airflow" readme = "README.rst" license = "Apache-2.0" @@ -58,7 +58,7 @@ requires-python = ">=3.10" # Make sure to run ``prek update-providers-dependencies --all-files`` # After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build`` dependencies = [ - "apache-airflow>=2.10.0", + "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "apache-airflow-providers-common-sql>=1.20.0", "jaydebeapi>=1.1.1", @@ -100,8 +100,8 @@ apache-airflow-providers-common-sql = {workspace = true} apache-airflow-providers-standard = {workspace = true} [project.urls] -"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.2.5" -"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.2.5/changelog.html" +"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.3.0" +"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.3.0/changelog.html" "Bug Tracker" = "https://github.com/apache/airflow/issues" "Source Code" = "https://github.com/apache/airflow" "Slack Chat" = "https://s.apache.org/airflow-slack"
providers/jdbc/README.rst+4 −4 modified@@ -23,7 +23,7 @@ Package ``apache-airflow-providers-jdbc`` -Release: ``5.2.5`` +Release: ``5.3.0`` `Java Database Connectivity (JDBC) <https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/>`__ @@ -36,7 +36,7 @@ This is a provider package for ``jdbc`` provider. All classes for this provider are in ``airflow.providers.jdbc`` python package. You can find package information and changelog for the provider -in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.2.5/>`_. +in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.3.0/>`_. Installation ------------ @@ -53,7 +53,7 @@ Requirements ========================================== ================== PIP package Version required ========================================== ================== -``apache-airflow`` ``>=2.10.0`` +``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``apache-airflow-providers-common-sql`` ``>=1.20.0`` ``jaydebeapi`` ``>=1.1.1`` @@ -80,4 +80,4 @@ Dependent package ================================================================================================================== ================= The changelog for the provider package can be found in the -`changelog <https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.2.5/changelog.html>`_. +`changelog <https://airflow.apache.org/docs/apache-airflow-providers-jdbc/5.3.0/changelog.html>`_.
providers/.last_release_date.txt+1 −1 modified@@ -1 +1 @@ -2025-11-18 +2025-11-27
12c3c39d1a81pRepare docs for November 2022 wave of Providers (#27613)
300 files changed · +3520 −366
airflow/providers/airbyte/CHANGELOG.rst+19 −0 modified@@ -24,6 +24,25 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``AIP-47 - Migrate Airbyte DAGs to new design (#25135)`` + 3.1.0 .....
airflow/providers/airbyte/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Airbyte <https://airbyte.io/>`__ versions: + - 3.2.0 - 3.1.0 - 3.0.0 - 2.1.4
airflow/providers/alibaba/CHANGELOG.rst+18 −0 modified@@ -24,6 +24,24 @@ Changelog --------- +2.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Use log.exception where more economical than log.error (#27517)`` +* ``Replace urlparse with urlsplit (#27389)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 2.1.0 .....
airflow/providers/alibaba/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com//>`__). versions: + - 2.2.0 - 2.1.0 - 2.0.1 - 2.0.0
airflow/providers/amazon/CHANGELOG.rst+57 −0 modified@@ -24,6 +24,63 @@ Changelog --------- +6.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Replace urlparse with urlsplit (#27389)`` + +Features +~~~~~~~~ + +* ``Add info about JSON Connection format for AWS SSM Parameter Store Secrets Backend (#27134)`` +* ``Add default name to EMR Serverless jobs (#27458)`` +* ``Adding 'preserve_file_name' param to 'S3Hook.download_file' method (#26886)`` +* ``Add GlacierUploadArchiveOperator (#26652)`` +* ``Add RdsStopDbOperator and RdsStartDbOperator (#27076)`` +* ``'GoogleApiToS3Operator' : add 'gcp_conn_id' to template fields (#27017)`` +* ``Add SQLExecuteQueryOperator (#25717)`` +* ``Add information about Amazon Elastic MapReduce Connection (#26687)`` +* ``Add BatchOperator template fields (#26805)`` +* ``Improve testing AWS Connection response (#26953)`` + +Bug Fixes +~~~~~~~~~ + +* ``SagemakerProcessingOperator stopped honoring 'existing_jobs_found' (#27456)`` +* ``CloudWatch task handler doesn't fall back to local logs when Amazon CloudWatch logs aren't found (#27564)`` +* ``Fix backwards compatibility for RedshiftSQLOperator (#27602)`` +* ``Fix typo in redshift sql hook get_ui_field_behaviour (#27533)`` +* ``Fix example_emr_serverless system test (#27149)`` +* ``Fix param in docstring RedshiftSQLHook get_table_primary_key method (#27330)`` +* ``Adds s3_key_prefix to template fields (#27207)`` +* ``Fix assume role if user explicit set credentials (#26946)`` +* ``Fix failure state in waiter call for EmrServerlessStartJobOperator. (#26853)`` +* ``Fix a bunch of deprecation warnings AWS tests (#26857)`` +* ``Fix null strings bug in SqlToS3Operator in non parquet formats (#26676)`` +* ``Sagemaker hook: remove extra call at the end when waiting for completion (#27551)`` +* ``ECS Buglette (#26921)`` +* ``Avoid circular imports in AWS Secrets Backends if obtain secrets from config (#26784)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``sagemaker operators: mutualize init of aws_conn_id (#27579)`` + * ``Upgrade dependencies in order to avoid backtracking (#27531)`` + * ``Code quality improvements on sagemaker operators/hook (#27453)`` + * ``Update old style typing (#26872)`` + * ``System test for SQL to S3 Transfer (AIP-47) (#27097)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Convert emr_eks example dag to system test (#26723)`` + * ``System test for Dynamo DB (#26729)`` + * ``ECS System Test (#26808)`` + * ``RDS Instance System Tests (#26733)`` + 6.0.0 .....
airflow/providers/amazon/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__). versions: + - 6.1.0 - 6.0.0 - 5.1.0 - 5.0.0
airflow/providers/apache/beam/CHANGELOG.rst+26 −0 modified@@ -24,6 +24,32 @@ Changelog --------- +4.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add backward compatibility with old versions of Apache Beam (#27263)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 4.0.0 .....
airflow/providers/apache/beam/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Apache Beam <https://beam.apache.org/>`__. versions: + - 4.1.0 - 4.0.0 - 3.4.0 - 3.3.0
airflow/providers/apache/cassandra/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/apache/cassandra/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Apache Cassandra <http://cassandra.apache.org/>`__. versions: + - 3.1.0 - 3.0.0 - 2.1.3 - 2.1.2
airflow/providers/apache/drill/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +2.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 2.2.1 .....
airflow/providers/apache/drill/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Apache Drill <https://drill.apache.org/>`__. versions: + - 2.3.0 - 2.2.1 - 2.2.0 - 2.1.0
airflow/providers/apache/druid/CHANGELOG.rst+20 −1 modified@@ -24,6 +24,26 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Bug Fixes +~~~~~~~~~ + +* ``BugFix - Druid Airflow Exception to about content (#27174)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.2.1 ..... @@ -32,7 +52,6 @@ Misc * ``Add common-sql lower bound for common-sql (#25789)`` - .. Review and move the new changes to one of the sections above: * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
airflow/providers/apache/druid/provider.yaml+2 −1 modified@@ -22,6 +22,7 @@ description: | `Apache Druid <https://druid.apache.org/>`__. versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.0 @@ -41,7 +42,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - pydruid>=0.4.1 integrations:
airflow/providers/apache/hdfs/CHANGELOG.rst+18 −0 modified@@ -24,6 +24,24 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 3.1.0 .....
airflow/providers/apache/hdfs/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | and `WebHDFS <https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/WebHDFS.html>`__. versions: + - 3.2.0 - 3.1.0 - 3.0.1 - 3.0.0
airflow/providers/apache/hive/CHANGELOG.rst+21 −6 modified@@ -24,6 +24,27 @@ Changelog --------- +4.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Bug Fixes +~~~~~~~~~ + +* ``Filter out invalid schemas in Hive hook (#27647)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 4.0.1 ..... @@ -52,12 +73,6 @@ Breaking Changes * ``Deprecate hql parameters and synchronize DBApiHook method APIs (#25299)`` * ``Remove Smart Sensors (#25507)`` -Bug Fixes -~~~~~~~~~ - - -.. Below changes are excluded from the changelog. Move them to - appropriate section above if needed. Do not delete the lines(!): 3.1.0 .....
airflow/providers/apache/hive/provider.yaml+2 −1 modified@@ -22,6 +22,7 @@ description: | `Apache Hive <https://hive.apache.org/>`__ versions: + - 4.1.0 - 4.0.1 - 4.0.0 - 3.1.0 @@ -43,7 +44,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - hmsclient>=0.1.0 - pandas>=0.17.1 - pyhive[hive]>=0.6.0
airflow/providers/apache/kylin/CHANGELOG.rst+24 −0 modified@@ -24,6 +24,30 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Bug Fixes +~~~~~~~~~ + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Remove "bad characters" from our codebase (#24841)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/apache/kylin/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Apache Kylin <https://kylin.apache.org/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/apache/livy/CHANGELOG.rst+25 −0 modified@@ -24,6 +24,31 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add template to livy operator documentation (#27404)`` +* ``Add Spark's 'appId' to xcom output (#27376)`` +* ``add template field renderer to livy operator (#27321)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 3.1.0 .....
airflow/providers/apache/livy/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Apache Livy <https://livy.apache.org/>`__ versions: + - 3.2.0 - 3.1.0 - 3.0.0 - 2.2.3
airflow/providers/apache/pig/CHANGELOG.rst+21 −0 modified@@ -27,6 +27,9 @@ Changelog 4.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ @@ -38,6 +41,24 @@ informing that you need to remove them and pass them as parameters. Both ``pig_properties`` and ``pig_opts`` are now templated fields in the PigOperator. +* ``Pig cli connection properties cannot be passed by connection extra (#27644)`` + + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/apache/pinot/CHANGELOG.rst+4 −2 modified@@ -27,15 +27,17 @@ Changelog 4.0.0 ..... -This release of provider is only available for Airflow 2.3+ as explained in the Apache Airflow -providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. Breaking changes ~~~~~~~~~~~~~~~~ The admin command is now hard-coded to ``pinot-admin.sh``. The ``pinot-admin.sh`` command must be available on the path in order to use PinotAdminHook. +* ``The pinot-admin.sh command is now hard-coded. (#27641)`` + Misc ~~~~
airflow/providers/apache/pinot/provider.yaml+1 −1 modified@@ -37,7 +37,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - pinotdb>0.4.7 integrations:
airflow/providers/apache/spark/CHANGELOG.rst+22 −0 modified@@ -27,12 +27,34 @@ Changelog 4.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Breaking changes +~~~~~~~~~~~~~~~~ + The ``spark-binary`` connection extra could be set to any binary, but with 4.0.0 version only two values are allowed for it ``spark-submit`` and ``spark2-submit``. The ``spark-home`` connection extra is not allowed any more - the binary should be available on the PATH in order to use SparkSubmitHook and SparkSubmitOperator. +* ``Remove custom spark home and custom binaries for spark (#27646)`` + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` 3.0.0 .....
airflow/providers/apache/spark/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Apache Spark <https://spark.apache.org/>`__ versions: + - 4.0.0 - 3.0.0 - 2.1.3 - 2.1.2
airflow/providers/apache/sqoop/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/apache/sqoop/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Apache Sqoop <https://sqoop.apache.org/>`__ versions: + - 3.1.0 - 3.0.0 - 2.1.3 - 2.1.2
airflow/providers/arangodb/CHANGELOG.rst+22 −0 modified@@ -23,6 +23,28 @@ The changelog is updated and maintained semi-automatically by release manager. Changelog +--------- + +2.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Fix links to sources for examples (#24386)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` 2.0.0 .....
airflow/providers/arangodb/provider.yaml+1 −0 modified@@ -26,6 +26,7 @@ dependencies: - python-arango>=7.3.2 versions: + - 2.1.0 - 2.0.0 - 1.0.0
airflow/providers/asana/CHANGELOG.rst+18 −4 modified@@ -26,16 +26,31 @@ Changelog 3.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ -* This release of provider is only available for Airflow 2.3+ as explained in the Apache Airflow - providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers +* In AsanaHook, non-prefixed extra fields are supported and are preferred. So if you should update your + connection to replace ``extra__asana__workspace`` with ``workspace`` etc. Misc ~~~~ -* In AsanaHook, non-prefixed extra fields are supported and are preferred. So if you should update your connection to replace ``extra__asana__workspace`` with ``workspace`` etc. +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Allow and prefer non-prefixed extra fields for AsanaHook (#27043)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 2.0.1 ..... @@ -45,7 +60,6 @@ Bug Fixes * ``Update providers to use functools compat for ''cached_property'' (#24582)`` - .. Below changes are excluded from the changelog. Move them to appropriate section above if needed. Do not delete the lines(!): * ``Move provider dependencies to inside provider folders (#24672)``
airflow/providers/asana/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Asana <https://app.asana.com/>`__ versions: + - 3.0.0 - 2.0.1 - 2.0.0 - 1.1.3
airflow/providers/atlassian/jira/CHANGELOG.rst+15 −0 modified@@ -24,6 +24,21 @@ Changelog --------- +1.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 1.0.0 .....
airflow/providers/atlassian/jira/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Atlassian Jira <https://www.atlassian.com/>`__ versions: + - 1.1.0 - 1.0.0 dependencies:
airflow/providers/celery/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/celery/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Celery <http://www.celeryproject.org/>`__ versions: + - 3.1.0 - 3.0.0 - 2.1.4 - 2.1.3
airflow/providers/cloudant/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/cloudant/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `IBM Cloudant <https://www.ibm.com/cloud/cloudant>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/cncf/kubernetes/CHANGELOG.rst+56 −12 modified@@ -27,35 +27,81 @@ Changelog 5.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ -Previously KubernetesPodOperator considered some settings from the Airflow config's ``kubernetes`` section. Such consideration was deprecated in 4.1.0 and is now removed. If you previously relied on the Airflow config, and you want client generation to have non-default configuration, you will need to define your configuration in an Airflow connection and set KPO to use the connection. See kubernetes provider documentation on defining a kubernetes Airflow connection for details. +Previously KubernetesPodOperator considered some settings from the Airflow config's ``kubernetes`` section. +Such consideration was deprecated in 4.1.0 and is now removed. If you previously relied on the Airflow +config, and you want client generation to have non-default configuration, you will need to define your +configuration in an Airflow connection and set KPO to use the connection. See kubernetes provider +documentation on defining a kubernetes Airflow connection for details. -Drop support for providing ``resource`` as dict in ``KubernetesPodOperator``. You should use ``container_resources`` with ``V1ResourceRequirements``. +Drop support for providing ``resource`` as dict in ``KubernetesPodOperator``. You +should use ``container_resources`` with ``V1ResourceRequirements``. Param ``node_selectors`` has been removed in ``KubernetesPodOperator``; use ``node_selector`` instead. -The following backcompat modules for KubernetesPodOperator are removed and you must now use the corresponding objects from the kubernetes library: +The following backcompat modules for KubernetesPodOperator are removed and you must now use +the corresponding objects from the kubernetes library: + * ``airflow.providers.cncf.kubernetes.backcompat.pod`` * ``airflow.providers.cncf.kubernetes.backcompat.pod_runtime_info_env`` * ``airflow.providers.cncf.kubernetes.backcompat.volume`` * ``airflow.providers.cncf.kubernetes.backcompat.volume_mount`` +In ``KubernetesHook.get_namespace``, if a connection is defined but a namespace isn't set, we +currently return 'default'; this behavior is deprecated. In the next release, we'll return ``None``. + +* ``Remove deprecated backcompat objects for KPO (#27518)`` +* ``Remove support for node_selectors param in KPO (#27515)`` +* ``Remove unused backcompat method in k8s hook (#27490)`` +* ``Drop support for providing ''resource'' as dict in ''KubernetesPodOperator'' (#27197)`` +* ``Deprecate use of core get_kube_client in PodManager (#26848)`` +* ``Don't consider airflow core conf for KPO (#26849)`` + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Use log.exception where more economical than log.error (#27517)`` Features ~~~~~~~~ -* Previously, ``name`` was a required argument for KubernetesPodOperator (when also not supplying pod template or full pod spec). Now, if ``name`` is not supplied, ``task_id`` will be used. -* KubernetsPodOperator argument ``namespace`` is now optional. If not supplied via KPO param or pod template file or full pod spec, then we'll check the airflow conn, - then if in a k8s pod, try to infer the namespace from the container, then finally will use the ``default`` namespace. +Previously, ``name`` was a required argument for KubernetesPodOperator (when also not supplying pod +template or full pod spec). Now, if ``name`` is not supplied, ``task_id`` will be used. -Deprecations -~~~~~~~~~~~~ +KubernetsPodOperator argument ``namespace`` is now optional. If not supplied via KPO param or pod +template file or full pod spec, then we'll check the airflow conn, +then if in a k8s pod, try to infer the namespace from the container, then finally +will use the ``default`` namespace. -* In ``KubernetesHook.get_namespace``, if a connection is defined but a namespace isn't set, we currently return 'default'; this behavior is deprecated. In the next release, we'll return ``None``. +* ``Add container_resources as KubernetesPodOperator templatable (#27457)`` +* ``Add deprecation warning re unset namespace in k8s hook (#27202)`` +* ``add container_name option for SparkKubernetesSensor (#26560)`` +* ``Allow xcom sidecar container image to be configurable in KPO (#26766)`` +* ``Improve task_id to pod name conversion (#27524)`` +* ``Make pod name optional in KubernetesPodOperator (#27120)`` +* ``Make namespace optional for KPO (#27116)`` +* ``Enable template rendering for env_vars field for the @task.kubernetes decorator (#27433)`` +Bug Fixes +~~~~~~~~~ + +* ``Fix KubernetesHook fail on an attribute absence (#25787)`` +* ``Fix log message for kubernetes hooks (#26999)`` +* ``Remove extra__kubernetes__ prefix from k8s hook extras (#27021)`` +* ``KPO should use hook's get namespace method to get namespace (#27516)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` 4.4.0 ..... @@ -76,9 +122,7 @@ Bug Fixes .. Below changes are excluded from the changelog. Move them to appropriate section above if needed. Do not delete the lines(!): * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` - -.. Review and move the new changes to one of the sections above: - * ``Prepare to release cncf.kubernetes provider (#26588)`` + * ``Prepare to release cncf.kubernetes provider (#26588)`` 4.3.0 .....
airflow/providers/cncf/kubernetes/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Kubernetes <https://kubernetes.io/>`__ versions: + - 5.0.0 - 4.4.0 - 4.3.0 - 4.2.0
airflow/providers/common/sql/CHANGELOG.rst+31 −0 modified@@ -24,6 +24,37 @@ Changelog --------- +1.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` +* ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` +* ``DbApiHook consistent insert_rows logging (#26758)`` + +Bug Fixes +~~~~~~~~~ + +* ``Common sql bugfixes and improvements (#26761)`` +* ``Use unused SQLCheckOperator.parameters in SQLCheckOperator.execute. (#27599)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 1.2.0 .....
airflow/providers/databricks/CHANGELOG.rst+24 −0 modified@@ -24,6 +24,30 @@ Changelog --------- +3.4.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Replace urlparse with urlsplit (#27389)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` +* ``Use new job search API for triggering Databricks job by name (#27446)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.3.0 .....
airflow/providers/databricks/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Databricks <https://databricks.com/>`__ versions: + - 3.4.0 - 3.3.0 - 3.2.0 - 3.1.0
airflow/providers/datadog/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Remove "bad characters" from our codebase (#24841)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/datadog/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Datadog <https://www.datadoghq.com/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/dbt/cloud/CHANGELOG.rst+15 −0 modified@@ -24,6 +24,21 @@ Changelog --------- +2.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 2.2.0 .....
airflow/providers/dbt/cloud/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `dbt Cloud <https://www.getdbt.com/product/what-is-dbt/>`__ versions: + - 2.3.0 - 2.2.0 - 2.1.0 - 2.0.1
airflow/providers/dingding/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/dingding/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Dingding <https://oapi.dingtalk.com/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/discord/CHANGELOG.rst+24 −0 modified@@ -24,6 +24,30 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Bug Fixes +~~~~~~~~~ + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + * ``Add documentation for July 2022 Provider's release (#25030)`` + 3.0.0 .....
airflow/providers/discord/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Discord <https://discordapp.com/>`__ versions: + - 3.1.0 - 3.0.0 - 2.1.4 - 2.0.4
airflow/providers/docker/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add ipc_mode for DockerOperator (#27553)`` +* ``Add env-file parameter to Docker Operator (#26951)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.2.0 .....
airflow/providers/docker/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Docker <https://docs.docker.com/install/>`__ versions: + - 3.3.0 - 3.2.0 - 3.1.0 - 3.0.0
airflow/providers/elasticsearch/CHANGELOG.rst+16 −1 modified@@ -24,9 +24,24 @@ Changelog --------- -4.2.1 +4.3.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + +4.2.1 +..... Misc ~~~~
airflow/providers/elasticsearch/provider.yaml+2 −1 modified@@ -22,6 +22,7 @@ description: | `Elasticsearch <https://www.elastic.co/elasticsearch>`__ versions: + - 4.3.0 - 4.2.1 - 4.2.0 - 4.1.0 @@ -43,7 +44,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - elasticsearch>7 - elasticsearch-dbapi - elasticsearch-dsl>=5.0.0
airflow/providers/exasol/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +4.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` +* ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 4.0.1 .....
airflow/providers/exasol/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Exasol <https://docs.exasol.com/home.htm>`__ versions: + - 4.1.0 - 4.0.1 - 4.0.0 - 3.1.0
airflow/providers/facebook/CHANGELOG.rst+18 −0 modified@@ -24,6 +24,24 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 3.0.1 .....
airflow/providers/facebook/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Facebook Ads <http://business.facebook.com/>`__ versions: + - 3.1.0 - 3.0.1 - 3.0.0 - 2.2.3
airflow/providers/ftp/CHANGELOG.rst+17 −0 modified@@ -24,6 +24,23 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 3.1.0 .....
airflow/providers/ftp/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__ versions: + - 3.2.0 - 3.1.0 - 3.0.0 - 2.1.2
airflow/providers/github/CHANGELOG.rst+18 −0 modified@@ -18,6 +18,24 @@ under the License. Changelog +--------- + +2.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` 2.1.0 .....
airflow/providers/github/provider.yaml+1 −0 modified@@ -27,6 +27,7 @@ dependencies: - pygithub versions: + - 2.2.0 - 2.1.0 - 2.0.0 - 1.0.3
airflow/providers/google/CHANGELOG.rst+60 −0 modified@@ -23,6 +23,66 @@ Changelog --------- +8.5.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Rename hook bigquery function '_bq_cast' to 'bq_cast' (#27543)`` +* ``Use non-deprecated method for on_kill in BigQueryHook (#27547)`` +* ``Typecast biquery job response col value (#27236)`` +* ``Remove <2 limit on google-cloud-storage (#26922)`` + +Features +~~~~~~~~ + +* ``Add backward compatibility with old versions of Apache Beam (#27263)`` +* ``Add deferrable mode to GCPToBigQueryOperator + tests (#27052)`` +* ``Add system tests for Vertex AI operators in new approach (#27053)`` +* ``Dataform operators, links, update system tests and docs (#27144)`` +* ``Allow values in WorkflowsCreateExecutionOperator execution argument to be dicts (#27361)`` +* ``DataflowStopJobOperator Operator (#27033)`` +* ``Allow for the overriding of stringify_dict for json/jsonb column data type in Postgres #26875 (#26876)`` + +Bug Fixes +~~~~~~~~~ + +* ``Add new Compute Engine Operators and fix system tests (#25608)`` +* ``Allow and prefer non-prefixed extra fields for dataprep hook (#27039)`` +* ``Common sql bugfixes and improvements (#26761)`` +* ``Update google hooks to prefer non-prefixed extra fields (#27023)`` +* ``Fix delay in Dataproc CreateBatch operator (#26126)`` +* ``Remove unnecessary newlines around single arg in signature (#27525)`` +* ``set project_id and location when canceling BigQuery job (#27521)`` +* ``use the proper key to retrieve the dataflow job_id (#27336)`` +* ``Make GSheetsHook return an empty list when there are no values (#27261)`` +* ``Cloud ML Engine operators assets (#26836)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Change dataprep system tests assets (#26488)`` + * ``Upgrade dependencies in order to avoid backtracking (#27531)`` + * ``Migration of System Tests: Cloud Composer (AIP-47) (#27227)`` + * ``Rewrite system tests for ML Engine service (#26915)`` + * ``Migration of System Tests: Cloud BigQuery Data Transfer (AIP-47) (#27312)`` + * ``Migration of System Tests: Dataplex (AIP-47) (#26989)`` + * ``Migration of System Tests: Cloud Vision Operators (AIP-47) (#26963)`` + * ``Google Drive to local - system tests migrations (AIP-47) (#26798)`` + * ``Migrate Bigtable operators system tests according to AIP-47 (#26911)`` + * ``Migrate Dataproc Metastore system tests according to AIP-47 (#26858)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Local filesystem to Google Drive Operator - system tests migration (AIP-47) (#26797)`` + * ``SFTP to Google Cloud Storage Transfer system tests migration (AIP-47) (#26799)`` + +.. Review and move the new changes to one of the sections above: + * ``Replace urlparse with urlsplit (#27389)`` + 8.4.0 .....
airflow/providers/google/provider.yaml+2 −1 modified@@ -29,6 +29,7 @@ description: | - `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite) versions: + - 8.5.0 - 8.4.0 - 8.3.0 - 8.2.0 @@ -55,7 +56,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 # Google has very clear rules on what dependencies should be used. All the limits below # follow strict guidelines of Google Libraries as quoted here: # While this issue is open, dependents of google-api-core, google-cloud-core. and google-auth
airflow/providers/grpc/CHANGELOG.rst+26 −8 modified@@ -24,20 +24,38 @@ Changelog --------- -4.0.0 +3.1.0 ..... -Breaking changes -~~~~~~~~~~~~~~~~ - -* This release of provider is only available for Airflow 2.3+ as explained in the Apache Airflow - providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. Misc ~~~~ -* In GrpcHook, non-prefixed extra fields are supported and are preferred. E.g. ``auth_type`` will - be preferred if ``extra__grpc__auth_type`` is also present. +In GrpcHook, non-prefixed extra fields are supported and are preferred. E.g. ``auth_type`` will +be preferred if ``extra__grpc__auth_type`` is also present. + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Look for 'extra__' instead of 'extra_' in 'get_field' (#27489)`` +* ``Allow and prefer non-prefixed extra fields for GrpcHook (#27045)`` + +Bug Fixes +~~~~~~~~~ + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` 3.0.0 .....
airflow/providers/grpc/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `gRPC <https://grpc.io/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/hashicorp/CHANGELOG.rst+20 −0 modified@@ -24,6 +24,26 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Add Airflow specific warning classes (#25799)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Pass kwargs from vault hook to hvac client (#26680)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 3.1.0 .....
airflow/providers/hashicorp/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__ versions: + - 3.2.0 - 3.1.0 - 3.0.1 - 3.0.0
airflow/providers/http/CHANGELOG.rst+17 −0 modified@@ -24,6 +24,23 @@ Changelog --------- +4.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 4.0.0 .....
airflow/providers/http/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__ versions: + - 4.1.0 - 4.0.0 - 3.0.0 - 2.1.2
airflow/providers/imap/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/imap/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | `Internet Message Access Protocol (IMAP) <https://tools.ietf.org/html/rfc3501>`__ versions: + - 3.1.0 - 3.0.0 - 2.2.3 - 2.2.2
airflow/providers/influxdb/CHANGELOG.rst+23 −0 modified@@ -25,6 +25,29 @@ Changelog --------- +2.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 2.0.0 .....
airflow/providers/influxdb/provider.yaml+1 −0 modified@@ -29,6 +29,7 @@ dependencies: - requests>=2.26.0 versions: + - 2.1.0 - 2.0.0 - 1.1.3 - 1.1.2
airflow/providers/jdbc/CHANGELOG.rst+23 −0 modified@@ -24,6 +24,29 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Allow and prefer non-prefixed extra fields for JdbcHook (#27044)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` +* ``Look for 'extra__' instead of 'extra_' in 'get_field' (#27489)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 4.0.0 .....
airflow/providers/jdbc/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Java Database Connectivity (JDBC) <https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/>`__ versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/jenkins/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/jenkins/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Jenkins <https://jenkins.io/>`__ versions: + - 3.1.0 - 3.0.0 - 2.1.0 - 2.0.7
airflow/providers/microsoft/azure/CHANGELOG.rst+34 −2 modified@@ -27,16 +27,48 @@ Changelog 5.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ -* This release of provider is only available for Airflow 2.3+ as explained in the Apache Airflow - providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers * In AzureFileShareHook, if both ``extra__azure_fileshare__foo`` and ``foo`` existed in connection extra dict, the prefixed version would be used; now, the non-prefixed version will be preferred. * ``Remove deprecated classes (#27417)`` * In Azure Batch ``vm_size`` and ``vm_node_agent_sku_id`` parameters are required. +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add azure, google, authentication library limits to eaager upgrade (#27535)`` +* ``Allow and prefer non-prefixed extra fields for remaining azure (#27220)`` +* ``Allow and prefer non-prefixed extra fields for AzureFileShareHook (#27041)`` +* ``Allow and prefer non-prefixed extra fields for AzureDataExplorerHook (#27219)`` +* ``Allow and prefer non-prefixed extra fields for AzureDataFactoryHook (#27047)`` +* ``Update WasbHook to reflect preference for unprefixed extra (#27024)`` +* ``Look for 'extra__' instead of 'extra_' in 'get_field' (#27489)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix Azure Batch errors revealed by added typing to azure batch lib (#27601)`` +* ``Fix separator getting added to variables_prefix when empty (#26749)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Upgrade dependencies in order to avoid backtracking (#27531)`` + * ``Suppress any Exception in wasb task handler (#27495)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update azure-storage-blob version (#25426)`` + + 4.3.0 .....
airflow/providers/microsoft/azure/provider.yaml+1 −0 modified@@ -21,6 +21,7 @@ name: Microsoft Azure description: | `Microsoft Azure <https://azure.microsoft.com/>`__ versions: + - 5.0.0 - 4.3.0 - 4.2.0 - 4.1.0
airflow/providers/microsoft/mssql/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Remove unnecessary newlines around single arg in signature (#27525)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.2.1 .....
airflow/providers/microsoft/mssql/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Microsoft SQL Server (MSSQL) <https://www.microsoft.com/en-us/sql-server/sql-server-downloads>`__ versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/microsoft/psrp/CHANGELOG.rst+20 −0 modified@@ -24,6 +24,26 @@ Changelog --------- +2.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Add documentation for July 2022 Provider's release (#25030)`` + 2.0.0 .....
airflow/providers/microsoft/psrp/provider.yaml+1 −0 modified@@ -24,6 +24,7 @@ description: | <https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-psrp/>`__. versions: + - 2.1.0 - 2.0.0 - 1.1.4 - 1.1.3
airflow/providers/microsoft/winrm/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``A few docs fixups (#26788)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/microsoft/winrm/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Windows Remote Management (WinRM) <https://docs.microsoft.com/en-us/windows/win32/winrm/portal>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.5 - 2.0.4
airflow/providers/mongo/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Fix links to sources for examples (#24386)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/mongo/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `MongoDB <https://www.mongodb.com/what-is-mongodb>`__ versions: + - 3.1.0 - 3.0.0 - 2.3.3 - 2.3.2
airflow/providers/mysql/CHANGELOG.rst+21 −0 modified@@ -27,6 +27,27 @@ used with MySQL server 5.6.4 through 5.7. Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.2.1 .....
airflow/providers/mysql/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `MySQL <https://www.mysql.com/products/>`__ versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/neo4j/CHANGELOG.rst+17 −0 modified@@ -25,6 +25,23 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 3.1.0 .....
airflow/providers/neo4j/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Neo4j <https://neo4j.com/>`__ versions: + - 3.2.0 - 3.1.0 - 3.0.0 - 2.1.3
airflow/providers/odbc/CHANGELOG.rst+15 −0 modified@@ -24,6 +24,21 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.1.2 .....
airflow/providers/odbc/provider.yaml+2 −1 modified@@ -22,6 +22,7 @@ description: | `ODBC <https://github.com/mkleehammer/pyodbc/wiki>`__ versions: + - 3.2.0 - 3.1.2 - 3.1.1 - 3.1.0 @@ -36,7 +37,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - pyodbc integrations:
airflow/providers/openfaas/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/openfaas/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `OpenFaaS <https://www.openfaas.com/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.3 - 2.0.2
airflow/providers/opsgenie/CHANGELOG.rst+22 −1 modified@@ -27,10 +27,31 @@ Changelog 5.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ -* Remove 'OpsgenieAlertOperator' also removed hooks.opsgenie_alert path +Remove 'OpsgenieAlertOperator' also removed hooks.opsgenie_alert path + +* ``Remove deprecated code from Opsgenie provider (#27252)`` + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` 4.0.0
airflow/providers/opsgenie/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Opsgenie <https://www.opsgenie.com/>`__ versions: + - 5.0.0 - 4.0.0 - 3.1.0 - 3.0.3
airflow/providers/oracle/CHANGELOG.rst+20 −0 modified@@ -24,6 +24,26 @@ Changelog --------- +3.5.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.4.0 .....
airflow/providers/oracle/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Oracle <https://www.oracle.com/en/database/>`__ versions: + - 3.5.0 - 3.4.0 - 3.3.0 - 3.2.0
airflow/providers/pagerduty/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Remove "bad characters" from our codebase (#24841)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/pagerduty/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Pagerduty <https://www.pagerduty.com/>`__ versions: + - 3.1.0 - 3.0.0 - 2.1.3 - 2.1.2
airflow/providers/papermill/CHANGELOG.rst+20 −0 modified@@ -24,6 +24,26 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/papermill/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Papermill <https://github.com/nteract/papermill>`__ versions: + - 3.1.0 - 3.0.0 - 2.2.3 - 2.2.2
airflow/providers/plexus/CHANGELOG.rst+20 −0 modified@@ -24,6 +24,26 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/plexus/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Plexus <https://plexus.corescientific.com/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/postgres/CHANGELOG.rst+23 −0 modified@@ -24,6 +24,29 @@ Changelog --------- +5.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``PostgresHook: Added ON CONFLICT DO NOTHING statement when all target fields are primary keys (#26661)`` +* ``Add SQLExecuteQueryOperator (#25717)`` +* ``Rename schema to database in PostgresHook (#26744)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 5.2.2 .....
airflow/providers/postgres/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `PostgreSQL <https://www.postgresql.org/>`__ versions: + - 5.3.0 - 5.2.2 - 5.2.1 - 5.2.0
airflow/providers/presto/CHANGELOG.rst+18 −0 modified@@ -24,6 +24,24 @@ Changelog --------- +4.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 4.0.1 .....
airflow/providers/presto/provider.yaml+2 −1 modified@@ -22,6 +22,7 @@ description: | `Presto <https://prestodb.github.io/>`__ versions: + - 4.1.0 - 4.0.1 - 4.0.0 - 3.1.0 @@ -39,7 +40,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - presto-python-client>=0.8.2 - pandas>=0.17.1
airflow/providers/qubole/CHANGELOG.rst+16 −0 modified@@ -24,6 +24,22 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.2.1 .....
airflow/providers/qubole/provider.yaml+2 −1 modified@@ -22,6 +22,7 @@ description: | `Qubole <https://www.qubole.com/>`__ versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.0 @@ -38,7 +39,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - qds-sdk>=1.10.4 integrations:
airflow/providers/redis/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/redis/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Redis <https://redis.io/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/salesforce/CHANGELOG.rst+19 −0 modified@@ -24,6 +24,25 @@ Changelog --------- +5.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Allow and prefer non-prefixed extra fields for SalesforceHook (#27075)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 5.1.0 .....
airflow/providers/salesforce/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Salesforce <https://www.salesforce.com/>`__ versions: + - 5.2.0 - 5.1.0 - 5.0.0 - 4.0.0
airflow/providers/samba/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +4.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 4.0.0 .....
airflow/providers/samba/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Samba <https://www.samba.org/>`__ versions: + - 4.1.0 - 4.0.0 - 3.0.4 - 3.0.3
airflow/providers/segment/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + * ``Remove 'hook-class-names' from provider.yaml (#24702)`` + 3.0.0 .....
airflow/providers/segment/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Segment <https://segment.com/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/sendgrid/CHANGELOG.rst+25 −0 modified@@ -24,6 +24,31 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add Airflow specific warning classes (#25799)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/sendgrid/provider.yaml+1 −0 modified@@ -26,6 +26,7 @@ dependencies: - sendgrid>=6.0.0 versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/sftp/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +4.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Bug Fixes +~~~~~~~~~ + +* ``SFTP Provider: Fix default folder permissions (#26593)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 4.1.0 .....
airflow/providers/sftp/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__ versions: + - 4.2.0 - 4.1.0 - 4.0.0 - 3.0.0
airflow/providers/singularity/CHANGELOG.rst+20 −0 modified@@ -24,6 +24,26 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/singularity/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Singularity <https://sylabs.io/guides/latest/user-guide/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/slack/CHANGELOG.rst+16 −0 modified@@ -27,6 +27,9 @@ Changelog 7.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ @@ -36,6 +39,19 @@ Breaking changes dict, the prefixed version would be used; now, the non-prefixed version will be preferred. You'll see a warning if there is such a collision. +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Allow and prefer non-prefixed extra fields for slack hooks (#27070)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + +.. Review and move the new changes to one of the sections above: + * ``Replace urlparse with urlsplit (#27389)`` + 6.0.0 .....
airflow/providers/slack/provider.yaml+2 −1 modified@@ -22,6 +22,7 @@ description: | `Slack <https://slack.com/>`__ versions: + - 7.0.0 - 6.0.0 - 5.1.0 - 5.0.0 @@ -38,7 +39,7 @@ versions: dependencies: - apache-airflow>=2.3.0 - - apache-airflow-providers-common-sql>=1.2.0 + - apache-airflow-providers-common-sql>=1.3.0 - slack_sdk>=3.0.0 integrations:
airflow/providers/snowflake/CHANGELOG.rst+27 −5 modified@@ -24,16 +24,38 @@ Changelog --------- -5.0.0 +4.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ -* This release of provider is only available for Airflow 2.3+ as explained in the Apache Airflow - providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers -* In SnowflakeHook, if both ``extra__snowflake__foo`` and ``foo`` existed in connection extra - dict, the prefixed version would be used; now, the non-prefixed version will be preferred. +In SnowflakeHook, if both ``extra__snowflake__foo`` and ``foo`` existed in connection extra +dict, the prefixed version would be used; now, the non-prefixed version will be preferred. + +* ``Update snowflake hook to not use extra prefix (#26764)`` + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + +Bug fixes +~~~~~~~~~ + +* ``Use unused SQLCheckOperator.parameters in SQLCheckOperator.execute. (#27599)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` 3.3.0 .....
airflow/providers/snowflake/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Snowflake <https://www.snowflake.com/>`__ versions: + - 4.0.0 - 3.3.0 - 3.2.0 - 3.1.0
airflow/providers/sqlite/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 3.2.1 .....
airflow/providers/sqlite/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `SQLite <https://www.sqlite.org/>`__ versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/ssh/CHANGELOG.rst+29 −0 modified@@ -24,6 +24,35 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Added docs regarding templated field (#27301)`` +* ``Added environment to templated SSHOperator fields (#26824)`` +* ``Apply log formatter on every output line in SSHOperator (#27442)`` + +Bug Fixes +~~~~~~~~~ + +* ``A few docs fixups (#26788)`` +* ``SSHOperator ignores cmd_timeout (#27182) (#27184)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.2.0 .....
airflow/providers/ssh/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Secure Shell (SSH) <https://tools.ietf.org/html/rfc4251>`__ versions: + - 3.3.0 - 3.2.0 - 3.1.0 - 3.0.0
airflow/providers/tableau/CHANGELOG.rst+16 −0 modified@@ -27,10 +27,26 @@ Changelog 4.0.0 ..... +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + Breaking changes ~~~~~~~~~~~~~~~~ * ``Removed deprecated classes path tableau_job_status and tableau_refresh_workbook (#27288).`` +* ``Remove deprecated Tableau classes (#27288)`` + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` 3.0.1 .....
airflow/providers/tableau/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Tableau <https://www.tableau.com/>`__ versions: + - 4.0.0 - 3.0.1 - 3.0.0 - 2.1.8
airflow/providers/tabular/CHANGELOG.rst+17 −0 modified@@ -18,6 +18,23 @@ Changelog --------- +1.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 1.0.1 .....
airflow/providers/tabular/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Tabular <https://tabular.io/>`__ versions: + - 1.1.0 - 1.0.1 - 1.0.0
airflow/providers/telegram/CHANGELOG.rst+21 −0 modified@@ -24,6 +24,27 @@ Changelog --------- +3.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Update old style typing (#26872)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 3.0.0 .....
airflow/providers/telegram/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Telegram <https://telegram.org/>`__ versions: + - 3.1.0 - 3.0.0 - 2.0.4 - 2.0.3
airflow/providers/trino/CHANGELOG.rst+24 −0 modified@@ -24,6 +24,30 @@ Changelog --------- +4.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` +* ``Bump Trino version to fix non-working DML queries (#27168)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Allow setting client tags for trino connection (#27213)`` + * ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Allow session properties for trino connection (#27095)`` + 4.1.0 .....
airflow/providers/trino/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Trino <https://trino.io/>`__ versions: + - 4.2.0 - 4.1.0 - 4.0.1 - 4.0.0
airflow/providers/vertica/CHANGELOG.rst+20 −0 modified@@ -24,6 +24,26 @@ Changelog --------- +3.3.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Add SQLExecuteQueryOperator (#25717)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + 3.2.1 .....
airflow/providers/vertica/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Vertica <https://www.vertica.com/>`__ versions: + - 3.3.0 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/yandex/CHANGELOG.rst+22 −0 modified@@ -24,6 +24,28 @@ Changelog --------- +3.2.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Features +~~~~~~~~ + +* ``Allow no extra prefix in yandex hook (#27040)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + 4.0.0 .....
airflow/providers/yandex/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | Yandex including `Yandex.Cloud <https://cloud.yandex.com/>`__ versions: + - 3.2.0 - 3.1.0 - 3.0.0 - 2.2.3
airflow/providers/zendesk/CHANGELOG.rst+25 −0 modified@@ -24,6 +24,31 @@ Changelog --------- +4.1.0 +..... + +This release of provider is only available for Airflow 2.3+ as explained in the +`Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_. + +Misc +~~~~ + +* ``Move min airflow version to 2.3.0 for all providers (#27196)`` + +Bug Fixes +~~~~~~~~~ + +* ``fix zendesk change log (#27363)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add documentation for July 2022 Provider's release (#25030)`` + * ``Enable string normalization in python formatting - providers (#27205)`` + * ``Update docs for September Provider's release (#26731)`` + * ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` + * ``Prepare docs for new providers release (August 2022) (#25618)`` + * ``Move provider dependencies to inside provider folders (#24672)`` + 4.0.0 .....
airflow/providers/zendesk/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Zendesk <https://www.zendesk.com/>`__ versions: + - 4.1.0 - 4.0.0 - 3.0.3 - 3.0.2
docs/apache-airflow-providers-airbyte/commits.rst+18 −1 modified@@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`6861bcc03f <https://github.com/apache/airflow/commit/6861bcc03fa2177ad96cf493dcc19826849f92e3>`_ 2022-08-04 ``AIP-47 - Migrate Airbyte DAGs to new design (#25135)`` +================================================================================================= =========== ==================================================================================== + 3.1.0 ..... -Latest change: 2022-06-29 +Latest change: 2022-07-13 ================================================================================================= =========== ================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================== +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` `c118b2836f <https://github.com/apache/airflow/commit/c118b2836f7211a0c3762cff8634b7b9a0d1cf0b>`_ 2022-06-29 ``'AirbyteHook' add cancel job option (#24593)`` `510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)``
docs/apache-airflow-providers-airbyte/index.rst+4 −4 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-airbyte `Airbyte <https://airbyte.io/>`__ -Release: 3.1.0 +Release: 3.2.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ================================= ================== PIP package Version required ================================= ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``apache-airflow-providers-http`` ================================= ================== @@ -114,7 +114,7 @@ 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-airbyte 3.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.1.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-airbyte 3.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.1.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-airbyte 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-airbyte-3.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-airbyte 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_airbyte-3.2.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/airbyte/CHANGELOG.rst
docs/apache-airflow-providers-alibaba/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.2.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`00af5c007e <https://github.com/apache/airflow/commit/00af5c007ef2200401b53c40236e664758e47f27>`_ 2022-11-14 ``Replace urlparse with urlsplit (#27389)`` +`8c15b0a6d1 <https://github.com/apache/airflow/commit/8c15b0a6d1a846cc477618e326a50cd96f76380f>`_ 2022-11-07 ``Use log.exception where more economical than log.error (#27517)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 2.1.0 ..... -Latest change: 2022-09-18 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `1f7b296227 <https://github.com/apache/airflow/commit/1f7b296227fee772de9ba15af6ce107937ef9b9b>`_ 2022-09-18 ``Auto tail file logs in Web UI (#26169)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-alibaba/index.rst+2 −2 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-alibaba Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com//>`__). -Release: 2.1.0 +Release: 2.2.0 Provider package ---------------- @@ -86,7 +86,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``oss2`` ``>=2.14.0`` ================== ==================
docs/apache-airflow-providers-amazon/commits.rst+49 −1 modified@@ -28,14 +28,62 @@ For high-level changelog, see :doc:`package information including changelog <ind +6.1.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ============================================================================================================= +Commit Committed Subject +================================================================================================= =========== ============================================================================================================= +`00af5c007e <https://github.com/apache/airflow/commit/00af5c007ef2200401b53c40236e664758e47f27>`_ 2022-11-14 ``Replace urlparse with urlsplit (#27389)`` +`0a059eea67 <https://github.com/apache/airflow/commit/0a059eea6721cc8c8f33e288003dd4f9559774ae>`_ 2022-11-11 ``sagemaker operators: mutualize init of aws_conn_id (#27579)`` +`c490a328f4 <https://github.com/apache/airflow/commit/c490a328f4d0073052d8b5205c7c4cab96c3d559>`_ 2022-11-11 ``CloudWatch task handler doesn't fall back to local logs when Amazon CloudWatch logs aren't found (#27564)`` +`9f9ab30218 <https://github.com/apache/airflow/commit/9f9ab3021800b5cebbf9c7190716ab753a020dbe>`_ 2022-11-11 ``SagemakerProcessingOperator stopped honoring 'existing_jobs_found' (#27456)`` +`f919abc918 <https://github.com/apache/airflow/commit/f919abc9183424ccb1c5a83a0cfa055c73845b6d>`_ 2022-11-10 ``Fix backwards compatibility for RedshiftSQLOperator (#27602)`` +`a5c0aeb566 <https://github.com/apache/airflow/commit/a5c0aeb5668625fe2fdf236a742cb9dc81d2a746>`_ 2022-11-10 ``Add info about JSON Connection format for AWS SSM Parameter Store Secrets Backend (#27134)`` +`2ef15c5da0 <https://github.com/apache/airflow/commit/2ef15c5da0261a8b519913db4a0d0c3773a91e96>`_ 2022-11-10 ``Add default name to EMR Serverless jobs (#27458)`` +`4dc9b1c592 <https://github.com/apache/airflow/commit/4dc9b1c592497686dada05e45147b1364ec338ea>`_ 2022-11-08 ``Sagemaker hook: remove extra call at the end when waiting for completion (#27551)`` +`d479b99388 <https://github.com/apache/airflow/commit/d479b9938884eaeb23f230ad11371243b40eb84e>`_ 2022-11-07 ``Fix typo in redshift sql hook get_ui_field_behaviour (#27533)`` +`5cd78cf425 <https://github.com/apache/airflow/commit/5cd78cf425f6fedc380662ec9a9e37be51403ccb>`_ 2022-11-06 ``Upgrade dependencies in order to avoid backtracking (#27531)`` +`531f2d2116 <https://github.com/apache/airflow/commit/531f2d211658e13583189b65470d164af81bc40a>`_ 2022-11-04 ``Code quality improvements on sagemaker operators/hook (#27453)`` +`1bbd8fe3ef <https://github.com/apache/airflow/commit/1bbd8fe3ef4ca0362f033c99016f857329870dd1>`_ 2022-10-28 ``Fix example_emr_serverless system test (#27149)`` +`9e2eac3b6c <https://github.com/apache/airflow/commit/9e2eac3b6ce351d0fa9973fddf8bf6fd3918fb08>`_ 2022-10-28 ``Fix param in docstring RedshiftSQLHook get_table_primary_key method (#27330)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`6b2dc6f2cc <https://github.com/apache/airflow/commit/6b2dc6f2ccb8abeccd4decebbbbaeec0fb326116>`_ 2022-10-27 ``System test for SQL to S3 Transfer (AIP-47) (#27097)`` +`777b57f0c6 <https://github.com/apache/airflow/commit/777b57f0c6a8ca16df2b96fd17c26eab56b3f268>`_ 2022-10-26 ``Adding 'preserve_file_name' param to 'S3Hook.download_file' method (#26886)`` +`6a1a6f7bef <https://github.com/apache/airflow/commit/6a1a6f7befed1be95d84a6db64fb96eef63d02ac>`_ 2022-10-26 ``Adds s3_key_prefix to template fields (#27207)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`737e50a02a <https://github.com/apache/airflow/commit/737e50a02a7031bf0123e57496a55e477cb61b8c>`_ 2022-10-21 ``Fix assume role if user explicit set credentials (#26946)`` +`0e8dcdc4ff <https://github.com/apache/airflow/commit/0e8dcdc4ffbc33da5bc6864fdb16d2d01bdfdcaf>`_ 2022-10-21 ``Add GlacierUploadArchiveOperator (#26652)`` +`a2413cf6ca <https://github.com/apache/airflow/commit/a2413cf6ca8b93e491a48af11d769cd13bce8884>`_ 2022-10-19 ``Add RdsStopDbOperator and RdsStartDbOperator (#27076)`` +`d4bfccb3c9 <https://github.com/apache/airflow/commit/d4bfccb3c90d889863bb1d1500ad3158fc833aae>`_ 2022-10-19 ``ECS Buglette (#26921)`` +`9fed22fc99 <https://github.com/apache/airflow/commit/9fed22fc99a3a959dab1acde51d87a996f3b6049>`_ 2022-10-18 ``'GoogleApiToS3Operator' : add 'gcp_conn_id' to template fields (#27017)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +`f8d7290178 <https://github.com/apache/airflow/commit/f8d7290178dba6b96ba0ec2cc28a5c4289902229>`_ 2022-10-10 ``Improve testing AWS Connection response (#26953)`` +`66294de4e0 <https://github.com/apache/airflow/commit/66294de4e081e1c65731296c66824ae847bdca7d>`_ 2022-10-10 ``Fix failure state in waiter call for EmrServerlessStartJobOperator. (#26853)`` +`62d5bab3b4 <https://github.com/apache/airflow/commit/62d5bab3b4cdb423c668b0f2e29d5c52b8ca0ca4>`_ 2022-10-10 ``Convert emr_eks example dag to system test (#26723)`` +`e68c8b9d52 <https://github.com/apache/airflow/commit/e68c8b9d52399ed1470b2d54e6dd13f3380a7788>`_ 2022-10-10 ``System test for Dynamo DB (#26729)`` +`f17abcc931 <https://github.com/apache/airflow/commit/f17abcc931382b8f3d3b777359b3d92f019fda38>`_ 2022-10-09 ``ECS System Test (#26808)`` +`db02c29789 <https://github.com/apache/airflow/commit/db02c29789e82af674701c676531ee5343bf5e5f>`_ 2022-10-09 ``RDS Instance System Tests (#26733)`` +`6dd4593829 <https://github.com/apache/airflow/commit/6dd4593829ffbd71b0f6c261233787caa5973178>`_ 2022-10-07 ``Fix a bunch of deprecation warnings AWS tests (#26857)`` +`8a1bbcfcb3 <https://github.com/apache/airflow/commit/8a1bbcfcb31c1adf5c0ea2dff03b507f584ad1f3>`_ 2022-10-06 ``Avoid circular imports in AWS Secrets Backends if obtain secrets from config (#26784)`` +`f3ad164aef <https://github.com/apache/airflow/commit/f3ad164aefb4915ce8c7725a43ddbcd61c830aa5>`_ 2022-10-01 ``Add information about Amazon Elastic MapReduce Connection (#26687)`` +`9c59312fbc <https://github.com/apache/airflow/commit/9c59312fbcf113d56ee0a61e018dfd7cef725af7>`_ 2022-10-01 ``Fix null strings bug in SqlToS3Operator in non parquet formats (#26676)`` +`677df10254 <https://github.com/apache/airflow/commit/677df102542ab85aab4efbbceb6318a3c7965e2b>`_ 2022-09-30 ``Add BatchOperator template fields (#26805)`` +================================================================================================= =========== ============================================================================================================= + 6.0.0 ..... -Latest change: 2022-09-27 +Latest change: 2022-09-28 ================================================================================================= =========== =========================================================================================================== Commit Committed Subject ================================================================================================= =========== =========================================================================================================== +`ec1615b589 <https://github.com/apache/airflow/commit/ec1615b589d60416cac449bea5fa777a5eda4757>`_ 2022-09-28 ``Fix errors in CHANGELOGS for slack and amazon (#26746)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `4970bccfa6 <https://github.com/apache/airflow/commit/4970bccfa6a0e4748061d3d1a6b25805d648f299>`_ 2022-09-27 ``Change links to 'boto3' documentation (#26708)`` `89e44c46ad <https://github.com/apache/airflow/commit/89e44c46add19b37e82d0769ce08d57885732856>`_ 2022-09-27 ``Remove duplicated connection-type within the provider (#26628)`` `9b232846b3 <https://github.com/apache/airflow/commit/9b232846b3aef2f5819e467e4cc582aa44883460>`_ 2022-09-26 ``Redshift to S3 and S3 to Redshift System test (AIP-47) (#26613)``
docs/apache-airflow-providers-amazon/index.rst+9 −9 modified@@ -66,7 +66,7 @@ Package apache-airflow-providers-amazon Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__). -Release: 6.0.0 +Release: 6.1.0 Provider package ---------------- @@ -87,17 +87,17 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` -``boto3`` ``>=1.15.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` +``boto3`` ``>=1.24.0`` ``watchtower`` ``~=2.0.1`` ``jsonpath_ng`` ``>=1.5.3`` ``redshift_connector`` ``>=2.0.888`` ``sqlalchemy_redshift`` ``>=0.8.6`` ``pandas`` ``>=0.17.1`` -``mypy-boto3-rds`` ``>=1.21.0`` -``mypy-boto3-redshift-data`` ``>=1.21.0`` -``mypy-boto3-appflow`` ``>=1.21.0`` +``mypy-boto3-rds`` ``>=1.24.0`` +``mypy-boto3-redshift-data`` ``>=1.24.0`` +``mypy-boto3-appflow`` ``>=1.24.0`` ======================================= ================== Cross provider package dependencies @@ -134,7 +134,7 @@ 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 6.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-6.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-6.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-6.0.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-amazon 6.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-6.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-6.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-6.0.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-amazon 6.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-6.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-6.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-6.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-amazon 6.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-6.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-6.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-6.1.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/amazon/CHANGELOG.rst
docs/apache-airflow-providers-apache-beam/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.0 +..... + +Latest change: 2022-11-11 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`e8ab8ccc0e <https://github.com/apache/airflow/commit/e8ab8ccc0e7b82efc0dbf8bd31e0bbf57b1d5637>`_ 2022-11-11 ``Add backward compatibility with old versions of Apache Beam (#27263)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 4.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `b4a5783a2a <https://github.com/apache/airflow/commit/b4a5783a2a90d9a0dc8abe5f2a47e639bfb61646>`_ 2022-06-06 ``chore: Refactoring and Cleaning Apache Providers (#24219)``
docs/apache-airflow-providers-apache-beam/index.rst+5 −5 modified@@ -63,7 +63,7 @@ Package apache-airflow-providers-apache-beam `Apache Beam <https://beam.apache.org/>`__. -Release: 4.0.0 +Release: 4.1.0 Provider package ---------------- @@ -84,8 +84,8 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` -``apache-beam`` ``>=2.39.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-beam`` ``>=2.33.0`` ================== ================== Cross provider package dependencies @@ -113,7 +113,7 @@ 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-apache-beam 4.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-4.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-4.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-4.0.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-beam 4.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-4.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-4.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-4.0.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-beam 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-4.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-beam 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-4.1.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/apache/beam/CHANGELOG.rst
docs/apache-airflow-providers-apache-cassandra/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `b4a5783a2a <https://github.com/apache/airflow/commit/b4a5783a2a90d9a0dc8abe5f2a47e639bfb61646>`_ 2022-06-06 ``chore: Refactoring and Cleaning Apache Providers (#24219)``
docs/apache-airflow-providers-apache-cassandra/index.rst+2 −2 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-cassandra `Apache Cassandra <http://cassandra.apache.org/>`__. -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ==================== ================== PIP package Version required ==================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``cassandra-driver`` ``>=3.13.0`` ==================== ==================
docs/apache-airflow-providers-apache-drill/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.3.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================= + 2.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-apache-drill/index.rst+5 −5 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-drill `Apache Drill <https://drill.apache.org/>`__. -Release: 2.2.1 +Release: 2.3.0 Provider package ---------------- @@ -85,8 +85,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``sqlalchemy-drill`` ``>=1.1.0`` ======================================= ================== @@ -115,7 +115,7 @@ 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-apache-drill 2.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-drill 2.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-drill 2.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-drill-2.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-drill 2.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_drill-2.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/apache/drill/CHANGELOG.rst
docs/apache-airflow-providers-apache-druid/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-10-31 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`8b5f1d9193 <https://github.com/apache/airflow/commit/8b5f1d91936bb87ba9fa5488715713e94297daca>`_ 2022-10-31 ``BugFix - Druid Airflow Exception to about content (#27174)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 3.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-apache-druid/index.rst+5 −5 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-druid `Apache Druid <https://druid.apache.org/>`__. -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -85,8 +85,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``pydruid`` ``>=0.4.1`` ======================================= ================== @@ -116,7 +116,7 @@ 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-apache-druid 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-druid 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-druid 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-druid-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-druid 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_druid-3.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/apache/druid/CHANGELOG.rst
docs/apache-airflow-providers-apache-hdfs/commits.rst+20 −4 modified@@ -29,16 +29,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 3.1.0 ..... -Latest change: 2022-07-19 +Latest change: 2022-08-10 -================================================================================================= =========== ===================================================== +================================================================================================= =========== ================================================================= Commit Committed Subject -================================================================================================= =========== ===================================================== +================================================================================================= =========== ================================================================= +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `52cf579352 <https://github.com/apache/airflow/commit/52cf5793523d3acab480b1933fb7cb33db1c15c7>`_ 2022-07-19 ``Adding Authentication to webhdfs sensor (#25110)`` -================================================================================================= =========== ===================================================== +================================================================================================= =========== ================================================================= 3.0.1 .....
docs/apache-airflow-providers-apache-hdfs/index.rst+2 −2 modified@@ -54,7 +54,7 @@ Package apache-airflow-providers-apache-hdfs and `WebHDFS <https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/WebHDFS.html>`__. -Release: 3.1.0 +Release: 3.2.0 Provider package ---------------- @@ -75,7 +75,7 @@ Requirements ================================= ================== PIP package Version required ================================= ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``snakebite-py3`` ``hdfs[avro,dataframe,kerberos]`` ``>=2.0.4`` ================================= ==================
docs/apache-airflow-providers-apache-hive/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`150dd927c3 <https://github.com/apache/airflow/commit/150dd927c3297daccab507bc5a5f2c3a32f24d5f>`_ 2022-11-14 ``Filter out invalid schemas in Hive hook (#27647)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 4.0.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-apache-hive/index.rst+5 −5 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-apache-hive `Apache Hive <https://hive.apache.org/>`__ -Release: 4.0.1 +Release: 4.1.0 Provider package ---------------- @@ -86,8 +86,8 @@ Requirements ======================================= ================================== PIP package Version required ======================================= ================================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``hmsclient`` ``>=0.1.0`` ``pandas`` ``>=0.17.1`` ``pyhive[hive]`` ``>=0.6.0`` @@ -126,7 +126,7 @@ 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-apache-hive 4.0.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-4.0.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-4.0.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-4.0.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-hive 4.0.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-4.0.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-4.0.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-4.0.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-hive 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-4.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-hive 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-4.1.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/apache/hive/CHANGELOG.rst
docs/apache-airflow-providers-apache-kylin/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`96b01a8012 <https://github.com/apache/airflow/commit/96b01a8012d164df7c24c460149d3b79ecad3901>`_ 2022-07-05 ``Remove "bad characters" from our codebase (#24841)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `b4a5783a2a <https://github.com/apache/airflow/commit/b4a5783a2a90d9a0dc8abe5f2a47e639bfb61646>`_ 2022-06-06 ``chore: Refactoring and Cleaning Apache Providers (#24219)``
docs/apache-airflow-providers-apache-kylin/index.rst+2 −2 modified@@ -58,7 +58,7 @@ Package apache-airflow-providers-apache-kylin `Apache Kylin <https://kylin.apache.org/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -79,7 +79,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``kylinpy`` ``>=2.6`` ================== ==================
docs/apache-airflow-providers-apache-livy/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-10-31 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`7dd7400dd4 <https://github.com/apache/airflow/commit/7dd7400dd4588e063078986026e14ea606a55a76>`_ 2022-10-31 ``Add template to livy operator documentation (#27404)`` +`f75582a8eb <https://github.com/apache/airflow/commit/f75582a8ebe989b342aa0a29e66a2df6e16d6848>`_ 2022-10-31 ``Add Spark's 'appId' to xcom output (#27376)`` +`0c94eff950 <https://github.com/apache/airflow/commit/0c94eff95071c126f97e5f2a438a754ed29549d0>`_ 2022-10-31 ``add template field renderer to livy operator (#27321)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 3.1.0 ..... -Latest change: 2022-08-07 +Latest change: 2022-08-10 ================================================================================================= =========== ================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================== +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `7d3e799f7e <https://github.com/apache/airflow/commit/7d3e799f7e012d2d5c1fe24ce2bea01e68a5a193>`_ 2022-08-07 ``Add auth_type to LivyHook (#25183)`` `d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)``
docs/apache-airflow-providers-apache-livy/index.rst+4 −4 modified@@ -63,7 +63,7 @@ Package apache-airflow-providers-apache-livy `Apache Livy <https://livy.apache.org/>`__ -Release: 3.1.0 +Release: 3.2.0 Provider package ---------------- @@ -84,7 +84,7 @@ Requirements ================================= ================== PIP package Version required ================================= ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``apache-airflow-providers-http`` ================================= ================== @@ -113,7 +113,7 @@ 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-apache-livy 3.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.1.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-livy 3.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.1.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-livy 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-livy 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.2.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/apache/livy/CHANGELOG.rst
docs/apache-airflow-providers-apache-pig/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.0.0 +..... + +Latest change: 2022-11-13 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`be8a62e596 <https://github.com/apache/airflow/commit/be8a62e596a0dc0f935114a9d585007b497312a2>`_ 2022-11-13 ``Pig cli connection properties cannot be passed by connection extra (#27644)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-apache-pig/index.rst+10 −1 modified@@ -63,7 +63,7 @@ Package apache-airflow-providers-apache-pig `Apache Pig <https://pig.apache.org/>`__ -Release: 3.0.0 +Release: 4.0.0 Provider package ---------------- @@ -78,4 +78,13 @@ You can install this package on top of an existing Airflow 2 installation (see ` for the minimum Airflow version supported) via ``pip install apache-airflow-providers-apache-pig`` +Requirements +------------ + +================== ================== +PIP package Version required +================== ================== +``apache-airflow`` ``>=2.3.0`` +================== ================== + .. include:: ../../airflow/providers/apache/pig/CHANGELOG.rst
docs/apache-airflow-providers-apache-pinot/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.0.0 +..... + +Latest change: 2022-11-13 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`1d4fd5c6ea <https://github.com/apache/airflow/commit/1d4fd5c6eacab0b88f8660f9d780174434393f1a>`_ 2022-11-13 ``The pinot-admin.sh command is now hard-coded. (#27641)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`36b9217415 <https://github.com/apache/airflow/commit/36b921741531612637cb244e938cd0bd1cad74a8>`_ 2022-10-24 ``Bump pinotdb version (#27201)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 3.2.1 ..... -Latest change: 2022-09-27 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `5ff0bc69a5 <https://github.com/apache/airflow/commit/5ff0bc69a5cf09122a91b5e28e72f1a58d443f03>`_ 2022-09-27 ``Fix PinotDB dependencies (#26705)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)``
docs/apache-airflow-providers-apache-pinot/index.rst+6 −7 modified@@ -45,7 +45,7 @@ Package apache-airflow-providers-apache-pinot `Apache Pinot <https://pinot.apache.org/>`__ -Release: 3.2.1 +Release: 4.0.0 Provider package ---------------- @@ -66,10 +66,9 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` -``pinotdb`` ``>0.1.2`` -``ciso8601`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` +``pinotdb`` ``>0.4.7`` ======================================= ================== Cross provider package dependencies @@ -97,7 +96,7 @@ 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-apache-pinot 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-pinot 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-pinot 4.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.0.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-pinot 4.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.0.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/apache/pinot/CHANGELOG.rst
docs/apache-airflow-providers-apache-spark/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.0.0 +..... + +Latest change: 2022-11-13 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9358928815 <https://github.com/apache/airflow/commit/93589288156d56aff4b1f822b77695e3c58e4568>`_ 2022-11-13 ``Remove custom spark home and custom binarires for spark (#27646)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `b4a5783a2a <https://github.com/apache/airflow/commit/b4a5783a2a90d9a0dc8abe5f2a47e639bfb61646>`_ 2022-06-06 ``chore: Refactoring and Cleaning Apache Providers (#24219)``
docs/apache-airflow-providers-apache-spark/index.rst+2 −2 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-apache-spark `Apache Spark <https://spark.apache.org/>`__ -Release: 3.0.0 +Release: 4.0.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``pyspark`` ================== ==================
docs/apache-airflow-providers-apache-sqoop/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-apache-sqoop/index.rst+10 −1 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-apache-sqoop `Apache Sqoop <https://sqoop.apache.org/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -66,4 +66,13 @@ You can install this package on top of an existing Airflow 2 installation (see ` for the minimum Airflow version supported) via ``pip install apache-airflow-providers-apache-sqoop`` +Requirements +------------ + +================== ================== +PIP package Version required +================== ================== +``apache-airflow`` ``>=2.3.0`` +================== ================== + .. include:: ../../airflow/providers/apache/sqoop/CHANGELOG.rst
docs/apache-airflow-providers-arangodb/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`08b675cf66 <https://github.com/apache/airflow/commit/08b675cf6642171cb1c5ddfb09607b541db70b29>`_ 2022-06-13 ``Fix links to sources for examples (#24386)`` +================================================================================================= =========== ==================================================================================== + 2.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-arangodb/index.rst+2 −2 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-arangodb `ArangoDB <https://www.arangodb.com/>`__ -Release: 2.0.0 +Release: 2.1.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``python-arango`` ``>=7.3.2`` ================== ==================
docs/apache-airflow-providers-asana/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.0.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`81b5f50ae9 <https://github.com/apache/airflow/commit/81b5f50ae99eeadbaac093caa4cb41f1a51ca735>`_ 2022-10-22 ``Allow and prefer non-prefixed extra fields for AsanaHook (#27043)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 2.0.1 ..... -Latest change: 2022-06-29 +Latest change: 2022-07-13 ================================================================================================= =========== ============================================================================= Commit Committed Subject ================================================================================================= =========== ============================================================================= +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` `510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` `9c59831ee7 <https://github.com/apache/airflow/commit/9c59831ee78f14de96421c74986933c494407afa>`_ 2022-06-21 ``Update providers to use functools compat for ''cached_property'' (#24582)``
docs/apache-airflow-providers-asana/index.rst+2 −2 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-asana `Asana <https://app.asana.com/>`__ -Release: 2.0.1 +Release: 3.0.0 Provider package ---------------- @@ -86,7 +86,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``asana`` ``>=0.10`` ================== ==================
docs/apache-airflow-providers-atlassian-jira/commits.rst+12 −0 modified@@ -28,6 +28,18 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 1.0.0 .....
docs/apache-airflow-providers-atlassian-jira/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-atlassian-jira `Atlassian Jira <https://www.atlassian.com/>`__ -Release: 1.0.0 +Release: 1.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``JIRA`` ``>1.0.7`` ================== ==================
docs/apache-airflow-providers-celery/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-celery/index.rst+2 −2 modified@@ -46,7 +46,7 @@ Package apache-airflow-providers-celery `Celery <http://www.celeryproject.org/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -67,7 +67,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``celery`` ``>=5.2.3,<6`` ``flower`` ``>=1.0.0`` ================== ==================
docs/apache-airflow-providers-cloudant/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-cloudant/index.rst+2 −2 modified@@ -46,7 +46,7 @@ Package apache-airflow-providers-cloudant `IBM Cloudant <https://www.ibm.com/cloud/cloudant>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -67,7 +67,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``cloudant`` ``>=2.0`` ================== ==================
docs/apache-airflow-providers-cncf-kubernetes/commits.rst+33 −0 modified@@ -28,6 +28,39 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.0.0 +..... + +Latest change: 2022-11-11 + +================================================================================================= =========== ============================================================================================ +Commit Committed Subject +================================================================================================= =========== ============================================================================================ +`52593b061c <https://github.com/apache/airflow/commit/52593b061c32d071243c46fe45784a78b57a04b6>`_ 2022-11-11 ``Enable template rendering for env_vars field for the @task.kubernetes decorator (#27433)`` +`47a2b9ee7f <https://github.com/apache/airflow/commit/47a2b9ee7f1ff2cc1cc1aa1c3d1b523c88ba29fb>`_ 2022-11-09 ``Add container_resources as KubernetesPodOperator templatable (#27457)`` +`aefadb8c5b <https://github.com/apache/airflow/commit/aefadb8c5b9272613d5806b054a1b46edf29d82e>`_ 2022-11-08 ``Allow xcom sidecar container image to be configurable in KPO (#26766)`` +`2d2f0daad6 <https://github.com/apache/airflow/commit/2d2f0daad66416d565e874e35b6a487a21e5f7b1>`_ 2022-11-08 ``Fix KubernetesHook fail on an attribute absence (#25787)`` +`eee3df4570 <https://github.com/apache/airflow/commit/eee3df457063df04d0fa2e57431786c6f223f700>`_ 2022-11-07 ``Improve task_id to pod name conversion (#27524)`` +`8c15b0a6d1 <https://github.com/apache/airflow/commit/8c15b0a6d1a846cc477618e326a50cd96f76380f>`_ 2022-11-07 ``Use log.exception where more economical than log.error (#27517)`` +`20ecefa416 <https://github.com/apache/airflow/commit/20ecefa416640bc9a3afc2c86848ca2e2436f6a4>`_ 2022-11-05 ``KPO should use hook's get namespace method to get namespace (#27516)`` +`701239abc3 <https://github.com/apache/airflow/commit/701239abc372cb235b1c313198ae2ec429be4f91>`_ 2022-11-05 ``Remove deprecated backcompat objects for KPO (#27518)`` +`9337aa92c0 <https://github.com/apache/airflow/commit/9337aa92c082db36e82eb314585591394fe8ff27>`_ 2022-11-05 ``Remove support for node_selectors param in KPO (#27515)`` +`3aadc44a13 <https://github.com/apache/airflow/commit/3aadc44a13d0d100778792691a0341818723c51c>`_ 2022-11-03 ``Remove unused backcompat method in k8s hook (#27490)`` +`0c26ec07be <https://github.com/apache/airflow/commit/0c26ec07be96ae250dd2052f3c3bf552221d0e03>`_ 2022-10-28 ``Drop support for providing ''resource'' as dict in ''KubernetesPodOperator'' (#27197)`` +`4797a0322e <https://github.com/apache/airflow/commit/4797a0322ed4b73bc34d3967376479a42d9ba190>`_ 2022-10-28 ``Fix log message for kubernetes hooks (#26999)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`734995ff26 <https://github.com/apache/airflow/commit/734995ff26d97bcb63b0c8c3bfc1ab7f4bc4b010>`_ 2022-10-26 ``Add deprecation warning re unset namespace in k8s hook (#27202)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`14a45872e2 <https://github.com/apache/airflow/commit/14a45872e24a367ffc29df393f68e57fe3a089c6>`_ 2022-10-22 ``Remove extra__kubernetes__ prefix from k8s hook extras (#27021)`` +`3ecb8dd025 <https://github.com/apache/airflow/commit/3ecb8dd0259abfce37513509e8f67b9ede72af21>`_ 2022-10-22 ``Make namespace optional for KPO (#27116)`` +`c9e57687b0 <https://github.com/apache/airflow/commit/c9e57687b03807a36fac1c2c03ccf8ebb2e802b9>`_ 2022-10-21 ``Make pod name optional in KubernetesPodOperator (#27120)`` +`2752f2add1 <https://github.com/apache/airflow/commit/2752f2add1746a1b9fa005860d65ac3496770200>`_ 2022-10-12 ``Deprecate use of core get_kube_client in PodManager (#26848)`` +`5c97e5be48 <https://github.com/apache/airflow/commit/5c97e5be484ff572070b0ad320c5936bc028be93>`_ 2022-10-10 ``add container_name option for SparkKubernetesSensor (#26560)`` +`53d68049d9 <https://github.com/apache/airflow/commit/53d68049d9bf4cec6b7d57545f15409dab0caed1>`_ 2022-10-04 ``Don't consider airflow core conf for KPO (#26849)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +================================================================================================= =========== ============================================================================================ + 4.4.0 .....
docs/apache-airflow-providers-cncf-kubernetes/index.rst+1 −1 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-cncf-kubernetes `Kubernetes <https://kubernetes.io/>`__ -Release: 4.4.0 +Release: 5.0.0 Provider package ----------------
docs/apache-airflow-providers-common-sql/commits.rst+22 −1 modified@@ -28,14 +28,35 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.3.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`3ae98b824d <https://github.com/apache/airflow/commit/3ae98b824db437b2db928a73ac8b50c0a2f80124>`_ 2022-11-14 ``Use unused SQLCheckOperator.parameters in SQLCheckOperator.execute. (#27599)`` +`5c37b503f1 <https://github.com/apache/airflow/commit/5c37b503f118b8ad2585dff9949dd8fdb96689ed>`_ 2022-10-31 ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`87eb46bbc6 <https://github.com/apache/airflow/commit/87eb46bbc69c20148773d72e990fbd5d20076342>`_ 2022-10-26 ``Common sql bugfixes and improvements (#26761)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +`76014609c0 <https://github.com/apache/airflow/commit/76014609c07bfa307ef7598794d1c0404c5279bd>`_ 2022-10-09 ``DbApiHook consistent insert_rows logging (#26758)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 1.2.0 ..... -Latest change: 2022-08-30 +Latest change: 2022-09-05 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`25d0baa4ee <https://github.com/apache/airflow/commit/25d0baa4ee69769ff339931f76ebace28c4315f2>`_ 2022-09-05 ``Prepare bug-fix release of providers out of band (#26109)`` `27e2101f6e <https://github.com/apache/airflow/commit/27e2101f6ee5567b2843cbccf1dca0b0e7c96186>`_ 2022-08-30 ``Better error messsage for pre-common-sql providers (#26051)`` `a74d934991 <https://github.com/apache/airflow/commit/a74d9349919b340638f0db01bc3abb86f71c6093>`_ 2022-08-27 ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` `874a95cc17 <https://github.com/apache/airflow/commit/874a95cc17c3578a0d81c5e034cb6590a92ea310>`_ 2022-08-22 ``Discard semicolon stripping in SQL hook (#25855)``
docs/apache-airflow-providers-common-sql/index.rst+1 −1 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-common-sql `Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__ -Release: 1.2.0 +Release: 1.3.0 Provider package ----------------
docs/apache-airflow-providers-databricks/commits.rst+18 −1 modified@@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.4.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`00af5c007e <https://github.com/apache/airflow/commit/00af5c007ef2200401b53c40236e664758e47f27>`_ 2022-11-14 ``Replace urlparse with urlsplit (#27389)`` +`eb06c65556 <https://github.com/apache/airflow/commit/eb06c655561737a82d6f99b233c28bbc7f32a28d>`_ 2022-11-11 ``Use new job search API for triggering Databricks job by name (#27446)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================= + 3.3.0 ..... -Latest change: 2022-09-27 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `89e44c46ad <https://github.com/apache/airflow/commit/89e44c46add19b37e82d0769ce08d57885732856>`_ 2022-09-27 ``Remove duplicated connection-type within the provider (#26628)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `5066844513 <https://github.com/apache/airflow/commit/50668445137e4037bb4a3b652bec22e53d1eddd7>`_ 2022-09-09 ``D400 first line should end with period batch02 (#25268)``
docs/apache-airflow-providers-databricks/index.rst+5 −5 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-databricks `Databricks <https://databricks.com/>`__ -Release: 3.3.0 +Release: 3.4.0 Provider package ---------------- @@ -86,8 +86,8 @@ Requirements ======================================= =================== PIP package Version required ======================================= =================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``requests`` ``>=2.27,<3`` ``databricks-sql-connector`` ``>=2.0.0, <3.0.0`` ``aiohttp`` ``>=3.6.3, <4`` @@ -118,7 +118,7 @@ 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-databricks 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-3.3.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-databricks 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-3.3.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-databricks 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-3.4.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-databricks 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-3.4.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/databricks/CHANGELOG.rst
docs/apache-airflow-providers-datadog/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`96b01a8012 <https://github.com/apache/airflow/commit/96b01a8012d164df7c24c460149d3b79ecad3901>`_ 2022-07-05 ``Remove "bad characters" from our codebase (#24841)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-datadog/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-datadog `Datadog <https://www.datadoghq.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``datadog`` ``>=0.14.0`` ================== ==================
docs/apache-airflow-providers-dbt-cloud/commits.rst+14 −1 modified@@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.3.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 2.2.0 ..... -Latest change: 2022-09-26 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `55d8bc0bba <https://github.com/apache/airflow/commit/55d8bc0bbabe0f152b3dd3ae1511327af175f19d>`_ 2022-09-26 ``Add 'DbtCloudListJobsOperator' (#26475)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-dbt-cloud/index.rst+4 −4 modified@@ -69,7 +69,7 @@ Package apache-airflow-providers-dbt-cloud `dbt Cloud <https://www.getdbt.com/product/what-is-dbt/>`__ -Release: 2.2.0 +Release: 2.3.0 Provider package ---------------- @@ -90,7 +90,7 @@ Requirements ================================= ================== PIP package Version required ================================= ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``apache-airflow-providers-http`` ================================= ================== @@ -119,7 +119,7 @@ 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-dbt-cloud 2.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-2.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-2.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-2.2.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-dbt-cloud 2.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-2.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-2.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-2.2.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-dbt-cloud 2.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-2.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-2.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-2.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-dbt-cloud 2.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-2.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-2.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-2.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/dbt/cloud/CHANGELOG.rst
docs/apache-airflow-providers-dingding/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-dingding/index.rst+13 −3 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-dingding `Dingding <https://oapi.dingtalk.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -79,6 +79,16 @@ You can install this package on top of an existing Airflow 2 installation (see ` for the minimum Airflow version supported) via ``pip install apache-airflow-providers-dingding`` +Requirements +------------ + +================================= ================== +PIP package Version required +================================= ================== +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-http`` +================================= ================== + Cross provider package dependencies ----------------------------------- @@ -104,7 +114,7 @@ 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-dingding 3.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.0.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-dingding 3.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.0.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-dingding 3.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dingding-3.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-dingding 3.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dingding-3.1.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/dingding/CHANGELOG.rst
docs/apache-airflow-providers-discord/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-discord/index.rst+13 −3 modified@@ -46,7 +46,7 @@ Package apache-airflow-providers-discord `Discord <https://discordapp.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -61,6 +61,16 @@ You can install this package on top of an existing Airflow 2 installation (see ` for the minimum Airflow version supported) via ``pip install apache-airflow-providers-discord`` +Requirements +------------ + +================================= ================== +PIP package Version required +================================= ================== +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-http`` +================================= ================== + Cross provider package dependencies ----------------------------------- @@ -86,7 +96,7 @@ 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-discord 3.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.0.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-discord 3.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.0.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-discord 3.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-discord-3.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-discord 3.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_discord-3.1.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/discord/CHANGELOG.rst
docs/apache-airflow-providers-docker/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-11-10 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`a504a8267d <https://github.com/apache/airflow/commit/a504a8267dd5530923bbe2c8ec4d1b409f909d83>`_ 2022-11-10 ``Add ipc_mode for DockerOperator (#27553)`` +`1add2f7c41 <https://github.com/apache/airflow/commit/1add2f7c413dd776170c98d0bf98f8bcdbc4889f>`_ 2022-10-28 ``Add env-file parameter to Docker Operator (#26951)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 3.2.0 ..... -Latest change: 2022-09-27 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `19d6f54704 <https://github.com/apache/airflow/commit/19d6f54704949d017b028e644bbcf45f5b53120b>`_ 2022-09-27 ``Add logging options to docker operator (#26653)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `55928b9da6 <https://github.com/apache/airflow/commit/55928b9da60cab415adba90831e14c5b77b52714>`_ 2022-09-06 ``Implement ExternalPythonOperator (#25780)``
docs/apache-airflow-providers-docker/index.rst+2 −1 modified@@ -59,7 +59,7 @@ Package apache-airflow-providers-docker `Docker <https://docs.docker.com/install/>`__ -Release: 3.2.0 +Release: 3.3.0 Provider package ---------------- @@ -82,6 +82,7 @@ PIP package Version required ================== ================== ``apache-airflow`` ``>=2.4.0`` ``docker`` ``>=5.0.3`` +``python-dotenv`` ``>=0.21.0`` ================== ================== .. include:: ../../airflow/providers/docker/CHANGELOG.rst
docs/apache-airflow-providers-elasticsearch/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.3.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 4.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-elasticsearch/index.rst+5 −5 modified@@ -66,7 +66,7 @@ Package apache-airflow-providers-elasticsearch `Elasticsearch <https://www.elastic.co/elasticsearch>`__ -Release: 4.2.1 +Release: 4.3.0 Provider package ---------------- @@ -87,8 +87,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``elasticsearch`` ``>7`` ``elasticsearch-dbapi`` ``elasticsearch-dsl`` ``>=5.0.0`` @@ -119,7 +119,7 @@ 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-elasticsearch 4.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-elasticsearch 4.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-elasticsearch 4.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-4.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-elasticsearch 4.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-4.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/elasticsearch/CHANGELOG.rst
docs/apache-airflow-providers-exasol/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.0 +..... + +Latest change: 2022-10-31 + +================================================================================================= =========== ================================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================================ +`5c37b503f1 <https://github.com/apache/airflow/commit/5c37b503f118b8ad2585dff9949dd8fdb96689ed>`_ 2022-10-31 ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ================================================================================ + 4.0.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-exasol/index.rst+5 −5 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-exasol `Exasol <https://docs.exasol.com/home.htm>`__ -Release: 4.0.1 +Release: 4.1.0 Provider package ---------------- @@ -72,8 +72,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``pyexasol`` ``>=0.5.1`` ``pandas`` ``>=0.17.1`` ======================================= ================== @@ -103,7 +103,7 @@ 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-exasol 4.0.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.0.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.0.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.0.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-exasol 4.0.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.0.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.0.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.0.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-exasol 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-exasol 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.1.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/exasol/CHANGELOG.rst
docs/apache-airflow-providers-facebook/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 3.0.1 ..... -Latest change: 2022-06-29 +Latest change: 2022-07-13 ================================================================================================= =========== ============================================================================= Commit Committed Subject ================================================================================================= =========== ============================================================================= +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` `510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` `9c59831ee7 <https://github.com/apache/airflow/commit/9c59831ee78f14de96421c74986933c494407afa>`_ 2022-06-21 ``Update providers to use functools compat for ''cached_property'' (#24582)``
docs/apache-airflow-providers-facebook/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-facebook `Facebook Ads <http://business.facebook.com/>`__ -Release: 3.0.1 +Release: 3.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ===================== ================== PIP package Version required ===================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``facebook-business`` ``>=6.0.2`` ===================== ==================
docs/apache-airflow-providers-ftp/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-10-23 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 3.1.0 ..... -Latest change: 2022-07-07 +Latest change: 2022-07-13 ================================================================================================= =========== ================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================== +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `64412ee867 <https://github.com/apache/airflow/commit/64412ee867fe0918cc3b616b3fb0b72dcd88125c>`_ 2022-07-07 ``Add blocksize arg for ftp hook (#24860)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` `510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)``
docs/apache-airflow-providers-ftp/index.rst+1 −1 modified@@ -52,7 +52,7 @@ Package apache-airflow-providers-ftp `File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__ -Release: 3.1.0 +Release: 3.2.0 Provider package ----------------
docs/apache-airflow-providers-github/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.2.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 2.1.0 ..... -Latest change: 2022-07-11 +Latest change: 2022-07-13 ================================================================================================= =========== ================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================== +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `ef79a0d1c4 <https://github.com/apache/airflow/commit/ef79a0d1c4c0a041d7ebf83b93cbb25aa3778a70>`_ 2022-07-11 ``Only assert stuff for mypy when type checking (#24937)`` `7f749b653c <https://github.com/apache/airflow/commit/7f749b653ce363b1450346b61c7f6c406f72cd66>`_ 2022-07-07 ``Add test connection functionality to 'GithubHook' (#24903)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)``
docs/apache-airflow-providers-github/index.rst+2 −2 modified@@ -71,7 +71,7 @@ Package apache-airflow-providers-github `GitHub <https://www.github.com/>`__ -Release: 2.1.0 +Release: 2.2.0 Provider package ---------------- @@ -92,7 +92,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``pygithub`` ================== ==================
docs/apache-airflow-providers-google/commits.rst+49 −1 modified@@ -35,14 +35,62 @@ For high-level changelog, see :doc:`package information including changelog <ind +8.5.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ========================================================================================================== +Commit Committed Subject +================================================================================================= =========== ========================================================================================================== +`00af5c007e <https://github.com/apache/airflow/commit/00af5c007ef2200401b53c40236e664758e47f27>`_ 2022-11-14 ``Replace urlparse with urlsplit (#27389)`` +`1059de6294 <https://github.com/apache/airflow/commit/1059de6294cf89a085c02036d117000bd98435dc>`_ 2022-11-11 ``Dataform operators, links, update system tests and docs (#27144)`` +`3aed495f50 <https://github.com/apache/airflow/commit/3aed495f50e8bc0e22ff90efee7671a73168b19e>`_ 2022-11-11 ``Rename hook bigquery function '_bq_cast' to 'bq_cast' (#27543)`` +`e8ab8ccc0e <https://github.com/apache/airflow/commit/e8ab8ccc0e7b82efc0dbf8bd31e0bbf57b1d5637>`_ 2022-11-11 ``Add backward compatibility with old versions of Apache Beam (#27263)`` +`59e3198f7e <https://github.com/apache/airflow/commit/59e3198f7e5f3f4d6999d930fa505e6bd307f325>`_ 2022-11-10 ``Change dataprep system tests assets (#26488)`` +`98a9c574e3 <https://github.com/apache/airflow/commit/98a9c574e3e30b3aea710c23e18955e88871c9e6>`_ 2022-11-08 ``set project_id and location when canceling BigQuery job (#27521)`` +`a691ab56a6 <https://github.com/apache/airflow/commit/a691ab56a6544dfab8b3facbceeeee0993beb7c0>`_ 2022-11-08 ``Add new Compute Engine Operators and fix system tests (#25608)`` +`199359bb38 <https://github.com/apache/airflow/commit/199359bb3886699904ca075de7bd5fdfe5105c5f>`_ 2022-11-07 ``Use non-deprecated method for on_kill in BigQueryHook (#27547)`` +`7297892558 <https://github.com/apache/airflow/commit/7297892558e94c8cc869b175e904ca96e0752afe>`_ 2022-11-07 ``Remove unnecessary newlines around single arg in signature (#27525)`` +`5cd78cf425 <https://github.com/apache/airflow/commit/5cd78cf425f6fedc380662ec9a9e37be51403ccb>`_ 2022-11-06 ``Upgrade dependencies in order to avoid backtracking (#27531)`` +`332c01d6e0 <https://github.com/apache/airflow/commit/332c01d6e0bef41740e8fbc2c9600e7b3066615b>`_ 2022-10-31 ``Allow values in WorkflowsCreateExecutionOperator execution argument to be dicts (#27361)`` +`50d217a129 <https://github.com/apache/airflow/commit/50d217a1290f891be5d6be743b00b552fc10da20>`_ 2022-10-31 ``DataflowStopJobOperator Operator (#27033)`` +`eb8c0cf0d2 <https://github.com/apache/airflow/commit/eb8c0cf0d2c657824f666e874ec4e21940931ea4>`_ 2022-10-31 ``Migration of System Tests: Cloud Composer (AIP-47) (#27227)`` +`528ecbbc00 <https://github.com/apache/airflow/commit/528ecbbc005566e13f7a6a1cafb4962733c6efb0>`_ 2022-10-31 ``Rewrite system tests for ML Engine service (#26915)`` +`bcb026bf7c <https://github.com/apache/airflow/commit/bcb026bf7c8031ff64c8b6019d248b12d6aa71e0>`_ 2022-10-31 ``use the proper key to retrieve the dataflow job_id (#27336)`` +`42841f70d5 <https://github.com/apache/airflow/commit/42841f70d5d385bb19d28a48db93b004b3b34098>`_ 2022-10-31 ``Migration of System Tests: Cloud BigQuery Data Transfer (AIP-47) (#27312)`` +`1447158e69 <https://github.com/apache/airflow/commit/1447158e690f3d63981b3d8ec065665ec91ca54e>`_ 2022-10-31 ``Typecast biquery job response col value (#27236)`` +`95e5675714 <https://github.com/apache/airflow/commit/95e5675714f12c177e30d83a14d28222b06d217b>`_ 2022-10-31 ``Migration of System Tests: Dataplex (AIP-47) (#26989)`` +`124fb3948d <https://github.com/apache/airflow/commit/124fb3948d18c4fe4b2aad12eecfd5ba1efca4bc>`_ 2022-10-31 ``Add deferrable mode to GCPToBigQueryOperator + tests (#27052)`` +`7a7c5f8fc4 <https://github.com/apache/airflow/commit/7a7c5f8fc4284adfedcb0667ec7c935b913660cf>`_ 2022-10-31 ``Add system tests for Vertex AI operators in new approach (#27053)`` +`4e55d7fa2b <https://github.com/apache/airflow/commit/4e55d7fa2b7d5f8d63465d2c5270edf2d85f08c6>`_ 2022-10-31 ``Migration of System Tests: Cloud Vision Operators (AIP-47) (#26963)`` +`896479d1a0 <https://github.com/apache/airflow/commit/896479d1a0624f10a5a9c462071b9c61502cda87>`_ 2022-10-31 ``Google Drive to local - system tests migrations (AIP-47) (#26798)`` +`3d5f34cb0f <https://github.com/apache/airflow/commit/3d5f34cb0f294d21dd1ba244af0fa06873377f11>`_ 2022-10-28 ``Allow and prefer non-prefixed extra fields for dataprep hook (#27039)`` +`04f674c13b <https://github.com/apache/airflow/commit/04f674c13bca9af78b65a643240da53aa556e2e1>`_ 2022-10-27 ``Migrate Bigtable operators system tests according to AIP-47 (#26911)`` +`58d61826a3 <https://github.com/apache/airflow/commit/58d61826a3f47a071c1f0ed4d5b8a5bd01131acb>`_ 2022-10-27 ``Migrate Dataproc Metastore system tests according to AIP-47 (#26858)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`87eb46bbc6 <https://github.com/apache/airflow/commit/87eb46bbc69c20148773d72e990fbd5d20076342>`_ 2022-10-26 ``Common sql bugfixes and improvements (#26761)`` +`7653c61df8 <https://github.com/apache/airflow/commit/7653c61df894e6c845dde558f5b27f7995415428>`_ 2022-10-26 ``Make GSheetsHook return an empty list when there are no values (#27261)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`58378cfd42 <https://github.com/apache/airflow/commit/58378cfd42b137a31032404783b2957284a1e538>`_ 2022-10-23 ``Cloud ML Engine operators assets (AIP-47) (#26836)`` +`de9633f93a <https://github.com/apache/airflow/commit/de9633f93a366ebc0a46d1ec4df2c4aa9a18357d>`_ 2022-10-22 ``Update google hooks to prefer non-prefixed extra fields (#27023)`` +`b54a2de8c7 <https://github.com/apache/airflow/commit/b54a2de8c74feb1ea215a98ffaddc5c46713c5cb>`_ 2022-10-09 ``Local filesystem to Google Drive Operator - system tests migration (AIP-47) (#26797)`` +`b4cef6da21 <https://github.com/apache/airflow/commit/b4cef6da219815b0d5517b4c82fa79bf5274d67a>`_ 2022-10-09 ``SFTP to Google Cloud Storage Transfer system tests migration (AIP-47) (#26799)`` +`6f0b600293 <https://github.com/apache/airflow/commit/6f0b600293ad53c1c4e3036b0572ca29b98b2fb2>`_ 2022-10-09 ``Fix delay in Dataproc CreateBatch operator (#26126)`` +`2f326a6c03 <https://github.com/apache/airflow/commit/2f326a6c03efed8788fe0263df96b68abb801088>`_ 2022-10-06 ``Remove <2 limit on google-cloud-storage (#26922)`` +`a67bcf3eca <https://github.com/apache/airflow/commit/a67bcf3ecaabdff80c551cff1f987523211e7af4>`_ 2022-10-06 ``Allow for the overriding of stringify_dict for json/jsonb column data type in Postgres #26875 (#26876)`` +================================================================================================= =========== ========================================================================================================== + 8.4.0 ..... -Latest change: 2022-10-01 +Latest change: 2022-10-04 ================================================================================================= =========== ======================================================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================================================== +`403ed7163f <https://github.com/apache/airflow/commit/403ed7163f3431deb7fc21108e1743385e139907>`_ 2022-10-04 ``Add docs for Google/Slack RC providers (#26860)`` `fa0cb363b8 <https://github.com/apache/airflow/commit/fa0cb363b860b553af2ef9530ea2de706bd16e5d>`_ 2022-10-01 ``Correcting the transfer config name. (#25719)`` `cee610ae5c <https://github.com/apache/airflow/commit/cee610ae5cf14c117527cdfc9ac2ef0ddb5dcf3b>`_ 2022-10-01 ``Fix parsing of optional 'mode' field in BigQuery Result Schema (#26786)`` `b7203cd36e <https://github.com/apache/airflow/commit/b7203cd36eef20de583df3e708f49073d689ac84>`_ 2022-10-01 ``Fix MaxID logic for GCSToBigQueryOperator (#26768)``
docs/apache-airflow-providers-google/index.rst+7 −6 modified@@ -76,7 +76,7 @@ Google services including: - `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite) -Release: 8.4.0 +Release: 8.5.0 Provider package ---------------- @@ -97,10 +97,11 @@ Requirements ======================================= =================== PIP package Version required ======================================= =================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``PyOpenSSL`` ``asgiref`` ``>=3.5.2`` +``gcloud_aio_auth`` ``>=4.0.0`` ``gcloud-aio-bigquery`` ``>=6.1.2`` ``gcloud-aio-storage`` ``google-ads`` ``>=15.1.1`` @@ -113,7 +114,7 @@ PIP package Version required ``google-cloud-bigquery-datatransfer`` ``>=3.0.0`` ``google-cloud-bigtable`` ``>=1.0.0,<2.0.0`` ``google-cloud-build`` ``>=3.0.0`` -``google-cloud-compute`` ``>=1.4.0,<2.0.0`` +``google-cloud-compute`` ``>=0.1.0,<2.0.0`` ``google-cloud-container`` ``>=2.2.0,<3.0.0`` ``google-cloud-dataform`` ``>=0.2.0`` ``google-cloud-datacatalog`` ``>=3.0.0`` @@ -191,7 +192,7 @@ 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-google 8.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-8.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-8.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-8.4.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-google 8.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-8.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-8.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-8.4.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-google 8.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-8.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-8.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-8.5.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-google 8.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-8.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-8.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-8.5.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/google/CHANGELOG.rst
docs/apache-airflow-providers-grpc/commits.rst+22 −1 modified@@ -28,14 +28,35 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-11-03 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`680965b2ea <https://github.com/apache/airflow/commit/680965b2eac3a01124f01500b79d6714ecea13f5>`_ 2022-11-03 ``Look for 'extra__' instead of 'extra_' in 'get_field' (#27489)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`4f9398fb3c <https://github.com/apache/airflow/commit/4f9398fb3c7928dfd58dad3fbd0206268d4936f3>`_ 2022-10-22 ``Allow and prefer non-prefixed extra fields for GrpcHook (#27045)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-grpc/index.rst+3 −3 modified@@ -57,7 +57,7 @@ Package apache-airflow-providers-grpc `gRPC <https://grpc.io/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -78,9 +78,9 @@ Requirements ======================== =================== PIP package Version required ======================== =================== -``apache-airflow`` ``>=2.2.0`` -``google-auth-httplib2`` ``>=0.0.1`` +``apache-airflow`` ``>=2.3.0`` ``google-auth`` ``>=1.0.0, <3.0.0`` +``google-auth-httplib2`` ``>=0.0.1`` ``grpcio`` ``>=1.15.0`` ======================== ===================
docs/apache-airflow-providers-hashicorp/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-11-02 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`1a3f7857f5 <https://github.com/apache/airflow/commit/1a3f7857f50170cbef767b91e2831fee8019e7b1>`_ 2022-11-02 ``Pass kwargs from vault hook to hvac client (#26680)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`1a1f352479 <https://github.com/apache/airflow/commit/1a1f352479d6dbff21d73d3c51b1e5d5188e00e3>`_ 2022-08-23 ``Add Airflow specific warning classes (#25799)`` +================================================================================================= =========== ==================================================================================== + 3.1.0 ..... -Latest change: 2022-07-28 +Latest change: 2022-08-10 ================================================================================================= =========== ================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================ +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `ad0a4965aa <https://github.com/apache/airflow/commit/ad0a4965aaf0702f0e8408660b912e87d3c75c22>`_ 2022-07-28 ``Use newer kubernetes authentication method in internal vault client (#25351)`` ================================================================================================= =========== ================================================================================
docs/apache-airflow-providers-hashicorp/index.rst+4 −4 modified@@ -57,7 +57,7 @@ Package apache-airflow-providers-hashicorp Hashicorp including `Hashicorp Vault <https://www.vaultproject.io/>`__ -Release: 3.1.0 +Release: 3.2.0 Provider package ---------------- @@ -78,7 +78,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``hvac`` ``>=0.10`` ================== ================== @@ -107,7 +107,7 @@ 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-hashicorp 3.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.1.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-hashicorp 3.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.1.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-hashicorp 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-hashicorp-3.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-hashicorp 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_hashicorp-3.2.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/hashicorp/CHANGELOG.rst
docs/apache-airflow-providers-http/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.0 +..... + +Latest change: 2022-10-23 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 4.0.0 ..... -Latest change: 2022-07-12 +Latest change: 2022-07-13 ================================================================================================= =========== ================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================== +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `8c4120c195 <https://github.com/apache/airflow/commit/8c4120c195a8b9ed9905ca5b31bbbd76620dbd20>`_ 2022-07-12 ``Add TCP_KEEPALIVE option to http provider (#24967)`` `e2fd41f7b1 <https://github.com/apache/airflow/commit/e2fd41f7b14adef2c3a88dde14d088b5ef93b460>`_ 2022-07-04 ``Remove 'xcom_push' flag from providers (#24823)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)``
docs/apache-airflow-providers-http/index.rst+1 −1 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-http `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__ -Release: 4.0.0 +Release: 4.1.0 Provider package ----------------
docs/apache-airflow-providers-imap/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-imap/index.rst+1 −1 modified@@ -52,7 +52,7 @@ Package apache-airflow-providers-imap `Internet Message Access Protocol (IMAP) <https://tools.ietf.org/html/rfc3501>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ----------------
docs/apache-airflow-providers-influxdb/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 2.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-influxdb/index.rst+3 −3 modified@@ -71,7 +71,7 @@ Package apache-airflow-providers-influxdb `InfluxDB <https://www.influxdata.com/>`__ -Release: 2.0.0 +Release: 2.1.0 Provider package ---------------- @@ -92,9 +92,9 @@ Requirements =================== ================== PIP package Version required =================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``influxdb-client`` ``>=1.19.0`` -``pandas`` ``>=0.17.1`` +``requests`` ``>=2.26.0`` =================== ================== .. include:: ../../airflow/providers/influxdb/CHANGELOG.rst
docs/apache-airflow-providers-jdbc/commits.rst+18 −1 modified@@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-11-03 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`680965b2ea <https://github.com/apache/airflow/commit/680965b2eac3a01124f01500b79d6714ecea13f5>`_ 2022-11-03 ``Look for 'extra__' instead of 'extra_' in 'get_field' (#27489)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`a770e9ca44 <https://github.com/apache/airflow/commit/a770e9ca440de734416e35dab388be8340c7e58f>`_ 2022-10-22 ``Allow and prefer non-prefixed extra fields for JdbcHook (#27044)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================= + 3.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-jdbc/index.rst+5 −5 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-jdbc `Java Database Connectivity (JDBC) <https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/>`__ -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -86,8 +86,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``jaydebeapi`` ``>=1.1.1`` ======================================= ================== @@ -116,7 +116,7 @@ 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-jdbc 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-jdbc 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-jdbc 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-jdbc-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-jdbc 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_jdbc-3.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/jdbc/CHANGELOG.rst
docs/apache-airflow-providers-jenkins/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ======================================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================================= +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-jenkins/index.rst+2 −2 modified@@ -63,7 +63,7 @@ Package apache-airflow-providers-jenkins `Jenkins <https://jenkins.io/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -84,7 +84,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``python-jenkins`` ``>=1.0.0`` ================== ==================
docs/apache-airflow-providers-microsoft-azure/commits.rst+28 −1 modified@@ -28,14 +28,41 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.0.0 +..... + +Latest change: 2022-11-10 + +================================================================================================= =========== ================================================================================= +Commit Committed Subject +================================================================================================= =========== ================================================================================= +`547e6e80f3 <https://github.com/apache/airflow/commit/547e6e80f342ee6ed454732477700a85cfa4df8b>`_ 2022-11-10 ``Fix Azure Batch errors revealed by added typing to azure batch lib (#27601)`` +`a50195d617 <https://github.com/apache/airflow/commit/a50195d617ca7c85d56b1c138f46451bc7599618>`_ 2022-11-07 ``Add azure, google, authentication library limits to eaager upgrade (#27535)`` +`5cd78cf425 <https://github.com/apache/airflow/commit/5cd78cf425f6fedc380662ec9a9e37be51403ccb>`_ 2022-11-06 ``Upgrade dependencies in order to avoid backtracking (#27531)`` +`a16f24b5d7 <https://github.com/apache/airflow/commit/a16f24b5d74136a32d873b9ad9f6bd7a440c8003>`_ 2022-11-06 ``Remove deprecated classes in Azure provider (#27417)`` +`59da943428 <https://github.com/apache/airflow/commit/59da94342813d382a768d064ac9cfd0245825679>`_ 2022-11-04 ``Suppress any Exception in wasb task handler (#27495)`` +`680965b2ea <https://github.com/apache/airflow/commit/680965b2eac3a01124f01500b79d6714ecea13f5>`_ 2022-11-03 ``Look for 'extra__' instead of 'extra_' in 'get_field' (#27489)`` +`5df1d6ec20 <https://github.com/apache/airflow/commit/5df1d6ec20677fee23a21bbbf13a7293d241a2f7>`_ 2022-10-28 ``Allow and prefer non-prefixed extra fields for remaining azure (#27220)`` +`c49740eb25 <https://github.com/apache/airflow/commit/c49740eb25fb153fdd6df79212fa5baea8b44de3>`_ 2022-10-28 ``Allow and prefer non-prefixed extra fields for AzureFileShareHook (#27041)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`3676d3a402 <https://github.com/apache/airflow/commit/3676d3a402ee1aff0ac9d407e427c7d4d56462b4>`_ 2022-10-24 ``Allow and prefer non-prefixed extra fields for AzureDataExplorerHook (#27219)`` +`6b9e76b7b3 <https://github.com/apache/airflow/commit/6b9e76b7b39e6c5f8d8c9608f265279aed0e85bf>`_ 2022-10-23 ``Allow and prefer non-prefixed extra fields for AzureDataFactoryHook (#27047)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`d51de50e5c <https://github.com/apache/airflow/commit/d51de50e5ce897223b0367bc03f458d6c1f0b7a2>`_ 2022-10-22 ``Update WasbHook to reflect preference for unprefixed extra (#27024)`` +`59cba36db0 <https://github.com/apache/airflow/commit/59cba36db0b91238c35e9b6b385fb5980509ddb8>`_ 2022-10-13 ``Update azure-storage-blob version (#25426)`` +`32434a128a <https://github.com/apache/airflow/commit/32434a128a38c084da41abec5af953df71d47996>`_ 2022-09-30 ``Fix separator getting added to variables_prefix when empty (#26749)`` +================================================================================================= =========== ================================================================================= + 4.3.0 ..... -Latest change: 2022-09-19 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `24d88e8fee <https://github.com/apache/airflow/commit/24d88e8feedcb11edc316f0d3f20f4ea54dc23b8>`_ 2022-09-19 ``Add DataFlow operations to Azure DataFactory hook (#26345)`` `1f7b296227 <https://github.com/apache/airflow/commit/1f7b296227fee772de9ba15af6ce107937ef9b9b>`_ 2022-09-18 ``Auto tail file logs in Web UI (#26169)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
docs/apache-airflow-providers-microsoft-azure/index.rst+6 −5 modified@@ -67,7 +67,7 @@ Package apache-airflow-providers-microsoft-azure `Microsoft Azure <https://azure.microsoft.com/>`__ -Release: 4.3.0 +Release: 5.0.0 Provider package ---------------- @@ -88,7 +88,7 @@ Requirements ================================ ========================================== PIP package Version required ================================ ========================================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``azure-batch`` ``>=8.0.0`` ``azure-cosmos`` ``>=4.0.0`` ``azure-datalake-store`` ``>=0.0.45`` @@ -99,11 +99,12 @@ PIP package Version required ``azure-mgmt-datafactory`` ``>=1.0.0,<2.0`` ``azure-mgmt-datalake-store`` ``>=0.5.0`` ``azure-mgmt-resource`` ``>=2.2.0`` -``azure-storage-blob`` ``>=12.7.0,<12.9.0`` +``azure-storage-blob`` ``>=12.14.0`` ``azure-storage-common`` ``>=2.1.0`` ``azure-storage-file`` ``>=2.1.0`` ``azure-servicebus`` ``>=7.6.1; platform_machine != "aarch64"`` ``azure-synapse-spark`` +``adal`` ``>=1.2.7`` ================================ ========================================== Cross provider package dependencies @@ -133,7 +134,7 @@ 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-microsoft-azure 4.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-4.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-4.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-4.3.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-microsoft-azure 4.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-4.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-4.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-4.3.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-microsoft-azure 5.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-5.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-5.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-5.0.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-microsoft-azure 5.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-5.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-5.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-5.0.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/microsoft/azure/CHANGELOG.rst
docs/apache-airflow-providers-microsoft-mssql/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-11-07 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`7297892558 <https://github.com/apache/airflow/commit/7297892558e94c8cc869b175e904ca96e0752afe>`_ 2022-11-07 ``Remove unnecessary newlines around single arg in signature (#27525)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================= + 3.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-microsoft-mssql/index.rst+5 −5 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-microsoft-mssql `Microsoft SQL Server (MSSQL) <https://www.microsoft.com/en-us/sql-server/sql-server-downloads>`__ -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -86,8 +86,8 @@ Requirements ======================================= ========================================== PIP package Version required ======================================= ========================================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``pymssql`` ``>=2.1.5; platform_machine != "aarch64"`` ======================================= ========================================== @@ -116,7 +116,7 @@ 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-microsoft-mssql 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-microsoft-mssql 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-microsoft-mssql 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-mssql-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-microsoft-mssql 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_mssql-3.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/microsoft/mssql/CHANGELOG.rst
docs/apache-airflow-providers-microsoft-psrp/commits.rst+19 −1 modified@@ -30,14 +30,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 2.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-microsoft-psrp/index.rst+1 −2 modified@@ -59,7 +59,7 @@ This package provides remote execution capabilities via the <https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-psrp/>`__. -Release: 2.0.0 +Release: 2.1.0 Provider package ---------------- @@ -81,7 +81,6 @@ Requirements PIP package Version required ============= ================== ``pypsrp`` ``>=0.8.0`` -``pypsrp`` ``>=0.8`` ============= ================== .. include:: ../../airflow/providers/microsoft/psrp/CHANGELOG.rst
docs/apache-airflow-providers-microsoft-winrm/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`674f9ce6ea <https://github.com/apache/airflow/commit/674f9ce6eaae533cfe31bc92cc92fa75ed7223fc>`_ 2022-10-01 ``A few docs fixups (#26788)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-microsoft-winrm/index.rst+2 −2 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-microsoft-winrm `Windows Remote Management (WinRM) <https://docs.microsoft.com/en-us/windows/win32/winrm/portal>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``pywinrm`` ``>=0.4`` ================== ==================
docs/apache-airflow-providers-mongo/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +`08b675cf66 <https://github.com/apache/airflow/commit/08b675cf6642171cb1c5ddfb09607b541db70b29>`_ 2022-06-13 ``Fix links to sources for examples (#24386)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-mongo/index.rst+2 −2 modified@@ -52,7 +52,7 @@ Package apache-airflow-providers-mongo `MongoDB <https://www.mongodb.com/what-is-mongodb>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -73,7 +73,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``dnspython`` ``>=1.13.0`` ``pymongo`` ``>=3.6.0,<4.0.0`` ================== ==================
docs/apache-airflow-providers-mysql/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================= + 3.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `5066844513 <https://github.com/apache/airflow/commit/50668445137e4037bb4a3b652bec22e53d1eddd7>`_ 2022-09-09 ``D400 first line should end with period batch02 (#25268)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)``
docs/apache-airflow-providers-mysql/index.rst+5 −5 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-mysql `MySQL <https://www.mysql.com/products/>`__ -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -86,8 +86,8 @@ Requirements ======================================= =========================================== PIP package Version required ======================================= =========================================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``mysql-connector-python`` ``>=8.0.11; platform_machine != "aarch64"`` ``mysqlclient`` ``>=1.3.6; platform_machine != "aarch64"`` ======================================= =========================================== @@ -121,7 +121,7 @@ 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-mysql 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-mysql 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-mysql 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-mysql 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-3.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/mysql/CHANGELOG.rst
docs/apache-airflow-providers-neo4j/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 3.1.0 ..... -Latest change: 2022-07-22 +Latest change: 2022-08-10 ================================================================================================= =========== ============================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================ +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `df00436569 <https://github.com/apache/airflow/commit/df00436569bb6fb79ce8c0b7ca71dddf02b854ef>`_ 2022-07-22 ``Unify DbApiHook.run() method with the methods which override it (#23971)`` `d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)``
docs/apache-airflow-providers-neo4j/index.rst+2 −2 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-neo4j `Neo4j <https://neo4j.com/>`__ -Release: 3.1.0 +Release: 3.2.0 Provider package ---------------- @@ -86,7 +86,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``neo4j`` ``>=4.2.1`` ================== ==================
docs/apache-airflow-providers-odbc/commits.rst+14 −1 modified@@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 3.1.2 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-odbc/index.rst+5 −5 modified@@ -53,7 +53,7 @@ Package apache-airflow-providers-odbc `ODBC <https://github.com/mkleehammer/pyodbc/wiki>`__ -Release: 3.1.2 +Release: 3.2.0 Provider package ---------------- @@ -74,8 +74,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``pyodbc`` ======================================= ================== @@ -104,7 +104,7 @@ 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-odbc 3.1.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.1.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.1.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.1.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-odbc 3.1.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.1.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.1.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.1.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-odbc 3.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-odbc-3.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-odbc 3.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_odbc-3.2.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/odbc/CHANGELOG.rst
docs/apache-airflow-providers-openfaas/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-openfaas/index.rst+10 −1 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-openfaas `OpenFaaS <https://www.openfaas.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -66,4 +66,13 @@ You can install this package on top of an existing Airflow 2 installation (see ` for the minimum Airflow version supported) via ``pip install apache-airflow-providers-openfaas`` +Requirements +------------ + +================== ================== +PIP package Version required +================== ================== +``apache-airflow`` ``>=2.3.0`` +================== ================== + .. include:: ../../airflow/providers/openfaas/CHANGELOG.rst
docs/apache-airflow-providers-opsgenie/commits.rst+22 −1 modified@@ -28,14 +28,35 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.0.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`2f80ee70f6 <https://github.com/apache/airflow/commit/2f80ee70f6abaecf38eab30f173b5602f962092b>`_ 2022-10-25 ``Remove deprecated code from Opsgenie provider (#27252)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 4.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-opsgenie/index.rst+2 −2 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-opsgenie `Opsgenie <https://www.opsgenie.com/>`__ -Release: 4.0.0 +Release: 5.0.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``opsgenie-sdk`` ``>=2.1.5`` ================== ==================
docs/apache-airflow-providers-oracle/commits.rst+14 −0 modified@@ -28,6 +28,19 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.5.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================= + 3.4.0 ..... @@ -36,6 +49,7 @@ Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `b254a9f4be <https://github.com/apache/airflow/commit/b254a9f4bead4e5d4f74c633446da38550f8e0a1>`_ 2022-09-28 ``Add oracledb thick mode support for oracle provider (#26576)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)``
docs/apache-airflow-providers-oracle/index.rst+5 −5 modified@@ -57,7 +57,7 @@ Package apache-airflow-providers-oracle `Oracle <https://www.oracle.com/en/database/>`__ -Release: 3.4.0 +Release: 3.5.0 Provider package ---------------- @@ -78,8 +78,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``oracledb`` ``>=1.0.0`` ======================================= ================== @@ -108,7 +108,7 @@ 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-oracle 3.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.4.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-oracle 3.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.4.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-oracle 3.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.5.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-oracle 3.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.5.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/oracle/CHANGELOG.rst
docs/apache-airflow-providers-pagerduty/commits.rst+21 −1 modified@@ -28,14 +28,34 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`96b01a8012 <https://github.com/apache/airflow/commit/96b01a8012d164df7c24c460149d3b79ecad3901>`_ 2022-07-05 ``Remove "bad characters" from our codebase (#24841)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-pagerduty/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-pagerduty `Pagerduty <https://www.pagerduty.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``pdpyras`` ``>=4.1.2`` ================== ==================
docs/apache-airflow-providers-papermill/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-08 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `04f98cf92d <https://github.com/apache/airflow/commit/04f98cf92d4469832b937251d539998614399d38>`_ 2022-06-08 ``Fix langauge override in papermill operator (#24301)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)``
docs/apache-airflow-providers-papermill/index.rst+2 −2 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-papermill `Papermill <https://github.com/nteract/papermill>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``papermill[all]`` ``>=1.2.1`` ``scrapbook[all]`` ================== ==================
docs/apache-airflow-providers-plexus/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-plexus/index.rst+2 −2 modified@@ -58,7 +58,7 @@ Package apache-airflow-providers-plexus `Plexus <https://plexus.corescientific.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -79,7 +79,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``arrow`` ``>=0.16.0`` ================== ==================
docs/apache-airflow-providers-postgres/commits.rst+18 −1 modified@@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.3.0 +..... + +Latest change: 2022-11-10 + +================================================================================================= =========== ========================================================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================================================= +`d7d206137b <https://github.com/apache/airflow/commit/d7d206137b2ff792b227e3549fcdf60469108992>`_ 2022-11-10 ``PostgresHook: Added ON CONFLICT DO NOTHING statement when all target fields are primary keys (#26661)`` +`39caf1d5bc <https://github.com/apache/airflow/commit/39caf1d5bc5ec5ff653cf00b25d45e176709b59e>`_ 2022-10-31 ``Rename schema to database in PostgresHook (#26744)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================================================= + 5.2.2 ..... -Latest change: 2022-09-27 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `685f523044 <https://github.com/apache/airflow/commit/685f5230440d5d1c538acd80cdb0622f2791fad6>`_ 2022-09-27 ``Revert "Rename schema to database in 'PostgresHook' (#26436)" (#26734)`` `642375f97d <https://github.com/apache/airflow/commit/642375f97de133edba1a6c1fa9397d840e8b5936>`_ 2022-09-27 ``Rename schema to database in 'PostgresHook' (#26436)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)``
docs/apache-airflow-providers-postgres/index.rst+5 −5 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-postgres `PostgreSQL <https://www.postgresql.org/>`__ -Release: 5.2.2 +Release: 5.3.0 Provider package ---------------- @@ -86,8 +86,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``psycopg2`` ``>=2.8.0`` ======================================= ================== @@ -117,7 +117,7 @@ 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-postgres 5.2.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.2.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.2.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.2.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-postgres 5.2.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.2.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.2.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.2.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-postgres 5.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-postgres-5.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-postgres 5.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_postgres-5.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/postgres/CHANGELOG.rst
docs/apache-airflow-providers-presto/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.0 +..... + +Latest change: 2022-10-31 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`5c37b503f1 <https://github.com/apache/airflow/commit/5c37b503f118b8ad2585dff9949dd8fdb96689ed>`_ 2022-10-31 ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 4.0.1 ..... -Latest change: 2022-08-27 +Latest change: 2022-09-05 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`25d0baa4ee <https://github.com/apache/airflow/commit/25d0baa4ee69769ff339931f76ebace28c4315f2>`_ 2022-09-05 ``Prepare bug-fix release of providers out of band (#26109)`` `a74d934991 <https://github.com/apache/airflow/commit/a74d9349919b340638f0db01bc3abb86f71c6093>`_ 2022-08-27 ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ========================================================================
docs/apache-airflow-providers-presto/index.rst+5 −5 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-presto `Presto <https://prestodb.github.io/>`__ -Release: 4.0.1 +Release: 4.1.0 Provider package ---------------- @@ -85,8 +85,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``presto-python-client`` ``>=0.8.2`` ``pandas`` ``>=0.17.1`` ======================================= ================== @@ -117,7 +117,7 @@ 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-presto 4.0.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-4.0.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-4.0.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-4.0.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-presto 4.0.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-4.0.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-4.0.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-4.0.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-presto 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-4.1.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-presto 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-4.1.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/presto/CHANGELOG.rst
docs/apache-airflow-providers-qubole/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 3.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `5066844513 <https://github.com/apache/airflow/commit/50668445137e4037bb4a3b652bec22e53d1eddd7>`_ 2022-09-09 ``D400 first line should end with period batch02 (#25268)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-qubole/index.rst+5 −5 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-qubole `Qubole <https://www.qubole.com/>`__ -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -85,8 +85,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``qds-sdk`` ``>=1.10.4`` ======================================= ================== @@ -115,7 +115,7 @@ 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-qubole 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-qubole 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-qubole 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-qubole-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-qubole 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_qubole-3.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/qubole/CHANGELOG.rst
docs/apache-airflow-providers-redis/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-redis/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-redis `Redis <https://redis.io/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``redis`` ``~=3.2`` ================== ==================
docs/apache-airflow-providers-salesforce/commits.rst+21 −4 modified@@ -28,16 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.2.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`eaeab806b0 <https://github.com/apache/airflow/commit/eaeab806b0d385aaf58dc2be8944c31eebcaf1bc>`_ 2022-10-22 ``Allow and prefer non-prefixed extra fields for SalesforceHook (#27075)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 5.1.0 ..... -Latest change: 2022-07-26 +Latest change: 2022-08-10 -================================================================================================= =========== ======================================================= +================================================================================================= =========== ================================================================= Commit Committed Subject -================================================================================================= =========== ======================================================= +================================================================================================= =========== ================================================================= +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `c8af0592c0 <https://github.com/apache/airflow/commit/c8af0592c08017ee48f69f608ad4a6529ee14292>`_ 2022-07-26 ``Improve taskflow type hints with ParamSpec (#25173)`` -================================================================================================= =========== ======================================================= +================================================================================================= =========== ================================================================= 5.0.0 .....
docs/apache-airflow-providers-salesforce/index.rst+2 −2 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-salesforce `Salesforce <https://www.salesforce.com/>`__ -Release: 5.1.0 +Release: 5.2.0 Provider package ---------------- @@ -86,7 +86,7 @@ Requirements ===================== ================== PIP package Version required ===================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``simple-salesforce`` ``>=1.0.0`` ``pandas`` ``>=0.17.1`` ===================== ==================
docs/apache-airflow-providers-samba/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 4.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-samba/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-samba `Samba <https://www.samba.org/>`__ -Release: 4.0.0 +Release: 4.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``smbprotocol`` ``>=1.5.0`` ================== ==================
docs/apache-airflow-providers-segment/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +`510a6bab45 <https://github.com/apache/airflow/commit/510a6bab4595cce8bd5b1447db957309d70f35d9>`_ 2022-06-28 ``Remove 'hook-class-names' from provider.yaml (#24702)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-segment/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-segment `Segment <https://segment.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ==================== ================== PIP package Version required ==================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``analytics-python`` ``>=1.2.9`` ==================== ==================
docs/apache-airflow-providers-sendgrid/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`1a1f352479 <https://github.com/apache/airflow/commit/1a1f352479d6dbff21d73d3c51b1e5d5188e00e3>`_ 2022-08-23 ``Add Airflow specific warning classes (#25799)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-sendgrid/index.rst+2 −2 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-sendgrid `Sendgrid <https://sendgrid.com/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -72,7 +72,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``sendgrid`` ``>=6.0.0`` ================== ==================
docs/apache-airflow-providers-sftp/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.2.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`662a8aaac3 <https://github.com/apache/airflow/commit/662a8aaac302aae9e1768c7c55e15aa8c539208e>`_ 2022-10-25 ``SFTP Provider: Fix default folder permissions (#26593)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +================================================================================================= =========== ========================================================================= + 4.1.0 ..... -Latest change: 2022-09-27 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `5f073e38dd <https://github.com/apache/airflow/commit/5f073e38dd46217b64dbc16d7b1055d89e8c3459>`_ 2022-09-27 ``SFTPOperator - add support for list of file paths (#26666)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-sftp/index.rst+4 −4 modified@@ -52,7 +52,7 @@ Package apache-airflow-providers-sftp `SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__ -Release: 4.1.0 +Release: 4.2.0 Provider package ---------------- @@ -73,7 +73,7 @@ Requirements ================================ ================== PIP package Version required ================================ ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``apache-airflow-providers-ssh`` ``>=2.1.0`` ================================ ================== @@ -102,7 +102,7 @@ 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-sftp 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.1.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-sftp 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.1.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-sftp 4.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-sftp 4.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.2.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/sftp/CHANGELOG.rst
docs/apache-airflow-providers-singularity/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-singularity/index.rst+2 −2 modified@@ -58,7 +58,7 @@ Package apache-airflow-providers-singularity `Singularity <https://sylabs.io/guides/latest/user-guide/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -79,7 +79,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``spython`` ``>=0.0.56`` ================== ==================
docs/apache-airflow-providers-slack/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +7.0.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`00af5c007e <https://github.com/apache/airflow/commit/00af5c007ef2200401b53c40236e664758e47f27>`_ 2022-11-14 ``Replace urlparse with urlsplit (#27389)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`cc44bae412 <https://github.com/apache/airflow/commit/cc44bae412412bec088ccee569dcc5f4aae810d1>`_ 2022-10-22 ``Allow and prefer non-prefixed extra fields for slack hooks (#27070)`` +================================================================================================= =========== ========================================================================= + 6.0.0 ..... -Latest change: 2022-10-03 +Latest change: 2022-10-04 ================================================================================================= =========== ============================================================================================== Commit Committed Subject ================================================================================================= =========== ============================================================================================== +`403ed7163f <https://github.com/apache/airflow/commit/403ed7163f3431deb7fc21108e1743385e139907>`_ 2022-10-04 ``Add docs for Google/Slack RC providers (#26860)`` `7b183071a3 <https://github.com/apache/airflow/commit/7b183071a398cbe340853f357bc6c029d551b4d1>`_ 2022-10-03 ``Fix Slack Connections created in the UI (#26845)`` `ec1615b589 <https://github.com/apache/airflow/commit/ec1615b589d60416cac449bea5fa777a5eda4757>`_ 2022-09-28 ``Fix errors in CHANGELOGS for slack and amazon (#26746)`` `f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)``
docs/apache-airflow-providers-slack/index.rst+5 −5 modified@@ -69,7 +69,7 @@ Package apache-airflow-providers-slack `Slack <https://slack.com/>`__ -Release: 6.0.0 +Release: 7.0.0 Provider package ---------------- @@ -90,8 +90,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``slack_sdk`` ``>=3.0.0`` ======================================= ================== @@ -120,7 +120,7 @@ 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-slack 6.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-6.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-6.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-6.0.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-slack 6.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-6.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-6.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-6.0.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-slack 7.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.0.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-slack 7.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.0.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/slack/CHANGELOG.rst
docs/apache-airflow-providers-snowflake/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.0.0 +..... + +Latest change: 2022-11-14 + +================================================================================================= =========== ================================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================================ +`3ae98b824d <https://github.com/apache/airflow/commit/3ae98b824db437b2db928a73ac8b50c0a2f80124>`_ 2022-11-14 ``Use unused SQLCheckOperator.parameters in SQLCheckOperator.execute. (#27599)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`82e9ed7aca <https://github.com/apache/airflow/commit/82e9ed7aca371247f9f7fe882d7ad157cb4859d8>`_ 2022-10-22 ``Update snowflake hook to not use extra prefix (#26764)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ================================================================================ + 3.3.0 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `6a615ee477 <https://github.com/apache/airflow/commit/6a615ee47755e851854970d7042ee00d0040c8dc>`_ 2022-08-30 ``Fix wrong deprecation warning for 'S3ToSnowflakeOperator' (#26047)`` `9e12d483bc <https://github.com/apache/airflow/commit/9e12d483bcde714ca4225c94df182c4eacd36f7c>`_ 2022-08-27 ``Add custom handler param in SnowflakeOperator (#25983)``
docs/apache-airflow-providers-snowflake/index.rst+5 −5 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-snowflake `Snowflake <https://www.snowflake.com/>`__ -Release: 3.3.0 +Release: 4.0.0 Provider package ---------------- @@ -86,8 +86,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``snowflake-connector-python`` ``>=2.4.1`` ``snowflake-sqlalchemy`` ``>=1.1.0`` ======================================= ================== @@ -118,7 +118,7 @@ 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-snowflake 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-3.3.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-snowflake 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-3.3.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-snowflake 4.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.0.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-snowflake 4.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.0.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/snowflake/CHANGELOG.rst
docs/apache-airflow-providers-sqlite/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-10-23 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 3.2.1 ..... -Latest change: 2022-08-27 +Latest change: 2022-09-05 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`25d0baa4ee <https://github.com/apache/airflow/commit/25d0baa4ee69769ff339931f76ebace28c4315f2>`_ 2022-09-05 ``Prepare bug-fix release of providers out of band (#26109)`` `a74d934991 <https://github.com/apache/airflow/commit/a74d9349919b340638f0db01bc3abb86f71c6093>`_ 2022-08-27 ``Fix placeholders in 'TrinoHook', 'PrestoHook', 'SqliteHook' (#25939)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ========================================================================
docs/apache-airflow-providers-sqlite/index.rst+4 −4 modified@@ -65,7 +65,7 @@ Package apache-airflow-providers-sqlite `SQLite <https://www.sqlite.org/>`__ -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -86,7 +86,7 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ======================================= ================== Cross provider package dependencies @@ -114,7 +114,7 @@ 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-sqlite 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-sqlite 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-sqlite 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sqlite-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-sqlite 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sqlite-3.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/sqlite/CHANGELOG.rst
docs/apache-airflow-providers-ssh/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-11-08 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`8f152a102b <https://github.com/apache/airflow/commit/8f152a102baf6851a719e4ad10fbb15e928fa72b>`_ 2022-11-08 ``Apply log formatter on every ouput line in SSHOperator (#27442)`` +`dc760b45ea <https://github.com/apache/airflow/commit/dc760b45eaeccc3ff35a5acdfe70968ca0451331>`_ 2022-11-07 ``SSHOperator ignores cmd_timeout (#27182) (#27184)`` +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`13b6b3b078 <https://github.com/apache/airflow/commit/13b6b3b0780036ff47a92757d960468f628aa578>`_ 2022-10-26 ``Added docs regarding templated field (#27301)`` +`a8a67a3f40 <https://github.com/apache/airflow/commit/a8a67a3f40cdb206676a167829b61a4207ae1fe9>`_ 2022-10-26 ``Added environment to templated SSHOperator fields (#26824)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`674f9ce6ea <https://github.com/apache/airflow/commit/674f9ce6eaae533cfe31bc92cc92fa75ed7223fc>`_ 2022-10-01 ``A few docs fixups (#26788)`` +================================================================================================= =========== ========================================================================= + 3.2.0 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `2f26da7023 <https://github.com/apache/airflow/commit/2f26da70230d7d1cf7dfb3a20d38e9a5844862a7>`_ 2022-08-27 ``feat: load host keys to save new host key (#25979)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-ssh/index.rst+2 −2 modified@@ -57,7 +57,7 @@ Package apache-airflow-providers-ssh `Secure Shell (SSH) <https://tools.ietf.org/html/rfc4251>`__ -Release: 3.2.0 +Release: 3.3.0 Provider package ---------------- @@ -78,7 +78,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``paramiko`` ``>=2.6.0`` ``sshtunnel`` ``>=0.3.2`` ================== ==================
docs/apache-airflow-providers-tableau/commits.rst+19 −2 modified@@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog <ind -3.1.0 +4.0.0 ..... -Latest change: 2022-07-05 +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`d544e8fbeb <https://github.com/apache/airflow/commit/d544e8fbeb362e76e14d7615d354a299445e5b5a>`_ 2022-10-26 ``Remove deprecated Tableau classes (#27288)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + +3.0.1 +..... + +Latest change: 2022-07-13 ================================================================================================= =========== ================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================== +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `96b01a8012 <https://github.com/apache/airflow/commit/96b01a8012d164df7c24c460149d3b79ecad3901>`_ 2022-07-05 ``Remove "bad characters" from our codebase (#24841)`` `9c995523f2 <https://github.com/apache/airflow/commit/9c995523f28150de3153d7cb16d605a43dbed09d>`_ 2022-07-03 ``Remove Tableau from Salesforce provider (#23747)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)``
docs/apache-airflow-providers-tableau/index.rst+2 −2 modified@@ -60,7 +60,7 @@ Package apache-airflow-providers-tableau `Tableau <https://www.tableau.com/>`__ -Release: 3.0.1 +Release: 4.0.0 Provider package ---------------- @@ -81,7 +81,7 @@ Requirements ======================= ================== PIP package Version required ======================= ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``tableauserverclient`` ======================= ==================
docs/apache-airflow-providers-tabular/commits.rst+19 −4 modified@@ -28,16 +28,31 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.1.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 1.0.1 ..... -Latest change: 2022-07-15 +Latest change: 2022-07-17 -================================================================================================= =========== =============================================== +================================================================================================= =========== ======================================================================= Commit Committed Subject -================================================================================================= =========== =============================================== +================================================================================================= =========== ======================================================================= +`abb0341135 <https://github.com/apache/airflow/commit/abb034113540b708e87379665a1b5caadb8748bc>`_ 2022-07-17 ``Add documentation for follow-up release for june providers (#25111)`` `84b679937f <https://github.com/apache/airflow/commit/84b679937f220fd06b4f639320d8d992120875e5>`_ 2022-07-15 ``Set grant type of the Tabular hook (#25099)`` -================================================================================================= =========== =============================================== +================================================================================================= =========== ======================================================================= 1.0.0 .....
docs/apache-airflow-providers-tabular/index.rst+2 −2 modified@@ -60,7 +60,7 @@ Package apache-airflow-providers-tabular `Tabular <https://tabular.io/>`__ -Release: 1.0.1 +Release: 1.1.0 Provider package ---------------- @@ -81,7 +81,7 @@ Requirements ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ================== ================== .. include:: ../../airflow/providers/tabular/CHANGELOG.rst
docs/apache-airflow-providers-telegram/commits.rst+20 −1 modified@@ -28,14 +28,33 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.1.0 +..... + +Latest change: 2022-10-27 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`9ab1a6a3e7 <https://github.com/apache/airflow/commit/9ab1a6a3e70b32a3cddddf0adede5d2f3f7e29ea>`_ 2022-10-27 ``Update old style typing (#26872)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` +`d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` +`0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)`` +================================================================================================= =========== ==================================================================================== + 3.0.0 ..... -Latest change: 2022-06-07 +Latest change: 2022-06-09 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`dcdcf3a2b8 <https://github.com/apache/airflow/commit/dcdcf3a2b8054fa727efb4cd79d38d2c9c7e1bd5>`_ 2022-06-09 ``Update release notes for RC2 release of Providers for May 2022 (#24307)`` `717a7588bc <https://github.com/apache/airflow/commit/717a7588bc8170363fea5cb75f17efcf68689619>`_ 2022-06-07 ``Update package description to remove double min-airflow specification (#24292)`` `aeabe994b3 <https://github.com/apache/airflow/commit/aeabe994b3381d082f75678a159ddbb3cbf6f4d3>`_ 2022-06-07 ``Prepare docs for May 2022 provider's release (#24231)`` `027b707d21 <https://github.com/apache/airflow/commit/027b707d215a9ff1151717439790effd44bab508>`_ 2022-06-05 ``Add explanatory note for contributors about updating Changelog (#24229)``
docs/apache-airflow-providers-telegram/index.rst+2 −2 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-telegram `Telegram <https://telegram.org/>`__ -Release: 3.0.0 +Release: 3.1.0 Provider package ---------------- @@ -85,7 +85,7 @@ Requirements ======================= ================== PIP package Version required ======================= ================== -``apache-airflow`` ``>=2.2.0`` +``apache-airflow`` ``>=2.3.0`` ``python-telegram-bot`` ``>=13.0`` ======================= ==================
docs/apache-airflow-providers-trino/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.2.0 +..... + +Latest change: 2022-11-02 + +================================================================================================= =========== ================================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================================ +`a3bfa25e67 <https://github.com/apache/airflow/commit/a3bfa25e6756222b6811e92c7a9e9f8de47ab630>`_ 2022-11-02 ``Allow setting client tags for trino connection (#27213)`` +`5c37b503f1 <https://github.com/apache/airflow/commit/5c37b503f118b8ad2585dff9949dd8fdb96689ed>`_ 2022-10-31 ``Use DbApiHook.run for DbApiHook.get_records and DbApiHook.get_first (#26944)`` +`09c045f081 <https://github.com/apache/airflow/commit/09c045f081feeeea09e4517d05904b38660f525c>`_ 2022-10-26 ``Bump Trino version to fix non-working DML queries (#27168)`` +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`17b97e755a <https://github.com/apache/airflow/commit/17b97e755a1e4b10b3bb47a3f334ed2677ac5ba5>`_ 2022-10-21 ``Allow session properties for trino connection (#27095)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ================================================================================ + 4.1.0 ..... -Latest change: 2022-09-19 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `b2766d0515 <https://github.com/apache/airflow/commit/b2766d0515a33222f2c2c2281ef062ffbca36475>`_ 2022-09-19 ``trino: Support CertificateAuthentication in the trino hook (#26246)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-trino/index.rst+6 −6 modified@@ -66,7 +66,7 @@ Package apache-airflow-providers-trino `Trino <https://trino.io/>`__ -Release: 4.1.0 +Release: 4.2.0 Provider package ---------------- @@ -87,10 +87,10 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``pandas`` ``>=0.17.1`` -``trino`` ``>=0.301.0`` +``trino`` ``>=0.318.0`` ======================================= ================== Cross provider package dependencies @@ -119,7 +119,7 @@ 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-trino 4.1.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-4.1.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-4.1.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-4.1.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-trino 4.1.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-4.1.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-4.1.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-4.1.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-trino 4.2.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-4.2.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-4.2.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-4.2.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-trino 4.2.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-4.2.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-4.2.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-4.2.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/trino/CHANGELOG.rst
docs/apache-airflow-providers-vertica/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`ecd4d6654f <https://github.com/apache/airflow/commit/ecd4d6654ff8e0da4a7b8f29fd23c37c9c219076>`_ 2022-10-18 ``Add SQLExecuteQueryOperator (#25717)`` +================================================================================================= =========== ========================================================================= + 3.2.1 ..... -Latest change: 2022-09-13 +Latest change: 2022-09-28 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` `06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` `ca9229b6fe <https://github.com/apache/airflow/commit/ca9229b6fe7eda198c7ce32da13afb97ab9f3e28>`_ 2022-08-18 ``Add common-sql lower bound for common-sql (#25789)`` ================================================================================================= =========== ====================================================================================
docs/apache-airflow-providers-vertica/index.rst+5 −5 modified@@ -51,7 +51,7 @@ Package apache-airflow-providers-vertica `Vertica <https://www.vertica.com/>`__ -Release: 3.2.1 +Release: 3.3.0 Provider package ---------------- @@ -72,8 +72,8 @@ Requirements ======================================= ================== PIP package Version required ======================================= ================== -``apache-airflow`` ``>=2.2.0`` -``apache-airflow-providers-common-sql`` ``>=1.2.0`` +``apache-airflow`` ``>=2.3.0`` +``apache-airflow-providers-common-sql`` ``>=1.3.0`` ``vertica-python`` ``>=0.5.1`` ======================================= ================== @@ -102,7 +102,7 @@ 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-vertica 3.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-vertica 3.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-vertica 3.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-vertica-3.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-vertica 3.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_vertica-3.3.0-py3-none-any.whl.sha512>`__) .. include:: ../../airflow/providers/vertica/CHANGELOG.rst
docs/apache-airflow-providers-yandex/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.0 +..... + +Latest change: 2022-10-24 + +================================================================================================= =========== ==================================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================================== +`78b8ea2f22 <https://github.com/apache/airflow/commit/78b8ea2f22239db3ef9976301234a66e50b47a94>`_ 2022-10-24 ``Move min airflow version to 2.3.0 for all providers (#27196)`` +`2a34dc9e84 <https://github.com/apache/airflow/commit/2a34dc9e8470285b0ed2db71109ef4265e29688b>`_ 2022-10-23 ``Enable string normalization in python formatting - providers (#27205)`` +`837e463ae8 <https://github.com/apache/airflow/commit/837e463ae82f578720691602716fd9784d804d7d>`_ 2022-10-22 ``Allow no extra prefix in yandex hook (#27040)`` +`f8db64c35c <https://github.com/apache/airflow/commit/f8db64c35c8589840591021a48901577cff39c07>`_ 2022-09-28 ``Update docs for September Provider's release (#26731)`` +`06acf40a43 <https://github.com/apache/airflow/commit/06acf40a4337759797f666d5bb27a5a393b74fed>`_ 2022-09-13 ``Apply PEP-563 (Postponed Evaluation of Annotations) to non-core airflow (#26289)`` +================================================================================================= =========== ==================================================================================== + 3.1.0 ..... -Latest change: 2022-07-29 +Latest change: 2022-08-10 ================================================================================================= =========== =============================================================================== Commit Committed Subject ================================================================================================= =========== =============================================================================== +`e5ac6c7cfb <https://github.com/apache/airflow/commit/e5ac6c7cfb189c33e3b247f7d5aec59fe5e89a00>`_ 2022-08-10 ``Prepare docs for new providers release (August 2022) (#25618)`` `a61e0c1df7 <https://github.com/apache/airflow/commit/a61e0c1df7cd8a25ac67fdfc778350e148510743>`_ 2022-07-29 ``YandexCloud provider: Support new Yandex SDK features for DataProc (#25158)`` `d2459a241b <https://github.com/apache/airflow/commit/d2459a241b54d596ebdb9d81637400279fff4f2d>`_ 2022-07-13 ``Add documentation for July 2022 Provider's release (#25030)`` `0de31bd73a <https://github.com/apache/airflow/commit/0de31bd73a8f41dded2907f0dee59dfa6c1ed7a1>`_ 2022-06-29 ``Move provider dependencies to inside provider folders (#24672)``
README.md+9 −1 modified@@ -392,7 +392,7 @@ The important dependencies are: ### Approach for dependencies in Airflow Providers and extras -Those `extras` and `providers` dependencies are maintained in `setup.py`. +Those `extras` and `providers` dependencies are maintained in `provider.yaml` of each provider. By default, we should not upper-bound dependencies for providers, however each provider's maintainer might decide to add additional limits (and justify them with comment) @@ -411,6 +411,14 @@ For example this means that by default we upgrade the minimum version of Airflow to 2.4.0 in the first Provider's release after 30th of April 2023. The 30th of April 2022 is the date when the first `PATCHLEVEL` of 2.3 (2.3.0) has been released. +When we increase the minimum Airflow version, this is not a reason to bump `MAJOR` version of the providers +(unless there are other breaking changes in the provider). The reason for that is that people who use +older version of Airflow will not be able to use that provider (so it is not a breaking change for them) +and for people who are using supported version of Airflow this is not a breaking change on its own - they +will be able to use the new version without breaking their workflows. When we upgraded min-version to +2.2+, our approach was different but as of 2.3+ upgrade (November 2022) we only bump `MINOR` version of the +provider when we increase minimum Airflow version. + Providers are often connected with some stakeholders that are vitally interested in maintaining backwards compatibilities in their integrations (for example cloud providers, or specific service providers). But, we are also bound with the [Apache Software Foundation release policy](https://www.apache.org/legal/release-policy.html)
150dd927c329Filter out invalid schemas in Hive hook (#27647)
3 files changed · +23 −0
airflow/providers/apache/hive/hooks/hive.py+2 −0 modified@@ -204,6 +204,8 @@ def run_cli( """ conn = self.conn schema = schema or conn.schema + if "!" in schema or ";" in schema: + raise RuntimeError(f"The schema `{schema}` contains invalid characters (!;)") if schema: hql = f"USE {schema};\n{hql}"
tests/providers/apache/hive/hooks/test_hive.py+6 −0 modified@@ -37,6 +37,7 @@ from airflow.utils.operator_helpers import AIRFLOW_VAR_NAME_FORMAT_MAPPING from tests.providers.apache.hive import ( BaseMockConnectionCursor, + InvalidHiveCliHook, MockHiveCliHook, MockHiveServer2Hook, MockSubProcess, @@ -131,6 +132,11 @@ def test_run_cli(self, mock_popen, mock_temp_dir): close_fds=True, ) + def test_hive_cli_hook_invalid_schema(self): + with pytest.raises(RuntimeError): + hook = InvalidHiveCliHook() + hook.run_cli("SHOW DATABASES") + @mock.patch("subprocess.Popen") def test_run_cli_with_hive_conf(self, mock_popen): hql = (
tests/providers/apache/hive/__init__.py+15 −0 modified@@ -73,6 +73,21 @@ def __init__(self, *args, **kwargs): self.get_connection = MagicMock(return_value=MockDBConnection({})) +class InvalidHiveCliHook(HiveCliHook): + def __init__(self, *args, **kwargs): + super().__init__() + self.conn = MockConnectionCursor() + self.conn.schema = "default;" + self.conn.host = "localhost" + self.conn.port = 10000 + self.conn.login = None + self.conn.password = None + + self.conn.execute = MagicMock() + self.get_conn = MagicMock(return_value=self.conn) + self.get_connection = MagicMock(return_value=MockDBConnection({})) + + class MockHiveServer2Hook(HiveServer2Hook): def __init__(self, *args, **kwargs): super().__init__()
Vulnerability mechanics
Synthesis attempt was rejected by the grounding validator. Re-run pending.
References
4News mentions
0No linked articles in our index yet.