Apache Airflow Hive Provider Beeline RCE
Description
Improper input validation in Apache Airflow Hive Provider before 5.1.3 allows arbitrary command injection via Hive beeline parameters.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
Improper input validation in Apache Airflow Hive Provider before 5.1.3 allows arbitrary command injection via Hive beeline parameters.
CVE-2023-25696 is an improper input validation vulnerability in the Apache Airflow Hive Provider, affecting versions prior to 5.1.3. The root cause is insufficient validation of user-supplied parameters passed to the Hive beeline command, which can allow an attacker to inject arbitrary arguments or commands through the beeline interface [1]. This flaw exists in the provider's handling of connection and task configuration, where parameters meant for Hive operations are not sanitized before being passed to the underlying shell command.
Exploitation requires an attacker to have the ability to set or modify Airflow connections or task parameters. An authenticated user with permissions to create or update Hive connections or tasks could craft malicious beeline parameters that are then passed unsanitized to the command line. The attack surface is limited to users with some level of authenticated access to the Airflow instance, as direct injection from external unauthenticated sources is not possible [2]. The fix, implemented in pull request #29502, adds validation to ensure beeline parameters conform to expected patterns and do not contain command injection sequences [3].
A successful exploit could allow the attacker to execute arbitrary commands on the host running the Airflow worker or scheduler. This could lead to full compromise of the Airflow environment, including access to sensitive data, credentials, and the ability to manipulate workflows. The impact is rated as high given the potential for remote code execution within the context of the Airflow service.
The vulnerability is patched in Apache Airflow Hive Provider version 5.1.3. Users running earlier versions are strongly advised to upgrade immediately. No workarounds have been provided by the vendor, and the issue was resolved through proper input validation of the beeline parameters [2][3].
AI Insight generated on May 20, 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 | < 5.1.3 | 5.1.3 |
Affected products
2- Range: 0
Patches
2c077d190609fPrepare docs for Aug 2023 3rd wave of Providers (#33730)
256 files changed · +1722 −287
airflow/providers/airbyte/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
airflow/providers/alibaba/CHANGELOG.rst+13 −0 modified@@ -26,6 +26,19 @@ Changelog --------- +2.5.2 +..... + +Misc +~~~~ + +* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +* ``Simplify conditions on len() in providers/apache (#33564)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` + 2.5.1 .....
airflow/providers/alibaba/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "2.5.1" +__version__ = "2.5.2" try: from airflow import __version__ as airflow_version
airflow/providers/alibaba/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 2.5.2 - 2.5.1 - 2.5.0 - 2.4.1
airflow/providers/amazon/CHANGELOG.rst+42 −0 modified@@ -26,6 +26,48 @@ Changelog --------- +8.6.0 +..... + +Features +~~~~~~~~ + +* ``Added Amazon SageMaker Notebook hook and operators (#33219)`` +* ``Add 'deferrable' option to 'LambdaCreateFunctionOperator' (#33327)`` +* ``Add Deferrable mode to GlueCatalogPartitionSensor (#33239)`` +* ``Add 'sql_hook_params' parameter to 'S3ToSqlOperator' (#33427)`` +* ``Add 'sql_hook_params' parameter to 'SqlToS3Operator' (#33425)`` +* ``Add parameter to pass role ARN to 'GlueJobOperator ' (#33408)`` +* ``Add new RdsStartExportTaskOperator parameters (#33251)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix bug in task logs when using AWS CloudWatch. Do not set 'start_time' (#33673)`` +* ``Fix AWS Batch waiter failure state (#33656)`` +* ``Fix AWS appflow waiter (#33613)`` +* ``Fix striping tags when falling back to update in 'SageMakerEndpointOperator' (#33487)`` + + +Misc +~~~~ + +* ``Simplify conditions on len() in providers/amazon (#33565)`` +* ``Remove non-public interface usage in EcsRunTaskOperator (#29447)`` +* ``Upgrade botocore/aiobotocore minimum requirements (#33649)`` +* ``Consolidate import and usage of itertools (#33479)`` +* ``Consolidate import and usage of pandas (#33480)`` +* ``always push ECS task ARN to xcom in 'EcsRunTaskOperator' (#33703)`` +* ``Use 'boto3.client' linked to resource meta instead of create new one for waiters (#33552)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add Appflow system test + improvements (#33614)`` + * ``Fix typos (double words and it's/its) (#33623)`` + * ``Refactor: Remove useless str() calls (#33629)`` + * ``Replace strftime with f-strings where nicer (#33455)`` + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` + 8.5.1 .....
airflow/providers/amazon/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "8.5.1" +__version__ = "8.6.0" try: from airflow import __version__ as airflow_version
airflow/providers/amazon/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 8.6.0 - 8.5.1 - 8.5.0 - 8.4.0
airflow/providers/apache/beam/CHANGELOG.rst+18 −0 modified@@ -26,6 +26,24 @@ Changelog --------- +5.2.2 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Fix wrong OR condition when evaluating beam version < 2.39.0 (#33308)`` + +Misc +~~~~ + +* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` + * ``D205 Support - Providers - Final Pass (#33303)`` + 5.2.1 .....
airflow/providers/apache/beam/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.2.1" +__version__ = "5.2.2" try: from airflow import __version__ as airflow_version
airflow/providers/apache/beam/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.2.2 - 5.2.1 - 5.2.0 - 5.1.1
airflow/providers/apache/cassandra/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
airflow/providers/apache/drill/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -3878fe6fab3ccc1461932b456c48996f2763139f +c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
airflow/providers/apache/druid/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -3878fe6fab3ccc1461932b456c48996f2763139f +c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
airflow/providers/apache/flink/CHANGELOG.rst+15 −0 modified@@ -26,6 +26,21 @@ Changelog --------- +1.1.2 +..... + +Misc +~~~~ + +* ``Simplify conditions on len() in providers/apache (#33564)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Improve provider documentation and README structure (#32125)`` + 1.1.1 .....
airflow/providers/apache/flink/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "1.1.1" +__version__ = "1.1.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-apache-flink:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/apache/flink/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.1.2 - 1.1.1 - 1.1.0 - 1.0.1
airflow/providers/apache/hdfs/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +a54c2424df51bf1acec420f4792a237dabcfa12b
airflow/providers/apache/hive/CHANGELOG.rst+25 −4 modified@@ -27,11 +27,32 @@ Changelog --------- -The provider now uses pure-sasl, a pure-Python implementation of SASL, -which is better maintained than previous sasl implementation, even -if a bit slower for sasl interface. It also allows hive to be -installed for Python 3.11. +6.1.5 +..... + +.. note:: + The provider now uses pure-sasl, a pure-Python implementation of SASL, + which is better maintained than previous sasl implementation, even + if a bit slower for sasl interface. It also allows hive to be + installed for Python 3.11. +Misc +~~~~ + +* ``Bring back hive support for Python 3.11 (#32607)`` +* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +* ``Simplify 'X for X in Y' to 'Y' where applicable (#33453)`` +* ``Replace OrderedDict with plain dict (#33508)`` +* ``Simplify code around enumerate (#33476)`` +* ``Use str.splitlines() to split lines in providers (#33593)`` +* ``Simplify conditions on len() in providers/apache (#33564)`` +* ``Replace repr() with proper formatting (#33520)`` +* ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +* ``Consolidate import and usage of pandas (#33480)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` 6.1.4 .....
airflow/providers/apache/hive/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "6.1.4" +__version__ = "6.1.5" try: from airflow import __version__ as airflow_version
airflow/providers/apache/hive/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 6.1.5 - 6.1.4 - 6.1.3 - 6.1.2
airflow/providers/apache/kafka/.latest-doc-only-change.txt+1 −0 added@@ -0,0 +1 @@ +a54c2424df51bf1acec420f4792a237dabcfa12b
airflow/providers/apache/kylin/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/apache/livy/CHANGELOG.rst+14 −0 modified@@ -28,6 +28,20 @@ Changelog --------- +3.5.3 +..... + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` +* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +* ``Simplify conditions on len() in providers/apache (#33564)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` + 3.5.2 .....
airflow/providers/apache/livy/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.5.2" +__version__ = "3.5.3" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-apache-livy:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/apache/livy/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.5.3 - 3.5.2 - 3.5.1 - 3.5.0
airflow/providers/apache/pig/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/apache/pinot/CHANGELOG.rst+12 −0 modified@@ -30,6 +30,18 @@ Changelog --------- +4.1.3 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Referencing correct hooks for Apache Pinot (#33601)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` + 4.1.2 .....
airflow/providers/apache/pinot/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.1.2" +__version__ = "4.1.3" try: from airflow import __version__ as airflow_version
airflow/providers/apache/pinot/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.1.3 - 4.1.2 - 4.1.1 - 4.1.0
airflow/providers/apache/spark/CHANGELOG.rst+12 −0 modified@@ -29,6 +29,18 @@ Changelog --------- +4.1.4 +..... + +Misc +~~~~ + +* ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` + 4.1.3 .....
airflow/providers/apache/spark/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.1.3" +__version__ = "4.1.4" try: from airflow import __version__ as airflow_version
airflow/providers/apache/spark/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.1.4 - 4.1.3 - 4.1.2 - 4.1.1
airflow/providers/apache/sqoop/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -3878fe6fab3ccc1461932b456c48996f2763139f +c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
airflow/providers/apprise/.latest-doc-only-change.txt+1 −0 added@@ -0,0 +1 @@ +c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
airflow/providers/arangodb/CHANGELOG.rst+18 −0 modified@@ -28,6 +28,24 @@ Changelog --------- +2.2.2 +..... + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``D205 Support - Providers: Apache to Common (inclusive) (#32226)`` + * ``Improve provider documentation and README structure (#32125)`` + 2.2.1 .....
airflow/providers/arangodb/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "2.2.1" +__version__ = "2.2.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-arangodb:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/arangodb/provider.yaml+1 −0 modified@@ -27,6 +27,7 @@ dependencies: suspended: false versions: + - 2.2.2 - 2.2.1 - 2.2.0 - 2.1.1
airflow/providers/asana/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -3878fe6fab3ccc1461932b456c48996f2763139f +c645d8e40c167ea1f6c332cdc3ea0ca5a9363205
airflow/providers/atlassian/jira/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/celery/CHANGELOG.rst+14 −0 modified@@ -27,6 +27,20 @@ Changelog --------- +3.3.3 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Fix dependencies for celery and opentelemetry for Python 3.8 (#33579)`` + +Misc +~~~~~ + +* ``Make auth managers provide their own airflow CLI commands (#33481)`` +* ``Refactor Sqlalchemy queries to 2.0 style (Part 7) (#32883)`` + 3.3.2 .....
airflow/providers/celery/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.3.2" +__version__ = "3.3.3" try: from airflow import __version__ as airflow_version
airflow/providers/celery/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.3 - 3.3.2 - 3.3.1 - 3.3.0
airflow/providers/cloudant/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/cncf/kubernetes/CHANGELOG.rst+36 −0 modified@@ -27,6 +27,42 @@ Changelog --------- +7.5.0 +..... + +Features +~~~~~~~~ + +* ``Add istio test, use curl /quitquitquit to exit sidecar, and some othe… (#33306)`` +* ``Add 'active_deadline_seconds' parameter to 'KubernetesPodOperator' (#33379)`` +* ``Make cluster_context templated (#33604)`` + + +Bug Fixes +~~~~~~~~~ + +* ``Fix KubernetesPodOperator duplicating logs when interrupted (#33500)`` +* ``Fix 2.7.0 db migration job errors (#33652)`` +* ``Inspect container state rather than last_state when deciding whether to skip (#33702)`` + +Misc +~~~~ + +* ``Introducing class constant to make worker pod log lines configurable (#33378)`` +* ``Adding typing for KPO SCC objects (#33381)`` +* ``Refactor: Remove useless str() calls (#33629)`` +* ``Refactor: Improve detection of duplicates and list sorting (#33675)`` +* ``Refactor Sqlalchemy queries to 2.0 style (Part 7) (#32883)`` +* ``Consolidate import and usage of itertools (#33479)`` +* ``Simplify conditions on len() in other providers (#33569)`` +* ``Import utc from datetime and normalize its import (#33450)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Fix typos (double words and it's/its) (#33623)`` + * ``Exclude deprecated "operators.kubernetes_pod" module from provider.yaml (#33641)`` + * ``D205 Support - Providers - Final Pass (#33303)`` + 7.4.2 .....
airflow/providers/cncf/kubernetes/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "7.4.2" +__version__ = "7.5.0" try: from airflow import __version__ as airflow_version
airflow/providers/cncf/kubernetes/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 7.5.0 - 7.4.2 - 7.4.1 - 7.4.0
airflow/providers/common/sql/CHANGELOG.rst+13 −0 modified@@ -23,6 +23,19 @@ ------ +1.7.1 +..... + +Misc +~~~~ + +* ``Refactor: Better percentage formatting (#33595)`` +* ``Refactor: Simplify code in smaller providers (#33234)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Fix typos (double words and it's/its) (#33623)`` + 1.7.0 .....
airflow/providers/common/sql/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.7.0" +__version__ = "1.7.1" try: from airflow import __version__ as airflow_version
airflow/providers/common/sql/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.7.1 - 1.7.0 - 1.6.2 - 1.6.1
airflow/providers/daskexecutor/CHANGELOG.rst+9 −0 modified@@ -27,6 +27,15 @@ Changelog --------- +1.0.1 +..... + +Misc +~~~~ + +* ``Replace repr() with proper formatting (#33520)`` + + 1.0.0 .....
airflow/providers/daskexecutor/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.0.0" +__version__ = "1.0.1" try: from airflow import __version__ as airflow_version
airflow/providers/daskexecutor/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.0.1 - 1.0.0 dependencies:
airflow/providers/databricks/CHANGELOG.rst+25 −0 modified@@ -27,6 +27,31 @@ Changelog --------- +4.4.0 +..... + +.. note:: + This release excluded databricks-sql-connector version 2.9.0 due to a bug that it does not properly declare urllib3 + for more information please see https://github.com/databricks/databricks-sql-python/issues/190 + +Features +~~~~~~~~ + +* ``Add Service Principal OAuth for Databricks. (#33005)`` + +Misc +~~~~ + +* ``Update docs in databricks.py - we use 2.1 now (#32340)`` +* ``Do not create lists we don't need (#33519)`` +* ``Refactor: Improve detection of duplicates and list sorting (#33675)`` +* ``Simplify conditions on len() in other providers (#33569)`` +* ``Refactor: Simplify code in smaller providers (#33234)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Ecldude databrick connector 2.9.0 due to a bug (#33311)`` + 4.3.3 .....
airflow/providers/databricks/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.3.3" +__version__ = "4.4.0" try: from airflow import __version__ as airflow_version
airflow/providers/databricks/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.4.0 - 4.3.3 - 4.3.2 - 4.3.1
airflow/providers/datadog/CHANGELOG.rst+17 −0 modified@@ -27,6 +27,23 @@ Changelog --------- +3.3.2 +..... + +Misc +~~~~ + +* ``Simplify conditions on len() in other providers (#33569)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``D205 Support - Providers: Databricks to Github (inclusive) (#32243)`` + * ``Improve provider documentation and README structure (#32125)`` + 3.3.1 .....
airflow/providers/datadog/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.3.1" +__version__ = "3.3.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-datadog:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/datadog/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.3.2 - 3.3.1 - 3.3.0 - 3.2.0
airflow/providers/dbt/cloud/CHANGELOG.rst+9 −0 modified@@ -28,6 +28,15 @@ Changelog --------- +3.2.3 +..... + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` +* ``Refactor: Simplify code in smaller providers (#33234)`` + 3.2.2 .....
airflow/providers/dbt/cloud/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.2.2" +__version__ = "3.2.3" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-dbt-cloud:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/dbt/cloud/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.3 - 3.2.2 - 3.2.1 - 3.2.0
airflow/providers/dingding/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/discord/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/docker/CHANGELOG.rst+10 −0 modified@@ -27,6 +27,16 @@ Changelog --------- +3.7.4 +..... + +Misc +~~~~ + +* ``Refactor: Improve detection of duplicates and list sorting (#33675)`` +* ``Simplify conditions on len() in other providers (#33569)`` +* ``Replace repr() with proper formatting (#33520)`` + 3.7.3 .....
airflow/providers/docker/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.7.3" +__version__ = "3.7.4" try: from airflow import __version__ as airflow_version
airflow/providers/docker/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.7.4 - 3.7.3 - 3.7.2 - 3.7.1
airflow/providers/elasticsearch/CHANGELOG.rst+22 −0 modified@@ -33,6 +33,28 @@ Changelog compatible with default distributions and without guarantees made, we recommend upgrading the version of Elasticsearch database to 8 to ensure compatibility with the language client. +5.0.1 +..... + +.. note:: + This release added support for elasticsearch 8 + +Bug Fixes +~~~~~~~~~ + +* ``Add backward compatibility for elasticsearch<8 (#33281)`` +* ``Fix urlparse schemaless-behaviour on Python 3.9+ (#33289)`` + +Misc +~~~~ + +* ``Upgrade Elasticsearch to 8 (#33135)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Replace strftime with f-strings where nicer (#33455)`` + * ``D205 Support - Providers - Final Pass (#33303)`` + 5.0.0 .....
airflow/providers/elasticsearch/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "5.0.0" +__version__ = "5.0.1" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-elasticsearch:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/elasticsearch/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.0.1 - 5.0.0 - 4.5.1 - 4.5.0
airflow/providers/exasol/CHANGELOG.rst+8 −0 modified@@ -27,6 +27,14 @@ Changelog --------- +4.2.4 +..... + +Misc +~~~~ + +* ``Avoid importing pandas and numpy in runtime and module level (#33483)`` + 4.2.3 .....
airflow/providers/exasol/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.2.3" +__version__ = "4.2.4" try: from airflow import __version__ as airflow_version
airflow/providers/exasol/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.2.4 - 4.2.3 - 4.2.2 - 4.2.1
airflow/providers/facebook/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/ftp/CHANGELOG.rst+12 −0 modified@@ -27,6 +27,18 @@ Changelog --------- +3.5.1 +..... + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D205 Support - Providers - Final Pass (#33303)`` + 3.5.0 .....
airflow/providers/ftp/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version
airflow/providers/ftp/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.5.1 - 3.5.0 - 3.4.2 - 3.4.1
airflow/providers/github/CHANGELOG.rst+17 −0 modified@@ -29,6 +29,23 @@ Changelog --------- +2.3.2 +..... + +Misc +~~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``D205 Support - Providers: Databricks to Github (inclusive) (#32243)`` + * ``Improve provider documentation and README structure (#32125)`` + 2.3.1 .....
airflow/providers/github/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "2.3.1" +__version__ = "2.3.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-github:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/github/provider.yaml+1 −0 modified@@ -30,6 +30,7 @@ dependencies: suspended: false versions: + - 2.3.2 - 2.3.1 - 2.3.0 - 2.2.1
airflow/providers/google/CHANGELOG.rst+6 −10 modified@@ -30,16 +30,11 @@ Changelog 10.6.0 ...... -Breaking changes -~~~~~~~~~~~~~~~~ - - Features ~~~~~~~~ * ``openlineage, bigquery: add openlineage method support for BigQueryExecuteQueryOperator (#31293)`` * ``Add GCS Requester Pays bucket support to GCSToS3Operator (#32760)`` -* ``Add system test and docs for CloudDataTransferServiceGCSToGCSOperator (#32960)`` * ``Add a new parameter to SQL operators to specify conn id field (#30784)`` Bug Fixes @@ -49,20 +44,21 @@ Bug Fixes * ``Fix system test for MetastoreHivePartitionSensor (#32861)`` * ``Fix catching 409 error (#33173)`` * ``make 'sql' a cached property in 'BigQueryInsertJobOperator' (#33218)`` +* ``Handle multiple connections using exceptions (#32365)`` Misc ~~~~ +* ``Refactor of links in Dataproc. (#31895)`` * ``refactor(providers.google): use module level __getattr__ for DATAPROC_JOB_LOG_LINK to DATAPROC_JOB_LINK and add deprecation warning (#33189)`` +* ``Get rid of Python2 numeric relics (#33050)`` +* ``openlineage,gcs: use proper name for openlineage methods (#32956)`` +* ``Alias 'DATAPROC_JOB_LOG_LINK' to 'DATAPROC_JOB_LINK' (#33148)`` .. Below changes are excluded from the changelog. Move them to appropriate section above if needed. Do not delete the lines(!): - * ``Get rid of Python2 numeric relics (#33050)`` - * ``Refactor of links in Dataproc. (#31895)`` - * ``Handle multiple connections using exceptions (#32365)`` - * ``openlineage,gcs: use proper name for openlineage methods (#32956)`` + * ``Add system test and docs for CloudDataTransferServiceGCSToGCSOperator (#32960)`` * ``Fix DataflowStartSqlJobOperator system test (#32823)`` - * ``Alias 'DATAPROC_JOB_LOG_LINK' to 'DATAPROC_JOB_LINK' (#33148)`` * ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` * ``Prepare docs for RC2 providers (google, redis) (#33185)``
airflow/providers/google/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "10.6.0" +__version__ = "10.7.0" try: from airflow import __version__ as airflow_version
airflow/providers/google/provider.yaml+1 −0 modified@@ -30,6 +30,7 @@ description: | suspended: false versions: + - 10.7.0 - 10.6.0 - 10.5.0 - 10.4.0
airflow/providers/grpc/CHANGELOG.rst+17 −0 modified@@ -27,6 +27,23 @@ Changelog --------- +3.2.2 +..... + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Replace repr() with proper formatting (#33520)`` + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 3.2.1 .....
airflow/providers/grpc/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.2.1" +__version__ = "3.2.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-grpc:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/grpc/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.2 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/hashicorp/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -06acf40a4337759797f666d5bb27a5a393b74fed +a54c2424df51bf1acec420f4792a237dabcfa12b
airflow/providers/http/CHANGELOG.rst+8 −0 modified@@ -27,6 +27,14 @@ Changelog --------- +4.5.1 +..... + +Misc +~~~~ + +* ``Refactor: Simplify code in smaller providers (#33234)`` + 4.5.0 .....
airflow/providers/http/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "4.5.0" +__version__ = "4.5.1" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-http:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/http/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.5.1 - 4.5.0 - 4.4.2 - 4.4.1
airflow/providers/imap/CHANGELOG.rst+8 −0 modified@@ -26,6 +26,14 @@ Changelog --------- +3.3.1 +..... + +Misc +~~~~ + +* ``Simplify conditions on len() in other providers (#33569)`` + 3.3.0 .....
airflow/providers/imap/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.3.0" +__version__ = "3.3.1" try: from airflow import __version__ as airflow_version
airflow/providers/imap/provider.yaml+1 −0 modified@@ -24,6 +24,7 @@ description: | suspended: false versions: + - 3.3.1 - 3.3.0 - 3.2.2 - 3.2.1
airflow/providers/influxdb/CHANGELOG.rst+16 −0 modified@@ -28,6 +28,22 @@ Changelog --------- +2.2.2 +..... + +Misc +~~~~ + +* ``Avoid importing pandas and numpy in runtime and module level (#33483)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 2.2.1 .....
airflow/providers/influxdb/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "2.2.1" +__version__ = "2.2.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-influxdb:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/influxdb/provider.yaml+1 −0 modified@@ -30,6 +30,7 @@ dependencies: suspended: false versions: + - 2.2.2 - 2.2.1 - 2.2.0 - 2.1.0
airflow/providers/jenkins/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/microsoft/azure/CHANGELOG.rst+30 −0 modified@@ -27,6 +27,36 @@ Changelog --------- +6.3.0 +..... + +Features +~~~~~~~~ + +* ``Add AzureBatchOperator example (#33716)`` +* ``feat(providers/microsoft): add DefaultAzureCredential support to AzureContainerInstanceHook (#33467)`` +* ``Add DefaultAzureCredential auth for ADX service (#33627)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fix updating account url for WasbHook (#33457)`` +* ``Fix Azure Batch Hook instantation (#33731)`` + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` +* ``Bump azure-kusto-data>=4.1.0 (#33598)`` +* ``Simplify conditions on len() in providers/microsoft (#33566)`` +* ``Set logging level to WARNING (#33314)`` +* ``Simplify 'X for X in Y' to 'Y' where applicable (#33453)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Fix typos (double words and it's/its) (#33623)`` + * ``Further improvements for provider verification (#33670)`` + 6.2.4 .....
airflow/providers/microsoft/azure/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "6.2.4" +__version__ = "6.3.0" try: from airflow import __version__ as airflow_version
airflow/providers/microsoft/azure/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | `Microsoft Azure <https://azure.microsoft.com/>`__ suspended: false versions: + - 6.3.0 - 6.2.4 - 6.2.3 - 6.2.2
airflow/providers/microsoft/winrm/CHANGELOG.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +3.2.2 +..... + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 3.2.1 .....
airflow/providers/microsoft/winrm/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.2.1" +__version__ = "3.2.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-microsoft-winrm:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/microsoft/winrm/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.2 - 3.2.1 - 3.2.0 - 3.1.1
airflow/providers/mongo/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/mysql/CHANGELOG.rst+9 −0 modified@@ -26,6 +26,15 @@ Changelog --------- +5.3.0 +..... + +Features +~~~~~~~~ + +* ``Add init_command parameter to MySqlHook (#33359)`` +* ``Add 'local_infile' parameter to 'S3ToMySqlOperator' (#33459)`` + 5.2.1 .....
airflow/providers/mysql/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.2.1" +__version__ = "5.3.0" try: from airflow import __version__ as airflow_version
airflow/providers/mysql/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.3.0 - 5.2.1 - 5.2.0 - 5.1.1
airflow/providers/odbc/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/openfaas/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/openlineage/CHANGELOG.rst+17 −0 modified@@ -26,6 +26,23 @@ Changelog --------- +1.0.2 +..... + +Bug Fixes +~~~~~~~~~ + +* ``openlineage: don't run task instance listener in executor (#33366)`` +* ``openlineage: do not try to redact Proxy objects from deprecated config (#33393)`` +* ``openlineage: defensively check for provided datetimes in listener (#33343)`` + +Misc +~~~~ + +* ``Add OpenLineage support for Trino. (#32910)`` +* ``Simplify conditions on len() in other providers (#33569)`` +* ``Replace repr() with proper formatting (#33520)`` + 1.0.1 .....
airflow/providers/openlineage/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.0.1" +__version__ = "1.0.2" try: from airflow import __version__ as airflow_version
airflow/providers/openlineage/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 1.0.2 - 1.0.1 - 1.0.0
airflow/providers/opsgenie/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/oracle/CHANGELOG.rst+11 −0 modified@@ -27,6 +27,17 @@ Changelog --------- +3.7.3 +..... + +Misc +~~~~~ + +* ``Replace strftime with f-strings where nicer (#33455)`` +* ``Simplify conditions on len() in other providers (#33569)`` +* ``Refactor: Simplify code in smaller providers (#33234)`` +* ``Avoid importing pandas and numpy in runtime and module level (#33483)`` + 3.7.2 .....
airflow/providers/oracle/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "3.7.2" +__version__ = "3.7.3" try: from airflow import __version__ as airflow_version
airflow/providers/oracle/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.7.3 - 3.7.2 - 3.7.1 - 3.7.0
airflow/providers/pagerduty/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/papermill/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +9bf68adfa0d929c4400d3e9f02cd2feaa4932f59
airflow/providers/plexus/CHANGELOG.rst+17 −0 modified@@ -27,6 +27,23 @@ Changelog --------- +3.2.2 +..... + +Misc +~~~~ + +* ``Simplify conditions on len() in other providers (#33569)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``D205 Support - Providers: Pagerduty to SMTP (inclusive) (#32358)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 3.2.1 .....
airflow/providers/plexus/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.2.1" +__version__ = "3.2.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-plexus:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/plexus/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.2 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/presto/CHANGELOG.rst+8 −0 modified@@ -27,6 +27,14 @@ Changelog --------- +5.1.3 +..... + +Misc +~~~~ + +* ``Consolidate import and usage of pandas (#33480)`` + 5.1.2 .....
airflow/providers/presto/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.1.2" +__version__ = "5.1.3" try: from airflow import __version__ as airflow_version
airflow/providers/presto/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.1.3 - 5.1.2 - 5.1.1 - 5.1.0
airflow/providers/redis/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -3878fe6fab3ccc1461932b456c48996f2763139f +7e799975948573ca2a1c4b2051d3eadc32bb8ba7
airflow/providers/salesforce/CHANGELOG.rst+17 −0 modified@@ -27,6 +27,23 @@ Changelog --------- +5.4.2 +..... + +Misc +~~~~ + +* ``Avoid importing pandas and numpy in runtime and module level (#33483)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``D205 Support - Providers: Pagerduty to SMTP (inclusive) (#32358)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 5.4.1 .....
airflow/providers/salesforce/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "5.4.1" +__version__ = "5.4.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-salesforce:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/salesforce/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.4.2 - 5.4.1 - 5.4.0 - 5.3.0
airflow/providers/samba/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/segment/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/sendgrid/CHANGELOG.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +3.2.2 +..... + +Misc +~~~~ + +* ``Refactor: Simplify code in smaller providers (#33234)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 3.2.1 .....
airflow/providers/sendgrid/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.2.1" +__version__ = "3.2.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-sendgrid:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/sendgrid/provider.yaml+1 −0 modified@@ -27,6 +27,7 @@ dependencies: suspended: false versions: + - 3.2.2 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/sftp/CHANGELOG.rst+18 −0 modified@@ -27,6 +27,24 @@ Changelog --------- +4.6.0 +..... + + +Features +~~~~~~~~ + +* ``Add parameter sftp_prefetch to SFTPToGCSOperator (#33274)`` + +Misc +~~~~ + +* ``Refactor: Remove useless str() calls (#33629)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``D205 Support - Providers - Final Pass (#33303)`` + 4.5.0 .....
airflow/providers/sftp/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.5.0" +__version__ = "4.6.0" try: from airflow import __version__ as airflow_version
airflow/providers/sftp/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 4.6.0 - 4.5.0 - 4.4.0 - 4.3.1
airflow/providers/singularity/CHANGELOG.rst+16 −0 modified@@ -27,6 +27,22 @@ Changelog --------- +3.2.2 +..... + +Misc +~~~~ + +* ``Refactor: Improve detection of duplicates and list sorting (#33675)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 3.2.1 .....
airflow/providers/singularity/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.2.1" +__version__ = "3.2.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-singularity:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/singularity/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.2.2 - 3.2.1 - 3.2.0 - 3.1.0
airflow/providers/slack/CHANGELOG.rst+7 −0 modified@@ -64,6 +64,13 @@ Breaking changes ``tcp_keep_alive_idle``, ``tcp_keep_alive_idle``, ``tcp_keep_alive_count``, ``tcp_keep_alive_interval`` from the ``SlackWebhookOperator``. Those parameters has no affect in the past, you should not provide it. +* ``Remove deprecated parts from Slack provider (#33557)`` +* ``Replace deprecated slack notification in provider.yaml with new one (#33643)`` + +Misc +~~~~ +* ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +* ``Consolidate import and usage of pandas (#33480)`` 7.3.2 .....
airflow/providers/slack/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "7.3.2" +__version__ = "8.0.0" try: from airflow import __version__ as airflow_version
airflow/providers/smtp/CHANGELOG.rst+8 −0 modified@@ -27,6 +27,14 @@ Changelog --------- +1.3.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Simplify 'X for X in Y' to 'Y' where applicable (#33453)`` + 1.3.0 .....
airflow/providers/smtp/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "1.3.0" +__version__ = "1.3.1" try: from airflow import __version__ as airflow_version
airflow/providers/smtp/provider.yaml+1 −0 modified@@ -24,6 +24,7 @@ description: | suspended: false versions: + - 1.3.1 - 1.3.0 - 1.2.0 - 1.1.0
airflow/providers/snowflake/CHANGELOG.rst+11 −0 modified@@ -42,6 +42,17 @@ Breaking changes ``sql_hook_params`` parameter, and the behavior should stay the same. +* ``Remove deprecated 'S3ToSnowflake' and 'SnowflakeToSlack' operators (#33558)`` + +Bug Fixes +~~~~~~~~~ + +* ``Set snowflake_conn_id on Snowflake Operators to avoid error (#33681)`` + +.. Review and move the new changes to one of the sections above: + * ``Bump apache-airflow-providers-snowflake due to breaking changes (#33615)`` + + 4.4.2 .....
airflow/providers/snowflake/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "4.4.2" +__version__ = "5.0.0" try: from airflow import __version__ as airflow_version
airflow/providers/ssh/CHANGELOG.rst+17 −0 modified@@ -27,6 +27,23 @@ Changelog --------- +3.7.2 +..... + +Misc +~~~~ + +* ``Use str.splitlines() to split lines in providers (#33593)`` +* ``Simplify conditions on len() in other providers (#33569)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` + * ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Prepare docs for July 2023 wave of Providers (#32298)`` + * ``Improve provider documentation and README structure (#32125)`` + 3.7.1 .....
airflow/providers/ssh/__init__.py+4 −2 modified@@ -28,14 +28,16 @@ __all__ = ["__version__"] -__version__ = "3.7.1" +__version__ = "3.7.2" try: from airflow import __version__ as airflow_version except ImportError: from airflow.version import version as airflow_version -if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( f"The package `apache-airflow-providers-ssh:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/ssh/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 3.7.2 - 3.7.1 - 3.7.0 - 3.6.0
airflow/providers/tableau/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -21e8f878a3c91250d0d198c6c3675b4b350fcb61 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/tabular/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -21e8f878a3c91250d0d198c6c3675b4b350fcb61 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/telegram/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -21e8f878a3c91250d0d198c6c3675b4b350fcb61 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
airflow/providers/trino/CHANGELOG.rst+13 −0 modified@@ -27,6 +27,19 @@ Changelog --------- +5.3.0 +..... + +Features +~~~~~~~~ + +* ``Add OpenLineage support for Trino. (#32910)`` + +Misc +~~~~ + +* ``Consolidate import and usage of pandas (#33480)`` + 5.2.1 .....
airflow/providers/trino/__init__.py+1 −1 modified@@ -28,7 +28,7 @@ __all__ = ["__version__"] -__version__ = "5.2.1" +__version__ = "5.3.0" try: from airflow import __version__ as airflow_version
airflow/providers/trino/provider.yaml+1 −0 modified@@ -23,6 +23,7 @@ description: | suspended: false versions: + - 5.3.0 - 5.2.1 - 5.2.0 - 5.1.1
airflow/providers/yandex/CHANGELOG.rst+22 −0 modified@@ -27,9 +27,31 @@ Changelog --------- +3.4.0 +..... + .. note:: This release dropped support for Python 3.7 +Features +~~~~~~~~ + +* ``add support for Yandex Dataproc cluster labels (#29811)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + * ``Add note about dropping Python 3.7 for providers (#32015)`` + * ``Add D400 pydocstyle check - Providers (#31427)`` + * ``Add full automation for min Airflow version for providers (#30994)`` + * ``Add mechanism to suspend providers (#30422)`` + * ``Resume yandex provider (#33574)`` + * ``Remove spurious headers for provider changelogs (#32373)`` + * ``Improve provider documentation and README structure (#32125)`` + * ``Use '__version__' in providers not 'version' (#31393)`` + * ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)`` + * ``Bump minimum Airflow version in providers (#30917)`` + * ``Suspend Yandex provider due to protobuf limitation (#30667)`` + 3.3.0 .....
airflow/providers/yandex/__init__.py+10 −5 modified@@ -26,13 +26,18 @@ import packaging.version -import airflow - __all__ = ["__version__"] -__version__ = "3.3.0" +__version__ = "3.4.0" + +try: + from airflow import __version__ as airflow_version +except ImportError: + from airflow.version import version as airflow_version -if packaging.version.parse(airflow.version.version) < packaging.version.parse("2.4.0"): +if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse( + "2.4.0" +): raise RuntimeError( - f"The package `apache-airflow-providers-yandex:{__version__}` requires Apache Airflow 2.4.0+" + f"The package `apache-airflow-providers-yandex:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501 )
airflow/providers/yandex/provider.yaml+1 −0 modified@@ -22,6 +22,7 @@ description: | Yandex including `Yandex.Cloud <https://cloud.yandex.com/>`__ suspended: false versions: + - 3.4.0 - 3.3.0 - 3.2.0 - 3.1.0
airflow/providers/zendesk/.latest-doc-only-change.txt+1 −1 modified@@ -1 +1 @@ -225e3041d269698d0456e09586924c1898d09434 +b5a4d36383c4143f46e168b8b7a4ba2dc7c54076
docs/apache-airflow-providers-alibaba/commits.rst+18 −4 modified@@ -28,16 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.5.2 +..... + +Latest change: 2023-08-22 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`32feab4100 <https://github.com/apache/airflow/commit/32feab41006897de182bfa684813be230027aca1>`_ 2023-08-22 ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +`af0a4a0698 <https://github.com/apache/airflow/commit/af0a4a0698040c1b61cdeafc135d99dcb182c9ef>`_ 2023-08-21 ``Simplify conditions on len() in providers/apache (#33564)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +================================================================================================= =========== ======================================================================= + 2.5.1 ..... -Latest change: 2023-08-08 +Latest change: 2023-08-11 -================================================================================================= =========== ========================================================= +================================================================================================= =========== ============================================================ Commit Committed Subject -================================================================================================= =========== ========================================================= +================================================================================================= =========== ============================================================ +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `4e83660f4c <https://github.com/apache/airflow/commit/4e83660f4c713d5a00ad9a583ba3a56c374d7e92>`_ 2023-08-08 ``Refactor: Simplify code in providers/alibaba (#33225)`` -================================================================================================= =========== ========================================================= +================================================================================================= =========== ============================================================ 2.5.0 .....
docs/apache-airflow-providers-alibaba/index.rst+1 −1 modified@@ -77,7 +77,7 @@ Package apache-airflow-providers-alibaba Alibaba Cloud integration (including `Alibaba Cloud <https://www.alibabacloud.com//>`__). -Release: 2.5.1 +Release: 2.5.2 Provider package ----------------
docs/apache-airflow-providers-amazon/commits.rst+35 −1 modified@@ -28,14 +28,48 @@ For high-level changelog, see :doc:`package information including changelog <ind +8.6.0 +..... + +Latest change: 2023-08-25 + +================================================================================================= =========== ============================================================================================= +Commit Committed Subject +================================================================================================= =========== ============================================================================================= +`633217c842 <https://github.com/apache/airflow/commit/633217c84217f925c4c0a92e0b24ba314b64281b>`_ 2023-08-25 ``Simplify conditions on len() in providers/amazon (#33565)`` +`83efcaa835 <https://github.com/apache/airflow/commit/83efcaa835c4316efe2f45fd9cfb619295b25a4f>`_ 2023-08-24 ``always push ECS task ARN to xcom in 'EcsRunTaskOperator' (#33703)`` +`2d8625253f <https://github.com/apache/airflow/commit/2d8625253f7101a9da7161a7856f4a4084457548>`_ 2023-08-24 ``Remove non-public interface usage in EcsRunTaskOperator (#29447)`` +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`53a8973952 <https://github.com/apache/airflow/commit/53a89739528cda26b8b53670fc51769850eb263e>`_ 2023-08-24 ``Fix bug in task logs when using AWS CloudWatch. Do not set 'start_time' (#33673)`` +`94f70d8184 <https://github.com/apache/airflow/commit/94f70d818482de7defa03c0aff3c213ca6b83e9e>`_ 2023-08-23 ``Replace strftime with f-strings where nicer (#33455)`` +`5f504e9a17 <https://github.com/apache/airflow/commit/5f504e9a17353259e70bd3ed54f8edd2e465882c>`_ 2023-08-23 ``Upgrade botocore/aiobotocore minimum requirements (#33649)`` +`85aea74b64 <https://github.com/apache/airflow/commit/85aea74b647f978cd1e3c42e3a5f3bb068b56539>`_ 2023-08-23 ``Fix AWS Batch waiter failure state (#33656)`` +`a54c2424df <https://github.com/apache/airflow/commit/a54c2424df51bf1acec420f4792a237dabcfa12b>`_ 2023-08-23 ``Fix typos (double words and it's/its) (#33623)`` +`8ed38c1619 <https://github.com/apache/airflow/commit/8ed38c1619209aaae3cf900ed34d9a3b48a8bf8d>`_ 2023-08-22 ``Add Appflow system test + improvements (#33614)`` +`41d9be072a <https://github.com/apache/airflow/commit/41d9be072abacc47393f700aa8fb98bc2b9a3713>`_ 2023-08-22 ``Fix AWS appflow waiter (#33613)`` +`8402e9adf4 <https://github.com/apache/airflow/commit/8402e9adf4c7d0ddf234ccfb22fce5c34384920a>`_ 2023-08-21 ``Use 'boto3.client' linked to resource meta instead of create new one for waiters (#33552)`` +`95a930bc0a <https://github.com/apache/airflow/commit/95a930bc0a720c5548e4fa2e1f74e25f12e9ae1d>`_ 2023-08-21 ``Consolidate import and usage of itertools (#33479)`` +`1407e277ae <https://github.com/apache/airflow/commit/1407e277aeb059cbfd1bb96fb3f43c4bf4f15cea>`_ 2023-08-19 ``Add 'sql_hook_params' parameter to 'S3ToSqlOperator' (#33427)`` +`b555ed6f35 <https://github.com/apache/airflow/commit/b555ed6f358f738e2484db77b0782755440c8c8d>`_ 2023-08-18 ``Fix striping tags when falling back to update in 'SageMakerEndpointOperator' (#33487)`` +`8e88eb8fa7 <https://github.com/apache/airflow/commit/8e88eb8fa7e1fc12918dcbfcfc8ed28381008d33>`_ 2023-08-17 ``Consolidate import and usage of pandas (#33480)`` +`223b41d68f <https://github.com/apache/airflow/commit/223b41d68f53e7aa76588ffb8ba1e37e780d9e3b>`_ 2023-08-16 ``Added Amazon SageMaker Notebook hook and operators (#33219)`` +`45d5f64127 <https://github.com/apache/airflow/commit/45d5f6412731f81002be7e9c86c11060394875cf>`_ 2023-08-16 ``Add 'sql_hook_params' parameter to 'SqlToS3Operator' (#33425)`` +`60df70526a <https://github.com/apache/airflow/commit/60df70526a00fb9a3e245bb3ffb2a9faa23582e7>`_ 2023-08-15 ``Add parameter to pass role ARN to 'GlueJobOperator ' (#33408)`` +`4d99705f69 <https://github.com/apache/airflow/commit/4d99705f69114d37bb3e85d7723602e71bd023c1>`_ 2023-08-14 ``Add 'deferrable' option to 'LambdaCreateFunctionOperator' (#33327)`` +`bd11ea81e5 <https://github.com/apache/airflow/commit/bd11ea81e50f602d1c9f64c44c61b4e7294aafa9>`_ 2023-08-13 ``Add Deferrable mode to GlueCatalogPartitionSensor (#33239)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +`0df0d7457e <https://github.com/apache/airflow/commit/0df0d7457e78f83e2c0f6ab65c2d01bb8938167d>`_ 2023-08-11 ``Add new RdsStartExportTaskOperator parameters (#33251)`` +================================================================================================= =========== ============================================================================================= + 8.5.1 ..... -Latest change: 2023-08-10 +Latest change: 2023-08-11 ================================================================================================= =========== =================================================================================== Commit Committed Subject ================================================================================================= =========== =================================================================================== +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `681ee46b21 <https://github.com/apache/airflow/commit/681ee46b21308e8cb38afda9722d3b1a8f91efa0>`_ 2023-08-10 ``Fix get_log_events() in AWS logs hook (#33290)`` `c14cb85f16 <https://github.com/apache/airflow/commit/c14cb85f16b6c9befd35866327fecb4ab9bc0fc4>`_ 2023-08-10 ``Improve fetching logs from AWS (#33231)`` `83bd60fd97 <https://github.com/apache/airflow/commit/83bd60fd97d4ca622adcbd7898d88880fee43054>`_ 2023-08-09 ``Refactor: Simplify code in providers/amazon (#33222)``
docs/apache-airflow-providers-amazon/index.rst+9 −8 modified@@ -82,7 +82,7 @@ Package apache-airflow-providers-amazon Amazon integration (including `Amazon Web Services (AWS) <https://aws.amazon.com/>`__). -Release: 8.5.1 +Release: 8.6.0 Provider package ---------------- @@ -108,17 +108,18 @@ PIP package Version required ``apache-airflow`` ``>=2.4.0`` ``apache-airflow-providers-common-sql`` ``>=1.3.1`` ``apache-airflow-providers-http`` -``boto3`` ``>=1.24.0`` +``boto3`` ``>=1.28.0`` +``mypy-boto3-rds`` ``>=1.28.0`` +``mypy-boto3-redshift-data`` ``>=1.28.0`` +``mypy-boto3-s3`` ``>=1.28.0`` +``mypy-boto3-appflow`` ``>=1.28.0`` +``botocore`` ``>=1.31.0`` ``asgiref`` ``watchtower`` ``~=2.0.1`` ``jsonpath_ng`` ``>=1.5.3`` ``redshift_connector`` ``>=2.0.888`` ``sqlalchemy_redshift`` ``>=0.8.6`` -``mypy-boto3-rds`` ``>=1.24.0`` -``mypy-boto3-redshift-data`` ``>=1.24.0`` -``mypy-boto3-appflow`` ``>=1.28.16`` ``asgiref`` -``mypy-boto3-s3`` ``>=1.24.0`` ======================================= ================== Cross provider package dependencies @@ -158,5 +159,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site <https://downloads.apache.org/airflow/providers/>`_ -* `The apache-airflow-providers-amazon 8.5.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.5.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.5.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.5.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-amazon 8.5.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.5.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.5.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.5.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-amazon 8.6.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-amazon-8.6.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-amazon 8.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_amazon-8.6.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-apache-beam/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.2.2 +..... + +Latest change: 2023-08-22 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`32feab4100 <https://github.com/apache/airflow/commit/32feab41006897de182bfa684813be230027aca1>`_ 2023-08-22 ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +`bfa09da138 <https://github.com/apache/airflow/commit/bfa09da1380f0f1e0727dbbc9f1878bd44eb848d>`_ 2023-08-11 ``Fix wrong OR condition when evaluating beam version < 2.39.0 (#33308)`` +`7e79997594 <https://github.com/apache/airflow/commit/7e799975948573ca2a1c4b2051d3eadc32bb8ba7>`_ 2023-08-11 ``D205 Support - Providers - Final Pass (#33303)`` +================================================================================================= =========== ========================================================================= + 5.2.1 ..... -Latest change: 2023-08-06 +Latest change: 2023-08-11 ================================================================================================= =========== ============================================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================================ +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `1839b683e7 <https://github.com/apache/airflow/commit/1839b683e7974f7f553af2689a64ee36cf1ec006>`_ 2023-08-06 ``Allow downloading requirements file from GCS in 'BeamRunPythonPipelineOperator' (#31645)`` ================================================================================================= =========== ============================================================================================
docs/apache-airflow-providers-apache-beam/index.rst+3 −3 modified@@ -75,7 +75,7 @@ Package apache-airflow-providers-apache-beam `Apache Beam <https://beam.apache.org/>`__. -Release: 5.2.1 +Release: 5.2.2 Provider package ---------------- @@ -127,5 +127,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 5.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-beam 5.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-beam 5.2.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.2.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.2.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-beam-5.2.2.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-beam 5.2.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.2.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.2.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_beam-5.2.2-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-apache-flink/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/apache/flink/CHANGELOG.rst
docs/apache-airflow-providers-apache-flink/commits.rst+16 −0 modified@@ -28,6 +28,21 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.1.2 +..... + +Latest change: 2023-08-21 + +================================================================================================= =========== ================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================ +`af0a4a0698 <https://github.com/apache/airflow/commit/af0a4a0698040c1b61cdeafc135d99dcb182c9ef>`_ 2023-08-21 ``Simplify conditions on len() in providers/apache (#33564)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ================================================================ + 1.1.1 ..... @@ -36,6 +51,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================== Commit Committed Subject ================================================================================================= =========== ============================================================== +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a473facf6c <https://github.com/apache/airflow/commit/a473facf6c0b36f7d051ecc2d1aa94ba6957468d>`_ 2023-06-01 ``Add D400 pydocstyle check - Apache providers only (#31424)`` `9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_ 2023-05-29 ``Remove Python 3.7 support (#30963)``
docs/apache-airflow-providers-apache-flink/index.rst+3 −3 modified@@ -68,7 +68,7 @@ Package apache-airflow-providers-apache-flink `Apache Flink <https://flink.apache.org/>`__ -Release: 1.1.1 +Release: 1.1.2 Provider package ---------------- @@ -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-apache-flink 1.1.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-flink 1.1.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-flink 1.1.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-flink-1.1.2.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-flink 1.1.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_flink-1.1.2-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-apache-hive/commits.rst+23 −1 modified@@ -28,14 +28,36 @@ For high-level changelog, see :doc:`package information including changelog <ind +6.1.5 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`08188f80f4 <https://github.com/apache/airflow/commit/08188f80f4bb6c225eaf4f58e2742c982a230652>`_ 2023-08-24 ``Bring back hive support for Python 3.11 (#32607)`` +`32feab4100 <https://github.com/apache/airflow/commit/32feab41006897de182bfa684813be230027aca1>`_ 2023-08-22 ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +`bb2689ab45 <https://github.com/apache/airflow/commit/bb2689ab455ca5d82f4f9b8d4b73ec071849c439>`_ 2023-08-21 ``Use str.splitlines() to split lines in providers (#33593)`` +`af0a4a0698 <https://github.com/apache/airflow/commit/af0a4a0698040c1b61cdeafc135d99dcb182c9ef>`_ 2023-08-21 ``Simplify conditions on len() in providers/apache (#33564)`` +`abef61ff3d <https://github.com/apache/airflow/commit/abef61ff3d6b9ae8dcb7f9dbbea78a9648a0c50b>`_ 2023-08-20 ``Replace repr() with proper formatting (#33520)`` +`7700fb12cc <https://github.com/apache/airflow/commit/7700fb12cc6c7a97901662e6ac6aa1e4e932d969>`_ 2023-08-20 ``Simplify 'X for X in Y' to 'Y' where applicable (#33453)`` +`63e6eab785 <https://github.com/apache/airflow/commit/63e6eab785f8313be6b5e28056215947bb8ed8a3>`_ 2023-08-20 ``Replace OrderedDict with plain dict (#33508)`` +`bcefe6109b <https://github.com/apache/airflow/commit/bcefe6109bcabd9bd6daf8b44f7352adda1ed53d>`_ 2023-08-19 ``Simplify code around enumerate (#33476)`` +`ea8519c055 <https://github.com/apache/airflow/commit/ea8519c0554d16b13d330a686f8479fc10cc58f2>`_ 2023-08-18 ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +`8e88eb8fa7 <https://github.com/apache/airflow/commit/8e88eb8fa7e1fc12918dcbfcfc8ed28381008d33>`_ 2023-08-17 ``Consolidate import and usage of pandas (#33480)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +================================================================================================= =========== ========================================================================= + 6.1.4 ..... -Latest change: 2023-08-04 +Latest change: 2023-08-05 ================================================================================================= =========== ===================================================================== Commit Committed Subject ================================================================================================= =========== ===================================================================== +`60677b0ba3 <https://github.com/apache/airflow/commit/60677b0ba3c9e81595ec2aa3d4be2737e5b32054>`_ 2023-08-05 ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` `108a07b580 <https://github.com/apache/airflow/commit/108a07b580ca185b5982f2e60deb70f73a1f745a>`_ 2023-08-04 ``Bring back mysql-connector-python as required depednency (#32989)`` ================================================================================================= =========== =====================================================================
docs/apache-airflow-providers-apache-hive/index.rst+7 −8 modified@@ -79,7 +79,7 @@ Package apache-airflow-providers-apache-hive `Apache Hive <https://hive.apache.org/>`__ -Release: 6.1.4 +Release: 6.1.5 Provider package ---------------- @@ -99,17 +99,16 @@ Requirements The minimum Apache Airflow version supported by this provider package is ``2.4.0``. -======================================= ================================== +======================================= ================== PIP package Version required -======================================= ================================== +======================================= ================== ``apache-airflow`` ``>=2.4.0`` ``apache-airflow-providers-common-sql`` ``>=1.3.1`` ``hmsclient`` ``>=0.1.0`` ``pandas`` ``>=0.17.1`` -``pyhive[hive]`` ``>=0.6.0`` -``sasl`` ``>=0.3.1; python_version>="3.9"`` +``pyhive[hive_pure_sasl]`` ``>=0.7.0`` ``thrift`` ``>=0.9.2`` -======================================= ================================== +======================================= ================== Cross provider package dependencies ----------------------------------- @@ -142,5 +141,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 6.1.4 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-hive 6.1.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-hive 6.1.5 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.5.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.5.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-hive-6.1.5.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-hive 6.1.5 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.5-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.5-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_hive-6.1.5-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-apache-livy/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.5.3 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`32feab4100 <https://github.com/apache/airflow/commit/32feab41006897de182bfa684813be230027aca1>`_ 2023-08-22 ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +`af0a4a0698 <https://github.com/apache/airflow/commit/af0a4a0698040c1b61cdeafc135d99dcb182c9ef>`_ 2023-08-21 ``Simplify conditions on len() in providers/apache (#33564)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +================================================================================================= =========== ======================================================================= + 3.5.2 ..... -Latest change: 2023-07-05 +Latest change: 2023-07-06 ================================================================================================= =========== ========================================================================== Commit Committed Subject ================================================================================================= =========== ========================================================================== +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` `3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` `cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` `f8593503cb <https://github.com/apache/airflow/commit/f8593503cbe252c2f4dc5ff48a3f292c9e13baad>`_ 2023-07-05 ``Add default_deferrable config (#31712)``
docs/apache-airflow-providers-apache-livy/index.rst+3 −3 modified@@ -75,7 +75,7 @@ Package apache-airflow-providers-apache-livy `Apache Livy <https://livy.apache.org/>`__ -Release: 3.5.2 +Release: 3.5.3 Provider package ---------------- @@ -129,5 +129,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 3.5.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-livy 3.5.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-livy 3.5.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-livy-3.5.3.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-livy 3.5.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_livy-3.5.3-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-apache-pinot/commits.rst+14 −1 modified@@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.3 +..... + +Latest change: 2023-08-23 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`5dfbbbbf5a <https://github.com/apache/airflow/commit/5dfbbbbf5adf70a9814121de8706a7c36f241836>`_ 2023-08-23 ``Referencing correct hooks for Apache Pinot (#33601)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +================================================================================================= =========== ======================================================================= + 4.1.2 ..... -Latest change: 2023-07-19 +Latest change: 2023-07-29 ================================================================================================= =========== =================================================================== Commit Committed Subject ================================================================================================= =========== =================================================================== +`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`_ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)`` `60c49ab2df <https://github.com/apache/airflow/commit/60c49ab2dfabaf450b80a5c7569743dd383500a6>`_ 2023-07-19 ``Add more accurate typing for DbApiHook.run method (#31846)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` `3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)``
docs/apache-airflow-providers-apache-pinot/index.rst+3 −3 modified@@ -69,7 +69,7 @@ Package apache-airflow-providers-apache-pinot `Apache Pinot <https://pinot.apache.org/>`__ -Release: 4.1.2 +Release: 4.1.3 Provider package ---------------- @@ -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-pinot 4.1.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-pinot 4.1.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-pinot 4.1.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-pinot-4.1.3.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-pinot 4.1.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_pinot-4.1.3-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-apache-spark/commits.rst+14 −1 modified@@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.1.4 +..... + +Latest change: 2023-08-22 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`32feab4100 <https://github.com/apache/airflow/commit/32feab41006897de182bfa684813be230027aca1>`_ 2023-08-22 ``Refactor: Simplify code in Apache/Alibaba providers (#33227)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +================================================================================================= =========== ======================================================================= + 4.1.3 ..... -Latest change: 2023-07-31 +Latest change: 2023-08-05 ================================================================================================= =========== ==================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================== +`60677b0ba3 <https://github.com/apache/airflow/commit/60677b0ba3c9e81595ec2aa3d4be2737e5b32054>`_ 2023-08-05 ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` `4f83e831d2 <https://github.com/apache/airflow/commit/4f83e831d2e6985b6c82b2e0c45673b58ef81074>`_ 2023-07-31 ``Validate conn_prefix in extra field for Spark JDBC hook (#32946)`` ================================================================================================= =========== ====================================================================
docs/apache-airflow-providers-apache-spark/index.rst+3 −3 modified@@ -76,7 +76,7 @@ Package apache-airflow-providers-apache-spark `Apache Spark <https://spark.apache.org/>`__ -Release: 4.1.3 +Release: 4.1.4 Provider package ---------------- @@ -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-spark 4.1.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-spark-4.1.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-spark-4.1.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-spark-4.1.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-apache-spark 4.1.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-4.1.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-4.1.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-4.1.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-apache-spark 4.1.4 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-spark-4.1.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-spark-4.1.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-apache-spark-4.1.4.tar.gz.sha512>`__) +* `The apache-airflow-providers-apache-spark 4.1.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-4.1.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-4.1.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_apache_spark-4.1.4-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-arangodb/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/arangodb/CHANGELOG.rst
docs/apache-airflow-providers-arangodb/commits.rst+19 −0 modified@@ -28,6 +28,24 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.2.2 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`c645d8e40c <https://github.com/apache/airflow/commit/c645d8e40c167ea1f6c332cdc3ea0ca5a9363205>`_ 2023-08-12 ``D401 Support - Providers: Airbyte to Atlassian (Inclusive) (#33354)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`8c37b74a20 <https://github.com/apache/airflow/commit/8c37b74a208a808d905c1b86d081d69d7a1aa900>`_ 2023-06-28 ``D205 Support - Providers: Apache to Common (inclusive) (#32226)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ======================================================================= + 2.2.1 ..... @@ -36,6 +54,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` `9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_ 2023-05-29 ``Remove Python 3.7 support (#30963)``
docs/apache-airflow-providers-arangodb/index.rst+1 −1 modified@@ -76,7 +76,7 @@ Package apache-airflow-providers-arangodb `ArangoDB <https://www.arangodb.com/>`__ -Release: 2.2.1 +Release: 2.2.2 Provider package ----------------
docs/apache-airflow-providers-celery/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.3 +..... + +Latest change: 2023-08-23 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`b1a3b42880 <https://github.com/apache/airflow/commit/b1a3b4288022c67db22cbc7d24b0c4b2b122453b>`_ 2023-08-23 ``Make auth managers provide their own airflow CLI commands (#33481)`` +`ae25a52ae3 <https://github.com/apache/airflow/commit/ae25a52ae342c9e0bc3afdb21d613447c3687f6c>`_ 2023-08-21 ``Fix dependencies for celery and opentelemetry for Python 3.8 (#33579)`` +`4c4981d1ad <https://github.com/apache/airflow/commit/4c4981d1adf2bd8b28ffa7e6ed57162abb8feb8f>`_ 2023-08-21 ``Refactor Sqlalchemy queries to 2.0 style (Part 7) (#32883)`` +================================================================================================= =========== ========================================================================= + 3.3.2 ..... -Latest change: 2023-08-09 +Latest change: 2023-08-11 ================================================================================================= =========== =============================================================================== Commit Committed Subject ================================================================================================= =========== =============================================================================== +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `0b528e2b2e <https://github.com/apache/airflow/commit/0b528e2b2e0a9942b38a78cf79e0995d9eb8a8d8>`_ 2023-08-09 ``Add missing re2 dependency to cncf.kubernetes and celery providers (#33237)`` `9556d6d5f6 <https://github.com/apache/airflow/commit/9556d6d5f611428ac8a3a5891647b720d4498ace>`_ 2023-08-08 ``Replace State by TaskInstanceState in Airflow executors (#32627)`` ================================================================================================= =========== ===============================================================================
docs/apache-airflow-providers-celery/index.rst+4 −4 modified@@ -57,7 +57,7 @@ Package apache-airflow-providers-celery `Celery <http://www.celeryproject.org/>`__ -Release: 3.3.2 +Release: 3.3.3 Provider package ---------------- @@ -81,7 +81,7 @@ The minimum Apache Airflow version supported by this provider package is ``2.4.0 PIP package Version required ================== ================== ``apache-airflow`` ``>=2.4.0`` -``celery`` ``>=5.2.3,<6`` +``celery`` ``>=5.3.0,<6`` ``flower`` ``>=1.0.0`` ``google-re2`` ``>=1.0`` ================== ================== @@ -111,5 +111,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.3.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-celery-3.3.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-celery-3.3.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-celery-3.3.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-celery 3.3.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.3.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.3.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.3.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-celery 3.3.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-celery-3.3.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-celery-3.3.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-celery-3.3.3.tar.gz.sha512>`__) +* `The apache-airflow-providers-celery 3.3.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.3.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.3.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_celery-3.3.3-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-cncf-kubernetes/commits.rst+29 −1 modified@@ -28,14 +28,42 @@ For high-level changelog, see :doc:`package information including changelog <ind +7.5.0 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ========================================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================================= +`c477031039 <https://github.com/apache/airflow/commit/c47703103982ec4730ea28c8a5eda12ed2ce008a>`_ 2023-08-24 ``Inspect container state rather than last_state when deciding whether to skip (#33702)`` +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`6130993d78 <https://github.com/apache/airflow/commit/6130993d781695bbd87e09d3665d8f0991bc32d0>`_ 2023-08-24 ``Fix KubernetesPodOperator duplicating logs when interrupted (#33500)`` +`2dbb963324 <https://github.com/apache/airflow/commit/2dbb9633240777d658031d32217255849150684b>`_ 2023-08-24 ``Refactor: Improve detection of duplicates and list sorting (#33675)`` +`75ce4d1923 <https://github.com/apache/airflow/commit/75ce4d1923d65df339d0fc6332c990687796c79b>`_ 2023-08-23 ``Add istio test, use curl /quitquitquit to exit sidecar, and some othe… (#33306)`` +`4bdf908041 <https://github.com/apache/airflow/commit/4bdf908041159c1d6ed019469190e08297928393>`_ 2023-08-23 ``Fix 2.7.0 db migration job errors (#33652)`` +`0ca5f700ab <https://github.com/apache/airflow/commit/0ca5f700ab5e153ff8eea2c27b0629f2f44c8cb3>`_ 2023-08-23 ``Exclude deprecated "operators.kubernetes_pod" module from provider.yaml (#33641)`` +`a54c2424df <https://github.com/apache/airflow/commit/a54c2424df51bf1acec420f4792a237dabcfa12b>`_ 2023-08-23 ``Fix typos (double words and it's/its) (#33623)`` +`7141c42cc3 <https://github.com/apache/airflow/commit/7141c42cc33000fe506a41679409d0a260d63eb0>`_ 2023-08-22 ``Make cluster_context templated (#33604)`` +`4c4981d1ad <https://github.com/apache/airflow/commit/4c4981d1adf2bd8b28ffa7e6ed57162abb8feb8f>`_ 2023-08-21 ``Refactor Sqlalchemy queries to 2.0 style (Part 7) (#32883)`` +`95a930bc0a <https://github.com/apache/airflow/commit/95a930bc0a720c5548e4fa2e1f74e25f12e9ae1d>`_ 2023-08-21 ``Consolidate import and usage of itertools (#33479)`` +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`e991f60a79 <https://github.com/apache/airflow/commit/e991f60a797643d151471bf8e5ed98857e1274ac>`_ 2023-08-18 ``Add 'active_deadline_seconds' parameter to 'KubernetesPodOperator' (#33379)`` +`bfe08a79db <https://github.com/apache/airflow/commit/bfe08a79db8130c499883f014121be570ec071bd>`_ 2023-08-16 ``Import utc from datetime and normalize its import (#33450)`` +`46ffc25995 <https://github.com/apache/airflow/commit/46ffc259956d3782bb0c09e782fca634ff4215b9>`_ 2023-08-14 ``Adding typing for KPO SCC objects (#33381)`` +`38aada7b8b <https://github.com/apache/airflow/commit/38aada7b8b6afab177c009b237dd5e75d60d51af>`_ 2023-08-14 ``Introducing class constant to make worker pod log lines configurable (#33378)`` +`7e79997594 <https://github.com/apache/airflow/commit/7e799975948573ca2a1c4b2051d3eadc32bb8ba7>`_ 2023-08-11 ``D205 Support - Providers - Final Pass (#33303)`` +================================================================================================= =========== ========================================================================================= + 7.4.2 ..... -Latest change: 2023-08-09 +Latest change: 2023-08-11 ================================================================================================= =========== ============================================================================================================== Commit Committed Subject ================================================================================================= =========== ============================================================================================================== +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `1f6257110d <https://github.com/apache/airflow/commit/1f6257110d28b638290c95c47fb4971450f0b4db>`_ 2023-08-09 ``Make the 'OnFinishAction' enum inherit from str to support passing it to 'KubernetesPodOperatpor' (#33228)`` `0b528e2b2e <https://github.com/apache/airflow/commit/0b528e2b2e0a9942b38a78cf79e0995d9eb8a8d8>`_ 2023-08-09 ``Add missing re2 dependency to cncf.kubernetes and celery providers (#33237)`` `056f1670fe <https://github.com/apache/airflow/commit/056f1670fe85a6f9d70cd72ec2e88287e20e6827>`_ 2023-08-08 ``Refactor: Simplify code in providers/cncf (#33230)``
docs/apache-airflow-providers-cncf-kubernetes/index.rst+1 −1 modified@@ -79,7 +79,7 @@ Package apache-airflow-providers-cncf-kubernetes `Kubernetes <https://kubernetes.io/>`__ -Release: 7.4.2 +Release: 7.5.0 Provider package ----------------
docs/apache-airflow-providers-common-sql/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.7.1 +..... + +Latest change: 2023-08-23 + +================================================================================================= =========== ========================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================= +`92474db6a5 <https://github.com/apache/airflow/commit/92474db6a5321a0c0cd0dc21695f95d51c3aad16>`_ 2023-08-23 ``Refactor: Better percentage formatting (#33595)`` +`a54c2424df <https://github.com/apache/airflow/commit/a54c2424df51bf1acec420f4792a237dabcfa12b>`_ 2023-08-23 ``Fix typos (double words and it's/its) (#33623)`` +`a91ee7ac2f <https://github.com/apache/airflow/commit/a91ee7ac2fe29f460a4e4b0d8c1346f40672be43>`_ 2023-08-20 ``Refactor: Simplify code in smaller providers (#33234)`` +================================================================================================= =========== ========================================================= + 1.7.0 ..... -Latest change: 2023-08-07 +Latest change: 2023-08-11 ================================================================================================= =========== ========================================================================== Commit Committed Subject ================================================================================================= =========== ========================================================================== +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `9736143468 <https://github.com/apache/airflow/commit/9736143468cfe034e65afb3df3031ab3626f0f6d>`_ 2023-08-07 ``Add a new parameter to SQL operators to specify conn id field (#30784)`` ================================================================================================= =========== ==========================================================================
docs/apache-airflow-providers-common-sql/index.rst+3 −3 modified@@ -76,7 +76,7 @@ Package apache-airflow-providers-common-sql `Common SQL Provider <https://en.wikipedia.org/wiki/SQL>`__ -Release: 1.7.0 +Release: 1.7.1 Provider package ---------------- @@ -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-common-sql 1.7.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-common-sql-1.7.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-common-sql-1.7.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-common-sql-1.7.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-common-sql 1.7.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.7.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.7.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.7.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-common-sql 1.7.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-common-sql-1.7.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-common-sql-1.7.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-common-sql-1.7.1.tar.gz.sha512>`__) +* `The apache-airflow-providers-common-sql 1.7.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.7.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.7.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_common_sql-1.7.1-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-daskexecutor/commits.rst+13 −1 modified@@ -28,13 +28,25 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.0.1 +..... + +Latest change: 2023-08-20 + +================================================================================================= =========== ================================================== +Commit Committed Subject +================================================================================================= =========== ================================================== +`abef61ff3d <https://github.com/apache/airflow/commit/abef61ff3d6b9ae8dcb7f9dbbea78a9648a0c50b>`_ 2023-08-20 ``Replace repr() with proper formatting (#33520)`` +================================================================================================= =========== ================================================== + 1.0.0 ..... -Latest change: 2023-07-25 +Latest change: 2023-07-29 ================================================================================================= =========== =============================================================== Commit Committed Subject ================================================================================================= =========== =============================================================== +`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`_ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)`` `0c798252ef <https://github.com/apache/airflow/commit/0c798252efb83844a2e0ba08d74b32eed2e317ad>`_ 2023-07-25 ``Extract Dask executor to new daskexecutor provider (#32772)`` ================================================================================================= =========== ===============================================================
docs/apache-airflow-providers-daskexecutor/index.rst+1 −1 modified@@ -56,7 +56,7 @@ Package apache-airflow-providers-daskexecutor `Dask <https://www.dask.org/>`__ -Release: 1.0.0 +Release: 1.0.1 Provider package ----------------
docs/apache-airflow-providers-databricks/commits.rst+19 −1 modified@@ -28,14 +28,32 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.4.0 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`dc47c460dc <https://github.com/apache/airflow/commit/dc47c460dc0edfbfe0e692eac1d07b42280e0810>`_ 2023-08-24 ``Update docs in databricks.py - we use 2.1 now (#32340)`` +`4154cc04ce <https://github.com/apache/airflow/commit/4154cc04ce9702b09e6f13d423686fdf4cb7b877>`_ 2023-08-24 ``Do not create lists we don't need (#33519)`` +`2dbb963324 <https://github.com/apache/airflow/commit/2dbb9633240777d658031d32217255849150684b>`_ 2023-08-24 ``Refactor: Improve detection of duplicates and list sorting (#33675)`` +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`a91ee7ac2f <https://github.com/apache/airflow/commit/a91ee7ac2fe29f460a4e4b0d8c1346f40672be43>`_ 2023-08-20 ``Refactor: Simplify code in smaller providers (#33234)`` +`8bf53dd554 <https://github.com/apache/airflow/commit/8bf53dd5545ecda0e5bbffbc4cc803cbbde719a9>`_ 2023-08-14 ``Add Service Principal OAuth for Databricks. (#33005)`` +`5f8f25b34c <https://github.com/apache/airflow/commit/5f8f25b34c9e8c0d4845b014fc8f1b00cc2e766f>`_ 2023-08-11 ``Ecldude databrick connector 2.9.0 due to a bug (#33311)`` +================================================================================================= =========== ======================================================================= + 4.3.3 ..... -Latest change: 2023-08-07 +Latest change: 2023-08-11 ================================================================================================= =========== ========================================================================== Commit Committed Subject ================================================================================================= =========== ========================================================================== +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `9736143468 <https://github.com/apache/airflow/commit/9736143468cfe034e65afb3df3031ab3626f0f6d>`_ 2023-08-07 ``Add a new parameter to SQL operators to specify conn id field (#30784)`` ================================================================================================= =========== ==========================================================================
docs/apache-airflow-providers-databricks/index.rst+7 −7 modified@@ -77,7 +77,7 @@ Package apache-airflow-providers-databricks `Databricks <https://databricks.com/>`__ -Release: 4.3.3 +Release: 4.4.0 Provider package ---------------- @@ -97,15 +97,15 @@ Requirements The minimum Apache Airflow version supported by this provider package is ``2.4.0``. -======================================= =================== +======================================= ============================ PIP package Version required -======================================= =================== +======================================= ============================ ``apache-airflow`` ``>=2.4.0`` ``apache-airflow-providers-common-sql`` ``>=1.5.0`` ``requests`` ``>=2.27,<3`` -``databricks-sql-connector`` ``>=2.0.0, <3.0.0`` +``databricks-sql-connector`` ``>=2.0.0, <3.0.0, !=2.9.0`` ``aiohttp`` ``>=3.6.3, <4`` -======================================= =================== +======================================= ============================ Cross provider package dependencies ----------------------------------- @@ -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-databricks 4.3.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.3.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.3.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.3.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-databricks 4.3.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.3.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.3.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.3.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-databricks 4.4.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.4.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.4.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-databricks-4.4.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-databricks 4.4.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.4.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.4.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_databricks-4.4.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-datadog/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/datadog/CHANGELOG.rst
docs/apache-airflow-providers-datadog/commits.rst+18 −0 modified@@ -28,6 +28,23 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.2 +..... + +Latest change: 2023-08-21 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`d1aa509bbd <https://github.com/apache/airflow/commit/d1aa509bbd1941ceb3fe31789efeebbddd58d32f>`_ 2023-06-28 ``D205 Support - Providers: Databricks to Github (inclusive) (#32243)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ======================================================================= + 3.3.1 ..... @@ -36,6 +53,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` ================================================================================================= =========== =============================================================
docs/apache-airflow-providers-datadog/index.rst+1 −1 modified@@ -68,7 +68,7 @@ Package apache-airflow-providers-datadog `Datadog <https://www.datadoghq.com/>`__ -Release: 3.3.1 +Release: 3.3.2 Provider package ----------------
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 +3.2.3 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ========================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================= +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`a91ee7ac2f <https://github.com/apache/airflow/commit/a91ee7ac2fe29f460a4e4b0d8c1346f40672be43>`_ 2023-08-20 ``Refactor: Simplify code in smaller providers (#33234)`` +================================================================================================= =========== ========================================================= + 3.2.2 ..... -Latest change: 2023-07-05 +Latest change: 2023-07-06 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` `3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` `cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` `f8593503cb <https://github.com/apache/airflow/commit/f8593503cbe252c2f4dc5ff48a3f292c9e13baad>`_ 2023-07-05 ``Add default_deferrable config (#31712)``
docs/apache-airflow-providers-dbt-cloud/index.rst+3 −3 modified@@ -81,7 +81,7 @@ Package apache-airflow-providers-dbt-cloud `dbt Cloud <https://www.getdbt.com/product/what-is-dbt/>`__ -Release: 3.2.2 +Release: 3.2.3 Provider package ---------------- @@ -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-dbt-cloud 3.2.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-dbt-cloud 3.2.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-dbt-cloud 3.2.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-dbt-cloud-3.2.3.tar.gz.sha512>`__) +* `The apache-airflow-providers-dbt-cloud 3.2.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_dbt_cloud-3.2.3-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-docker/commits.rst+18 −4 modified@@ -28,16 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.7.4 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`2dbb963324 <https://github.com/apache/airflow/commit/2dbb9633240777d658031d32217255849150684b>`_ 2023-08-24 ``Refactor: Improve detection of duplicates and list sorting (#33675)`` +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`abef61ff3d <https://github.com/apache/airflow/commit/abef61ff3d6b9ae8dcb7f9dbbea78a9648a0c50b>`_ 2023-08-20 ``Replace repr() with proper formatting (#33520)`` +================================================================================================= =========== ======================================================================= + 3.7.3 ..... -Latest change: 2023-08-08 +Latest change: 2023-08-11 -================================================================================================= =========== ======================================================== +================================================================================================= =========== ============================================================ Commit Committed Subject -================================================================================================= =========== ======================================================== +================================================================================================= =========== ============================================================ +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `55424d41b4 <https://github.com/apache/airflow/commit/55424d41b446270539a6c5b00d0d376f951893b8>`_ 2023-08-08 ``Refactor: Simplify code in providers/docker (#33232)`` -================================================================================================= =========== ======================================================== +================================================================================================= =========== ============================================================ 3.7.2 .....
docs/apache-airflow-providers-docker/index.rst+1 −1 modified@@ -70,7 +70,7 @@ Package apache-airflow-providers-docker `Docker <https://docs.docker.com/install/>`__ -Release: 3.7.3 +Release: 3.7.4 Provider package ----------------
docs/apache-airflow-providers-elasticsearch/commits.rst+17 −1 modified@@ -28,14 +28,30 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.0.1 +..... + +Latest change: 2023-08-23 + +================================================================================================= =========== ============================================================= +Commit Committed Subject +================================================================================================= =========== ============================================================= +`94f70d8184 <https://github.com/apache/airflow/commit/94f70d818482de7defa03c0aff3c213ca6b83e9e>`_ 2023-08-23 ``Replace strftime with f-strings where nicer (#33455)`` +`7e79997594 <https://github.com/apache/airflow/commit/7e799975948573ca2a1c4b2051d3eadc32bb8ba7>`_ 2023-08-11 ``D205 Support - Providers - Final Pass (#33303)`` +`dd73a0bffa <https://github.com/apache/airflow/commit/dd73a0bffa6c4de93a2dd8dc4460b64aedc51255>`_ 2023-08-10 ``Fix urlparse schemaless-behaviour on Python 3.9+ (#33289)`` +`3c61ca40d7 <https://github.com/apache/airflow/commit/3c61ca40d7dfea4bb51d17704f9da88d7edd08c4>`_ 2023-08-10 ``Add backward compatibility for elasticsearch<8 (#33281)`` +`ad9d8d46b6 <https://github.com/apache/airflow/commit/ad9d8d46b6ee3a7d8e6665d2a6f5c6660063f281>`_ 2023-08-08 ``Upgrade Elasticsearch to 8 (#33135)`` +================================================================================================= =========== ============================================================= + 5.0.0 ..... -Latest change: 2023-07-15 +Latest change: 2023-07-17 ================================================================================================= =========== ================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================ +`4a44343731 <https://github.com/apache/airflow/commit/4a44343731144a7a7dc7fff7e3ed01663d4dd2e1>`_ 2023-07-17 ``Prepare RC3 for elasticsearch provider release (#32636)`` `acd51647a4 <https://github.com/apache/airflow/commit/acd51647a4f5a37c47af05d27e9783f95bcf3db3>`_ 2023-07-15 ``Fix unsound type hint in ElasticsearchTaskHandler.es_read (#32509)`` `41e611929e <https://github.com/apache/airflow/commit/41e611929eadcbbc746d956647967c82f40fae4a>`_ 2023-07-15 ``Fix Failing ES Remote Logging (#32438)`` `e01323635a <https://github.com/apache/airflow/commit/e01323635a88ecf313a415ea41d32d6d28fa0794>`_ 2023-07-13 ``Add deprecation info to the providers modules and classes docstring (#32536)``
docs/apache-airflow-providers-elasticsearch/index.rst+3 −3 modified@@ -79,7 +79,7 @@ Package apache-airflow-providers-elasticsearch `Elasticsearch <https://www.elastic.co/elasticsearch>`__ -Release: 5.0.0 +Release: 5.0.1 Provider package ---------------- @@ -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-elasticsearch 5.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-5.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-5.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-5.0.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-elasticsearch 5.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-5.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-5.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-5.0.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-elasticsearch 5.0.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-5.0.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-5.0.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-elasticsearch-5.0.1.tar.gz.sha512>`__) +* `The apache-airflow-providers-elasticsearch 5.0.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-5.0.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-5.0.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_elasticsearch-5.0.1-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-exasol/commits.rst+13 −1 modified@@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.2.4 +..... + +Latest change: 2023-08-18 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`ea8519c055 <https://github.com/apache/airflow/commit/ea8519c0554d16b13d330a686f8479fc10cc58f2>`_ 2023-08-18 ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +================================================================================================= =========== ========================================================================= + 4.2.3 ..... -Latest change: 2023-08-07 +Latest change: 2023-08-11 ================================================================================================= =========== ========================================================================== Commit Committed Subject ================================================================================================= =========== ========================================================================== +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `9736143468 <https://github.com/apache/airflow/commit/9736143468cfe034e65afb3df3031ab3626f0f6d>`_ 2023-08-07 ``Add a new parameter to SQL operators to specify conn id field (#30784)`` ================================================================================================= =========== ==========================================================================
docs/apache-airflow-providers-exasol/index.rst+3 −3 modified@@ -61,7 +61,7 @@ Package apache-airflow-providers-exasol `Exasol <https://docs.exasol.com/home.htm>`__ -Release: 4.2.3 +Release: 4.2.4 Provider package ---------------- @@ -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-exasol 4.2.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.3.tar.gz.sha512>`__) -* `The apache-airflow-providers-exasol 4.2.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.3-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-exasol 4.2.4 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-exasol-4.2.4.tar.gz.sha512>`__) +* `The apache-airflow-providers-exasol 4.2.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_exasol-4.2.4-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-ftp/commits.rst+14 −1 modified@@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.5.1 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ================================================== +Commit Committed Subject +================================================================================================= =========== ================================================== +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`7e79997594 <https://github.com/apache/airflow/commit/7e799975948573ca2a1c4b2051d3eadc32bb8ba7>`_ 2023-08-11 ``D205 Support - Providers - Final Pass (#33303)`` +================================================================================================= =========== ================================================== + 3.5.0 ..... -Latest change: 2023-07-30 +Latest change: 2023-08-05 ================================================================================================= =========== ================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================== +`60677b0ba3 <https://github.com/apache/airflow/commit/60677b0ba3c9e81595ec2aa3d4be2737e5b32054>`_ 2023-08-05 ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` `e1dd9b5cd2 <https://github.com/apache/airflow/commit/e1dd9b5cd2c5b19aec152f097709c7de02c42f34>`_ 2023-07-30 ``openlineage, ftp: add OpenLineage support for FTPFileTransferOperator (#31354)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` `3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)``
docs/apache-airflow-providers-ftp/index.rst+3 −3 modified@@ -84,7 +84,7 @@ Package apache-airflow-providers-ftp `File Transfer Protocol (FTP) <https://tools.ietf.org/html/rfc114>`__ -Release: 3.5.0 +Release: 3.5.1 Provider package ---------------- @@ -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-ftp 3.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-ftp-3.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-ftp-3.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-ftp-3.5.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-ftp 3.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.5.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-ftp 3.5.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-ftp-3.5.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-ftp-3.5.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-ftp-3.5.1.tar.gz.sha512>`__) +* `The apache-airflow-providers-ftp 3.5.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.5.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.5.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_ftp-3.5.1-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-github/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/github/CHANGELOG.rst
docs/apache-airflow-providers-github/commits.rst+18 −0 modified@@ -28,6 +28,23 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.3.2 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`d1aa509bbd <https://github.com/apache/airflow/commit/d1aa509bbd1941ceb3fe31789efeebbddd58d32f>`_ 2023-06-28 ``D205 Support - Providers: Databricks to Github (inclusive) (#32243)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ======================================================================= + 2.3.1 ..... @@ -36,6 +53,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_ 2023-06-05 ``Improve docstrings in providers (#31681)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)``
docs/apache-airflow-providers-github/index.rst+1 −1 modified@@ -84,7 +84,7 @@ Package apache-airflow-providers-github `GitHub <https://www.github.com/>`__ -Release: 2.3.1 +Release: 2.3.2 Provider package ----------------
docs/apache-airflow-providers-google/commits.rst+35 −0 modified@@ -35,6 +35,40 @@ For high-level changelog, see :doc:`package information including changelog <ind +10.7.0 +...... + +Latest change: 2023-08-25 + +================================================================================================= =========== ========================================================================================== +Commit Committed Subject +================================================================================================= =========== ========================================================================================== +`ba0bab0114 <https://github.com/apache/airflow/commit/ba0bab0114a430ef0ac776980f7e29b34d48b726>`_ 2023-08-25 ``Refactor: Use random.choices (#33631)`` +`66d0222947 <https://github.com/apache/airflow/commit/66d0222947bf6ec779064d25c16391e22c1a9368>`_ 2023-08-25 ``Add CloudRunHook and operators (#33067)`` +`96efcfb830 <https://github.com/apache/airflow/commit/96efcfb8301ed938ce62d46a12b429b724e7cf0f>`_ 2023-08-24 ``Further improvements for provider verification (#33670)`` +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`1953648fda <https://github.com/apache/airflow/commit/1953648fda6b984d27ddcbe151d7286550571f32>`_ 2023-08-24 ``Refactor: lists and paths in dev (#33626)`` +`4154cc04ce <https://github.com/apache/airflow/commit/4154cc04ce9702b09e6f13d423686fdf4cb7b877>`_ 2023-08-24 ``Do not create lists we don't need (#33519)`` +`94f70d8184 <https://github.com/apache/airflow/commit/94f70d818482de7defa03c0aff3c213ca6b83e9e>`_ 2023-08-23 ``Replace strftime with f-strings where nicer (#33455)`` +`92474db6a5 <https://github.com/apache/airflow/commit/92474db6a5321a0c0cd0dc21695f95d51c3aad16>`_ 2023-08-23 ``Refactor: Better percentage formatting (#33595)`` +`a54c2424df <https://github.com/apache/airflow/commit/a54c2424df51bf1acec420f4792a237dabcfa12b>`_ 2023-08-23 ``Fix typos (double words and it's/its) (#33623)`` +`08fa814533 <https://github.com/apache/airflow/commit/08fa81453377003aafbdd19563d846fa71155e0d>`_ 2023-08-21 ``Add missing template fields to DataformCreateCompilationResultOperator (#33585)`` +`c8de9a5f68 <https://github.com/apache/airflow/commit/c8de9a5f686f55a27705a69d69fbc64840df03ce>`_ 2023-08-21 ``Adding Support for Google Cloud's Data Pipelines Run Operator (#32846)`` +`46fa5a2743 <https://github.com/apache/airflow/commit/46fa5a2743c0c864f5282abd6055c5418585955b>`_ 2023-08-21 ``Fix BigQueryCreateExternalTableOperator when using a foramt different to CSV (#33540)`` +`3157002eeb <https://github.com/apache/airflow/commit/3157002eeb8d5e2acf62a32ffe7a3647adc23105>`_ 2023-08-19 ``Fix DataplexDataQualityJobStatusSensor and add unit tests (#33440)`` +`533afb5128 <https://github.com/apache/airflow/commit/533afb5128383958889bc653226f46947c642351>`_ 2023-08-19 ``Add parameter sftp_prefetch to SFTPToGCSOperator (#33274)`` +`c6a014a370 <https://github.com/apache/airflow/commit/c6a014a3707d2e4a5a9d2fe0b4277be09266b63b>`_ 2023-08-18 ``Add 'CloudBatchHook' and operators (#32606)`` +`ea8519c055 <https://github.com/apache/airflow/commit/ea8519c0554d16b13d330a686f8479fc10cc58f2>`_ 2023-08-18 ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +`8e88eb8fa7 <https://github.com/apache/airflow/commit/8e88eb8fa7e1fc12918dcbfcfc8ed28381008d33>`_ 2023-08-17 ``Consolidate import and usage of pandas (#33480)`` +`bfe08a79db <https://github.com/apache/airflow/commit/bfe08a79db8130c499883f014121be570ec071bd>`_ 2023-08-16 ``Import utc from datetime and normalize its import (#33450)`` +`843a3b8c3e <https://github.com/apache/airflow/commit/843a3b8c3ecca9582a269cf780144738c9c45d15>`_ 2023-08-16 ``Fix system test example_cloud_storage_transfer_service_aws (#33429)`` +`a1e42f6626 <https://github.com/apache/airflow/commit/a1e42f66260447c22c708e49943e3a39ba2b678f>`_ 2023-08-14 ``Enable D205 Support (#33398)`` +`b4102ce0b5 <https://github.com/apache/airflow/commit/b4102ce0b55e76baadf3efdec0df54762001f38c>`_ 2023-08-14 ``Update Error details for Generic Error Code (#32847)`` +`a2a0d05345 <https://github.com/apache/airflow/commit/a2a0d053456d6e09efe7b8ac62837768f64e3c0b>`_ 2023-08-14 ``Add Source Code and Testing for Google Cloud's Data Pipelines Create Operator (#32843)`` +`dfb2403ec4 <https://github.com/apache/airflow/commit/dfb2403ec4b6d147ac31125631677cee9e12347e>`_ 2023-08-14 ``Add Dataplex Data Quality operators. (#32256)`` +`7e79997594 <https://github.com/apache/airflow/commit/7e799975948573ca2a1c4b2051d3eadc32bb8ba7>`_ 2023-08-11 ``D205 Support - Providers - Final Pass (#33303)`` +================================================================================================= =========== ========================================================================================== + 10.6.0 ...... @@ -43,6 +77,7 @@ Latest change: 2023-08-09 ================================================================================================= =========== ================================================================================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================================================================================ +`f82acc1579 <https://github.com/apache/airflow/commit/f82acc1579ed8e56c32cd7c42bab10f8db5cc024>`_ 2023-08-09 ``Prepare docs for RC3 providers (google) (#33253)`` `e1af008711 <https://github.com/apache/airflow/commit/e1af008711039f7f53b2a21cad70a08b514cd8f6>`_ 2023-08-09 ``make 'sql' a cached property in 'BigQueryInsertJobOperator' (#33218)`` `e43206eb2e <https://github.com/apache/airflow/commit/e43206eb2e055a78814fcff7e8c35c6fd9c11e85>`_ 2023-08-08 ``refactor(providers.google): use module level __getattr__ for DATAPROC_JOB_LOG_LINK to DATAPROC_JOB_LINK and add deprecation warning (#33189)`` `8f27d3ff47 <https://github.com/apache/airflow/commit/8f27d3ff472e6ddd52c08a948d51901adb8a1f1a>`_ 2023-08-08 ``Prepare docs for RC2 providers (google, redis) (#33185)``
docs/apache-airflow-providers-google/index.rst+5 −3 modified@@ -87,7 +87,7 @@ Google services including: - `Google Workspace <https://workspace.google.com/>`__ (formerly Google Suite) -Release: 10.6.0 +Release: 10.7.0 Provider package ---------------- @@ -155,6 +155,8 @@ PIP package Version required ``google-cloud-videointelligence`` ``>=2.11.0`` ``google-cloud-vision`` ``>=3.4.0`` ``google-cloud-workflows`` ``>=1.10.0`` +``google-cloud-run`` ``>=0.9.0`` +``google-cloud-batch`` ``>=0.13.0`` ``grpcio-gcp`` ``>=0.2.2`` ``httpx`` ``json-merge-patch`` ``>=0.2`` @@ -208,5 +210,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 10.6.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.6.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-google 10.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.6.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-google 10.7.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.7.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.7.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-google-10.7.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-google 10.7.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.7.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.7.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_google-10.7.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-grpc/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/grpc/CHANGELOG.rst
docs/apache-airflow-providers-grpc/commits.rst+18 −0 modified@@ -28,6 +28,23 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.2 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================ +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`abef61ff3d <https://github.com/apache/airflow/commit/abef61ff3d6b9ae8dcb7f9dbbea78a9648a0c50b>`_ 2023-08-20 ``Replace repr() with proper formatting (#33520)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ================================================================ + 3.2.1 ..... @@ -36,6 +53,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` ================================================================================================= =========== =============================================================
docs/apache-airflow-providers-grpc/index.rst+1 −1 modified@@ -68,7 +68,7 @@ Package apache-airflow-providers-grpc `gRPC <https://grpc.io/>`__ -Release: 3.2.1 +Release: 3.2.2 Provider package ----------------
docs/apache-airflow-providers-http/commits.rst+13 −1 modified@@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.5.1 +..... + +Latest change: 2023-08-20 + +================================================================================================= =========== ========================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================= +`a91ee7ac2f <https://github.com/apache/airflow/commit/a91ee7ac2fe29f460a4e4b0d8c1346f40672be43>`_ 2023-08-20 ``Refactor: Simplify code in smaller providers (#33234)`` +================================================================================================= =========== ========================================================= + 4.5.0 ..... -Latest change: 2023-07-09 +Latest change: 2023-07-12 ================================================================================================= =========== ================================================================= Commit Committed Subject ================================================================================================= =========== ================================================================= +`e7f59a913e <https://github.com/apache/airflow/commit/e7f59a913e1fcf9052e69f62af9fe23901f1a358>`_ 2023-07-12 ``Prepare docs for July 2023 2nd wave of Providers (#32566)`` `17e9434dee <https://github.com/apache/airflow/commit/17e9434dee7de5848058a64f30b832fc8f3c0400>`_ 2023-07-09 ``Add deferrable mode to SimpleHttpOperator (#32448)`` `358e6e8fa1 <https://github.com/apache/airflow/commit/358e6e8fa18166084fc17b23e75c6c29a37f245f>`_ 2023-07-06 ``Fix headers passed into HttpAsyncHook (#32409)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
docs/apache-airflow-providers-http/index.rst+1 −1 modified@@ -77,7 +77,7 @@ Package apache-airflow-providers-http `Hypertext Transfer Protocol (HTTP) <https://www.w3.org/Protocols/>`__ -Release: 4.5.0 +Release: 4.5.1 Provider package ----------------
docs/apache-airflow-providers-imap/commits.rst+13 −1 modified@@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.3.1 +..... + +Latest change: 2023-08-21 + +================================================================================================= =========== ============================================================ +Commit Committed Subject +================================================================================================= =========== ============================================================ +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +================================================================================================= =========== ============================================================ + 3.3.0 ..... -Latest change: 2023-08-04 +Latest change: 2023-08-05 ================================================================================================= =========== ===================================================================================== Commit Committed Subject ================================================================================================= =========== ===================================================================================== +`60677b0ba3 <https://github.com/apache/airflow/commit/60677b0ba3c9e81595ec2aa3d4be2737e5b32054>`_ 2023-08-05 ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` `cf7e0c5aa5 <https://github.com/apache/airflow/commit/cf7e0c5aa5ccc7b8a3963b14eadde0c8bc7c4eb7>`_ 2023-08-04 ``Add possibility to use 'ssl_context' extra for SMTP and IMAP connections (#33112)`` `52ca7bfc98 <https://github.com/apache/airflow/commit/52ca7bfc988f4c9b608f544bc3e9524fd6564639>`_ 2023-08-04 ``Allows to choose SSL context for IMAP provider (#33108)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
docs/apache-airflow-providers-imap/index.rst+1 −1 modified@@ -63,7 +63,7 @@ Package apache-airflow-providers-imap `Internet Message Access Protocol (IMAP) <https://tools.ietf.org/html/rfc3501>`__ -Release: 3.3.0 +Release: 3.3.1 Provider package ----------------
docs/apache-airflow-providers-influxdb/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/influxdb/CHANGELOG.rst
docs/apache-airflow-providers-influxdb/commits.rst+17 −0 modified@@ -28,6 +28,22 @@ For high-level changelog, see :doc:`package information including changelog <ind +2.2.2 +..... + +Latest change: 2023-08-18 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`ea8519c055 <https://github.com/apache/airflow/commit/ea8519c0554d16b13d330a686f8479fc10cc58f2>`_ 2023-08-18 ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ========================================================================= + 2.2.1 ..... @@ -36,6 +52,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== =============================================================== Commit Committed Subject ================================================================================================= =========== =============================================================== +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `9e268e13b1 <https://github.com/apache/airflow/commit/9e268e13b147401a5665e497aee87ac107ade8d1>`_ 2023-06-07 ``Replace spelling directive with spelling:word-list (#31752)`` `9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_ 2023-06-05 ``Improve docstrings in providers (#31681)``
docs/apache-airflow-providers-influxdb/index.rst+1 −1 modified@@ -84,7 +84,7 @@ Package apache-airflow-providers-influxdb `InfluxDB <https://www.influxdata.com/>`__ -Release: 2.2.1 +Release: 2.2.2 Provider package ----------------
docs/apache-airflow-providers-microsoft-azure/commits.rst+24 −1 modified@@ -28,14 +28,37 @@ For high-level changelog, see :doc:`package information including changelog <ind +6.3.0 +..... + +Latest change: 2023-08-25 + +================================================================================================= =========== ======================================================================================================== +Commit Committed Subject +================================================================================================= =========== ======================================================================================================== +`38f2737153 <https://github.com/apache/airflow/commit/38f27371532b9f906bdeff0251d1c35956daf05c>`_ 2023-08-25 ``Fix Azure Batch Hook instantation (#33731)`` +`0931abdb25 <https://github.com/apache/airflow/commit/0931abdb2563f1f46240c3b1ce82415e05bd48d4>`_ 2023-08-25 ``Add AzureBatchOperator example (#33716)`` +`faa50cbe2f <https://github.com/apache/airflow/commit/faa50cbe2f6dbf816e599bbbb933ac4976a55778>`_ 2023-08-24 ``feat(providers/microsoft): add DefaultAzureCredential support to AzureContainerInstanceHook (#33467)`` +`96efcfb830 <https://github.com/apache/airflow/commit/96efcfb8301ed938ce62d46a12b429b724e7cf0f>`_ 2023-08-24 ``Further improvements for provider verification (#33670)`` +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`9dac4878c7 <https://github.com/apache/airflow/commit/9dac4878c70f4178b89c2f7667b0d8ca0ca7dff7>`_ 2023-08-24 ``Add DefaultAzureCredential auth for ADX service (#33627)`` +`4a7cd606cc <https://github.com/apache/airflow/commit/4a7cd606ccd0de041781437813507448240798a5>`_ 2023-08-23 ``Bump azure-kusto-data>=4.1.0 (#33598)`` +`a54c2424df <https://github.com/apache/airflow/commit/a54c2424df51bf1acec420f4792a237dabcfa12b>`_ 2023-08-23 ``Fix typos (double words and it's/its) (#33623)`` +`b43fcae14b <https://github.com/apache/airflow/commit/b43fcae14bc592017850d172f17a6782082321e8>`_ 2023-08-21 ``Simplify conditions on len() in providers/microsoft (#33566)`` +`7700fb12cc <https://github.com/apache/airflow/commit/7700fb12cc6c7a97901662e6ac6aa1e4e932d969>`_ 2023-08-20 ``Simplify 'X for X in Y' to 'Y' where applicable (#33453)`` +`bd608a56ab <https://github.com/apache/airflow/commit/bd608a56abd1a6c2a98987daf7f092d2dabea555>`_ 2023-08-17 ``Fix updating account url for WasbHook (#33457)`` +`4460356c03 <https://github.com/apache/airflow/commit/4460356c03e5c1dedd72ce87a8ccfb9b19a33d76>`_ 2023-08-14 ``Set logging level to WARNING (#33314)`` +================================================================================================= =========== ======================================================================================================== + 6.2.4 ..... -Latest change: 2023-08-07 +Latest change: 2023-08-11 ================================================================================================= =========== ================================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================================ +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `8da1ff573b <https://github.com/apache/airflow/commit/8da1ff573bf598225f79899636efa0f9c55c4881>`_ 2023-08-07 ``Clean microsoft azure provider by deleting the custom prefix from conn extra fields (#30558)`` ================================================================================================= =========== ================================================================================================
docs/apache-airflow-providers-microsoft-azure/index.rst+4 −4 modified@@ -81,7 +81,7 @@ Package apache-airflow-providers-microsoft-azure `Microsoft Azure <https://azure.microsoft.com/>`__ -Release: 6.2.4 +Release: 6.3.0 Provider package ---------------- @@ -119,9 +119,9 @@ PIP package Version required ``azure-synapse-spark`` ``adal`` ``>=1.2.7`` ``azure-storage-file-datalake`` ``>=12.9.1`` +``azure-kusto-data`` ``>=4.1.0`` ``azure-mgmt-containerinstance`` ``>=1.5.0,<2.0`` ``azure-mgmt-datafactory`` ``>=1.0.0,<2.0`` -``azure-kusto-data`` ``>=0.0.43,<0.1`` ================================ ================== Cross provider package dependencies @@ -151,5 +151,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-microsoft-azure 6.2.4 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.2.4.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.2.4.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.2.4.tar.gz.sha512>`__) -* `The apache-airflow-providers-microsoft-azure 6.2.4 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.2.4-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.2.4-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.2.4-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-microsoft-azure 6.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-microsoft-azure-6.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-microsoft-azure 6.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_microsoft_azure-6.3.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-microsoft-winrm/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/microsoft/winrm/CHANGELOG.rst
docs/apache-airflow-providers-microsoft-winrm/commits.rst+17 −0 modified@@ -28,6 +28,22 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.2 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================ +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ================================================================ + 3.2.1 ..... @@ -36,6 +52,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` ================================================================================================= =========== =============================================================
docs/apache-airflow-providers-microsoft-winrm/index.rst+1 −1 modified@@ -76,7 +76,7 @@ Package apache-airflow-providers-microsoft-winrm `Windows Remote Management (WinRM) <https://docs.microsoft.com/en-us/windows/win32/winrm/portal>`__ -Release: 3.2.1 +Release: 3.2.2 Provider package ----------------
docs/apache-airflow-providers-mysql/commits.rst+14 −1 modified@@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.3.0 +..... + +Latest change: 2023-08-18 + +================================================================================================= =========== ================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================ +`dce9796861 <https://github.com/apache/airflow/commit/dce9796861e0a535952f79b0e2a7d5a012fcc01b>`_ 2023-08-18 ``Add init_command parameter to MySqlHook (#33359)`` +`744aa609c8 <https://github.com/apache/airflow/commit/744aa609c82e6cd4230a12a80424c9b7fec17779>`_ 2023-08-17 ``Add 'local_infile' parameter to 'S3ToMySqlOperator' (#33459)`` +================================================================================================= =========== ================================================================ + 5.2.1 ..... -Latest change: 2023-08-04 +Latest change: 2023-08-05 ================================================================================================= =========== ===================================================================== Commit Committed Subject ================================================================================================= =========== ===================================================================== +`60677b0ba3 <https://github.com/apache/airflow/commit/60677b0ba3c9e81595ec2aa3d4be2737e5b32054>`_ 2023-08-05 ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` `108a07b580 <https://github.com/apache/airflow/commit/108a07b580ca185b5982f2e60deb70f73a1f745a>`_ 2023-08-04 ``Bring back mysql-connector-python as required depednency (#32989)`` ================================================================================================= =========== =====================================================================
docs/apache-airflow-providers-mysql/index.rst+3 −3 modified@@ -77,7 +77,7 @@ Package apache-airflow-providers-mysql `MySQL <https://www.mysql.com/products/>`__ -Release: 5.2.1 +Release: 5.3.0 Provider package ---------------- @@ -136,5 +136,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-mysql 5.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-mysql 5.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-mysql 5.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-mysql-5.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-mysql 5.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_mysql-5.3.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-openlineage/commits.rst+18 −1 modified@@ -28,14 +28,31 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.0.2 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== =================================================================================== +Commit Committed Subject +================================================================================================= =========== =================================================================================== +`626d3daa9b <https://github.com/apache/airflow/commit/626d3daa9b5348fec6dfb4d29edcff97bba20298>`_ 2023-08-24 ``Add OpenLineage support for Trino. (#32910)`` +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`abef61ff3d <https://github.com/apache/airflow/commit/abef61ff3d6b9ae8dcb7f9dbbea78a9648a0c50b>`_ 2023-08-20 ``Replace repr() with proper formatting (#33520)`` +`6d3b71c333 <https://github.com/apache/airflow/commit/6d3b71c33390c8063502acfe0fc2cd936db74814>`_ 2023-08-19 ``openlineage: don't run task instance listener in executor (#33366)`` +`8e738cd0ad <https://github.com/apache/airflow/commit/8e738cd0ad0e7dce644f66bb749a7b46770badee>`_ 2023-08-15 ``openlineage: do not try to redact Proxy objects from deprecated config (#33393)`` +`23d5076635 <https://github.com/apache/airflow/commit/23d507663541ab49f02d7863d42f9baf458cc48f>`_ 2023-08-13 ``openlineage: defensively check for provided datetimes in listener (#33343)`` +================================================================================================= =========== =================================================================================== + 1.0.1 ..... -Latest change: 2023-08-04 +Latest change: 2023-08-05 ================================================================================================= =========== =================================================================================================== Commit Committed Subject ================================================================================================= =========== =================================================================================================== +`60677b0ba3 <https://github.com/apache/airflow/commit/60677b0ba3c9e81595ec2aa3d4be2737e5b32054>`_ 2023-08-05 ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` `bdc10a5ff6 <https://github.com/apache/airflow/commit/bdc10a5ff6fea0fd968345fd4a9b732be49b9761>`_ 2023-08-04 ``Move openlineage configuration to provider (#33124)`` `11ff650e1b <https://github.com/apache/airflow/commit/11ff650e1b122aadebcea462adfae5492a76ed94>`_ 2023-08-04 ``openlineage: disable running listener if not configured (#33120)`` `e10aa6ae6a <https://github.com/apache/airflow/commit/e10aa6ae6ad07830cbf5ec59d977654c52012c22>`_ 2023-08-04 ``openlineage, bigquery: add openlineage method support for BigQueryExecuteQueryOperator (#31293)``
docs/apache-airflow-providers-openlineage/index.rst+3 −3 modified@@ -90,7 +90,7 @@ Package apache-airflow-providers-openlineage `OpenLineage <https://openlineage.io/>`__ -Release: 1.0.1 +Release: 1.0.2 Provider package ---------------- @@ -145,5 +145,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-openlineage 1.0.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-openlineage-1.0.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-openlineage-1.0.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-openlineage-1.0.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-openlineage 1.0.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_openlineage-1.0.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_openlineage-1.0.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_openlineage-1.0.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-openlineage 1.0.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-openlineage-1.0.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-openlineage-1.0.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-openlineage-1.0.2.tar.gz.sha512>`__) +* `The apache-airflow-providers-openlineage 1.0.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_openlineage-1.0.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_openlineage-1.0.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_openlineage-1.0.2-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-oracle/commits.rst+16 −1 modified@@ -28,14 +28,29 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.7.3 +..... + +Latest change: 2023-08-23 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`94f70d8184 <https://github.com/apache/airflow/commit/94f70d818482de7defa03c0aff3c213ca6b83e9e>`_ 2023-08-23 ``Replace strftime with f-strings where nicer (#33455)`` +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`a91ee7ac2f <https://github.com/apache/airflow/commit/a91ee7ac2fe29f460a4e4b0d8c1346f40672be43>`_ 2023-08-20 ``Refactor: Simplify code in smaller providers (#33234)`` +`ea8519c055 <https://github.com/apache/airflow/commit/ea8519c0554d16b13d330a686f8479fc10cc58f2>`_ 2023-08-18 ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +================================================================================================= =========== ========================================================================= + 3.7.2 ..... -Latest change: 2023-07-13 +Latest change: 2023-07-29 ================================================================================================= =========== ================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================ +`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`_ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)`` `e01323635a <https://github.com/apache/airflow/commit/e01323635a88ecf313a415ea41d32d6d28fa0794>`_ 2023-07-13 ``Add deprecation info to the providers modules and classes docstring (#32536)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` `3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)``
docs/apache-airflow-providers-oracle/index.rst+3 −3 modified@@ -70,7 +70,7 @@ Package apache-airflow-providers-oracle `Oracle <https://www.oracle.com/en/database/>`__ -Release: 3.7.2 +Release: 3.7.3 Provider package ---------------- @@ -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-oracle 3.7.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-oracle 3.7.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-oracle 3.7.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-oracle-3.7.3.tar.gz.sha512>`__) +* `The apache-airflow-providers-oracle 3.7.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_oracle-3.7.3-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-plexus/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/plexus/CHANGELOG.rst
docs/apache-airflow-providers-plexus/commits.rst+18 −0 modified@@ -28,6 +28,23 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.2 +..... + +Latest change: 2023-08-21 + +================================================================================================= =========== ==================================================================== +Commit Committed Subject +================================================================================================= =========== ==================================================================== +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`e45bee8840 <https://github.com/apache/airflow/commit/e45bee884068399e7265421511e17fed106ce5b4>`_ 2023-07-05 ``D205 Support - Providers: Pagerduty to SMTP (inclusive) (#32358)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ==================================================================== + 3.2.1 ..... @@ -36,6 +53,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` ================================================================================================= =========== =============================================================
docs/apache-airflow-providers-plexus/index.rst+1 −1 modified@@ -69,7 +69,7 @@ Package apache-airflow-providers-plexus `Plexus <https://plexus.corescientific.com/>`__ -Release: 3.2.1 +Release: 3.2.2 Provider package ----------------
docs/apache-airflow-providers-presto/commits.rst+13 −1 modified@@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.1.3 +..... + +Latest change: 2023-08-17 + +================================================================================================= =========== =================================================== +Commit Committed Subject +================================================================================================= =========== =================================================== +`8e88eb8fa7 <https://github.com/apache/airflow/commit/8e88eb8fa7e1fc12918dcbfcfc8ed28381008d33>`_ 2023-08-17 ``Consolidate import and usage of pandas (#33480)`` +================================================================================================= =========== =================================================== + 5.1.2 ..... -Latest change: 2023-07-19 +Latest change: 2023-07-29 ================================================================================================= =========== ==================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================== +`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`_ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)`` `60c49ab2df <https://github.com/apache/airflow/commit/60c49ab2dfabaf450b80a5c7569743dd383500a6>`_ 2023-07-19 ``Add more accurate typing for DbApiHook.run method (#31846)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` `e45bee8840 <https://github.com/apache/airflow/commit/e45bee884068399e7265421511e17fed106ce5b4>`_ 2023-07-05 ``D205 Support - Providers: Pagerduty to SMTP (inclusive) (#32358)``
docs/apache-airflow-providers-presto/index.rst+3 −3 modified@@ -76,7 +76,7 @@ Package apache-airflow-providers-presto `Presto <https://prestodb.github.io/>`__ -Release: 5.1.2 +Release: 5.1.3 Provider package ---------------- @@ -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-presto 5.1.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-presto 5.1.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-presto 5.1.3 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.3.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.3.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-presto-5.1.3.tar.gz.sha512>`__) +* `The apache-airflow-providers-presto 5.1.3 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.3-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.3-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_presto-5.1.3-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-salesforce/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/salesforce/CHANGELOG.rst
docs/apache-airflow-providers-salesforce/commits.rst+18 −0 modified@@ -28,6 +28,23 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.4.2 +..... + +Latest change: 2023-08-18 + +================================================================================================= =========== ========================================================================= +Commit Committed Subject +================================================================================================= =========== ========================================================================= +`ea8519c055 <https://github.com/apache/airflow/commit/ea8519c0554d16b13d330a686f8479fc10cc58f2>`_ 2023-08-18 ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`e45bee8840 <https://github.com/apache/airflow/commit/e45bee884068399e7265421511e17fed106ce5b4>`_ 2023-07-05 ``D205 Support - Providers: Pagerduty to SMTP (inclusive) (#32358)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ========================================================================= + 5.4.1 ..... @@ -36,6 +53,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` `9fa75aaf7a <https://github.com/apache/airflow/commit/9fa75aaf7a391ebf0e6b6949445c060f6de2ceb9>`_ 2023-05-29 ``Remove Python 3.7 support (#30963)``
docs/apache-airflow-providers-salesforce/index.rst+1 −1 modified@@ -77,7 +77,7 @@ Package apache-airflow-providers-salesforce `Salesforce <https://www.salesforce.com/>`__ -Release: 5.4.1 +Release: 5.4.2 Provider package ----------------
docs/apache-airflow-providers-sendgrid/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/sendgrid/CHANGELOG.rst
docs/apache-airflow-providers-sendgrid/commits.rst+17 −0 modified@@ -28,6 +28,22 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.2 +..... + +Latest change: 2023-08-20 + +================================================================================================= =========== ================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================ +`a91ee7ac2f <https://github.com/apache/airflow/commit/a91ee7ac2fe29f460a4e4b0d8c1346f40672be43>`_ 2023-08-20 ``Refactor: Simplify code in smaller providers (#33234)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ================================================================ + 3.2.1 ..... @@ -36,6 +52,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` ================================================================================================= =========== =============================================================
docs/apache-airflow-providers-sendgrid/index.rst+1 −1 modified@@ -61,7 +61,7 @@ Package apache-airflow-providers-sendgrid `Sendgrid <https://sendgrid.com/>`__ -Release: 3.2.1 +Release: 3.2.2 Provider package ----------------
docs/apache-airflow-providers-sftp/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +4.6.0 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ============================================================= +Commit Committed Subject +================================================================================================= =========== ============================================================= +`85acbb4ae9 <https://github.com/apache/airflow/commit/85acbb4ae9bc26248ca624fa4d289feccba00836>`_ 2023-08-24 ``Refactor: Remove useless str() calls (#33629)`` +`533afb5128 <https://github.com/apache/airflow/commit/533afb5128383958889bc653226f46947c642351>`_ 2023-08-19 ``Add parameter sftp_prefetch to SFTPToGCSOperator (#33274)`` +`7e79997594 <https://github.com/apache/airflow/commit/7e799975948573ca2a1c4b2051d3eadc32bb8ba7>`_ 2023-08-11 ``D205 Support - Providers - Final Pass (#33303)`` +================================================================================================= =========== ============================================================= + 4.5.0 ..... -Latest change: 2023-07-25 +Latest change: 2023-07-29 ================================================================================================= =========== ========================================================================= Commit Committed Subject ================================================================================================= =========== ========================================================================= +`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`_ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)`` `6b880844ad <https://github.com/apache/airflow/commit/6b880844ade6036954d5343f6a74a241b3865153>`_ 2023-07-25 ``openlineage, sftp: add OpenLineage support for sftp provider (#31360)`` ================================================================================================= =========== =========================================================================
docs/apache-airflow-providers-sftp/index.rst+4 −3 modified@@ -69,7 +69,7 @@ Package apache-airflow-providers-sftp `SSH File Transfer Protocol (SFTP) <https://tools.ietf.org/wg/secsh/draft-ietf-secsh-filexfer/>`__ -Release: 4.5.0 +Release: 4.6.0 Provider package ---------------- @@ -94,6 +94,7 @@ PIP package Version required ================================ ================== ``apache-airflow`` ``>=2.4.0`` ``apache-airflow-providers-ssh`` ``>=2.1.0`` +``paramiko`` ``>=2.8.0`` ================================ ================== Cross provider package dependencies @@ -122,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-sftp 4.5.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.5.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.5.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.5.0.tar.gz.sha512>`__) -* `The apache-airflow-providers-sftp 4.5.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.5.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.5.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.5.0-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-sftp 4.6.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.6.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.6.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-sftp-4.6.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-sftp 4.6.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.6.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.6.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_sftp-4.6.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-singularity/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/singularity/CHANGELOG.rst
docs/apache-airflow-providers-singularity/commits.rst+17 −0 modified@@ -28,6 +28,22 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.2.2 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ======================================================================= +Commit Committed Subject +================================================================================================= =========== ======================================================================= +`2dbb963324 <https://github.com/apache/airflow/commit/2dbb9633240777d658031d32217255849150684b>`_ 2023-08-24 ``Refactor: Improve detection of duplicates and list sorting (#33675)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ======================================================================= + 3.2.1 ..... @@ -36,6 +52,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` ================================================================================================= =========== =============================================================
docs/apache-airflow-providers-singularity/index.rst+1 −1 modified@@ -69,7 +69,7 @@ Package apache-airflow-providers-singularity `Singularity <https://sylabs.io/guides/latest/user-guide/>`__ -Release: 3.2.1 +Release: 3.2.2 Provider package ----------------
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 +8.0.0 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== ================================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================================ +`ed6a4fd116 <https://github.com/apache/airflow/commit/ed6a4fd1162407a2007d949765eab5749af1c3ac>`_ 2023-08-24 ``Remove deprecated parts from Slack provider (#33557)`` +`0a7eae3fcb <https://github.com/apache/airflow/commit/0a7eae3fcbda0b2c4d2fb383e6b07157c2adc937>`_ 2023-08-23 ``Replace deprecated slack notification in provider.yaml with new one (#33643)`` +`ea8519c055 <https://github.com/apache/airflow/commit/ea8519c0554d16b13d330a686f8479fc10cc58f2>`_ 2023-08-18 ``Avoid importing pandas and numpy in runtime and module level (#33483)`` +`8e88eb8fa7 <https://github.com/apache/airflow/commit/8e88eb8fa7e1fc12918dcbfcfc8ed28381008d33>`_ 2023-08-17 ``Consolidate import and usage of pandas (#33480)`` +================================================================================================= =========== ================================================================================ + 7.3.2 ..... -Latest change: 2023-07-19 +Latest change: 2023-07-29 ================================================================================================= =========== ==================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================== +`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`_ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)`` `60c49ab2df <https://github.com/apache/airflow/commit/60c49ab2dfabaf450b80a5c7569743dd383500a6>`_ 2023-07-19 ``Add more accurate typing for DbApiHook.run method (#31846)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` `e45bee8840 <https://github.com/apache/airflow/commit/e45bee884068399e7265421511e17fed106ce5b4>`_ 2023-07-05 ``D205 Support - Providers: Pagerduty to SMTP (inclusive) (#32358)``
docs/apache-airflow-providers-slack/index.rst+3 −3 modified@@ -78,7 +78,7 @@ Package apache-airflow-providers-slack `Slack <https://slack.com/>`__ -Release: 7.3.2 +Release: 8.0.0 Provider package ---------------- @@ -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-slack 7.3.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-7.3.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-slack 7.3.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-7.3.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-slack 8.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-8.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-8.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-slack-8.0.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-slack 8.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-8.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-8.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_slack-8.0.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-smtp/commits.rst+13 −1 modified@@ -28,14 +28,26 @@ For high-level changelog, see :doc:`package information including changelog <ind +1.3.1 +..... + +Latest change: 2023-08-20 + +================================================================================================= =========== ============================================================ +Commit Committed Subject +================================================================================================= =========== ============================================================ +`7700fb12cc <https://github.com/apache/airflow/commit/7700fb12cc6c7a97901662e6ac6aa1e4e932d969>`_ 2023-08-20 ``Simplify 'X for X in Y' to 'Y' where applicable (#33453)`` +================================================================================================= =========== ============================================================ + 1.3.0 ..... -Latest change: 2023-08-04 +Latest change: 2023-08-05 ================================================================================================= =========== ===================================================================================== Commit Committed Subject ================================================================================================= =========== ===================================================================================== +`60677b0ba3 <https://github.com/apache/airflow/commit/60677b0ba3c9e81595ec2aa3d4be2737e5b32054>`_ 2023-08-05 ``Prepare docs for Aug 2023 1st wave of Providers (#33128)`` `cf7e0c5aa5 <https://github.com/apache/airflow/commit/cf7e0c5aa5ccc7b8a3963b14eadde0c8bc7c4eb7>`_ 2023-08-04 ``Add possibility to use 'ssl_context' extra for SMTP and IMAP connections (#33112)`` `e20325db38 <https://github.com/apache/airflow/commit/e20325db38fdfdd9db423a345b13d18aab6fe578>`_ 2023-08-04 ``Allows to choose SSL context for SMTP provider (#33075)`` `225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)``
docs/apache-airflow-providers-smtp/index.rst+1 −1 modified@@ -64,7 +64,7 @@ Package apache-airflow-providers-smtp `Simple Mail Transfer Protocol (SMTP) <https://tools.ietf.org/html/rfc5321>`__ -Release: 1.3.0 +Release: 1.3.1 Provider package ----------------
docs/apache-airflow-providers-snowflake/commits.rst+15 −1 modified@@ -28,14 +28,28 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.0.0 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== =============================================================================== +Commit Committed Subject +================================================================================================= =========== =============================================================================== +`d06c14f527 <https://github.com/apache/airflow/commit/d06c14f52757321f2049bb54212421f68bf3ed06>`_ 2023-08-24 ``Set snowflake_conn_id on Snowflake Operators to avoid error (#33681)`` +`c88ff1d7c2 <https://github.com/apache/airflow/commit/c88ff1d7c2ff235582d46593b11edbdf7d76b4c9>`_ 2023-08-23 ``Bump apache-airflow-providers-snowflake due to breaking changes (#33615)`` +`86423b41e1 <https://github.com/apache/airflow/commit/86423b41e170f4f26bf165623a14e98192bc5d5d>`_ 2023-08-21 ``Remove deprecated 'S3ToSnowflake' and 'SnowflakeToSlack' operators (#33558)`` +================================================================================================= =========== =============================================================================== + 4.4.2 ..... -Latest change: 2023-08-07 +Latest change: 2023-08-11 ================================================================================================= =========== ========================================================================== Commit Committed Subject ================================================================================================= =========== ========================================================================== +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` `9736143468 <https://github.com/apache/airflow/commit/9736143468cfe034e65afb3df3031ab3626f0f6d>`_ 2023-08-07 ``Add a new parameter to SQL operators to specify conn id field (#30784)`` ================================================================================================= =========== ==========================================================================
docs/apache-airflow-providers-snowflake/index.rst+3 −4 modified@@ -77,7 +77,7 @@ Package apache-airflow-providers-snowflake `Snowflake <https://www.snowflake.com/>`__ -Release: 4.4.2 +Release: 5.0.0 Provider package ---------------- @@ -124,7 +124,6 @@ Dependent package ============================================================================================================== =============== `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql`` `apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage`` -`apache-airflow-providers-slack <https://airflow.apache.org/docs/apache-airflow-providers-slack>`_ ``slack`` ============================================================================================================== =============== Downloading official packages @@ -133,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-snowflake 4.4.2 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.4.2.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.4.2.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-4.4.2.tar.gz.sha512>`__) -* `The apache-airflow-providers-snowflake 4.4.2 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.4.2-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.4.2-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-4.4.2-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-snowflake 5.0.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-5.0.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-5.0.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-snowflake-5.0.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-snowflake 5.0.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-5.0.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-5.0.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_snowflake-5.0.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-ssh/changelog.rst+0 −2 modified@@ -16,6 +16,4 @@ specific language governing permissions and limitations under the License. - - .. include:: ../../airflow/providers/ssh/CHANGELOG.rst
docs/apache-airflow-providers-ssh/commits.rst+18 −0 modified@@ -28,6 +28,23 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.7.2 +..... + +Latest change: 2023-08-21 + +================================================================================================= =========== ================================================================ +Commit Committed Subject +================================================================================================= =========== ================================================================ +`bb2689ab45 <https://github.com/apache/airflow/commit/bb2689ab455ca5d82f4f9b8d4b73ec071849c439>`_ 2023-08-21 ``Use str.splitlines() to split lines in providers (#33593)`` +`1cdd82391e <https://github.com/apache/airflow/commit/1cdd82391e0f7a24ab7f0badbe8f44a54f51d757>`_ 2023-08-21 ``Simplify conditions on len() in other providers (#33569)`` +`b5a4d36383 <https://github.com/apache/airflow/commit/b5a4d36383c4143f46e168b8b7a4ba2dc7c54076>`_ 2023-08-11 ``Prepare docs for Aug 2023 2nd wave of Providers (#33291)`` +`225e3041d2 <https://github.com/apache/airflow/commit/225e3041d269698d0456e09586924c1898d09434>`_ 2023-07-06 ``Prepare docs for July 2023 wave of Providers (RC2) (#32381)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`cb4927a018 <https://github.com/apache/airflow/commit/cb4927a01887e2413c45d8d9cb63e74aa994ee74>`_ 2023-07-05 ``Prepare docs for July 2023 wave of Providers (#32298)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +================================================================================================= =========== ================================================================ + 3.7.1 ..... @@ -36,6 +53,7 @@ Latest change: 2023-06-20 ================================================================================================= =========== ============================================================= Commit Committed Subject ================================================================================================= =========== ============================================================= +`79bcc2e668 <https://github.com/apache/airflow/commit/79bcc2e668e648098aad6eaa87fe8823c76bc69a>`_ 2023-06-20 ``Prepare RC1 docs for June 2023 wave of Providers (#32001)`` `8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` `9276310a43 <https://github.com/apache/airflow/commit/9276310a43d17a9e9e38c2cb83686a15656896b2>`_ 2023-06-05 ``Improve docstrings in providers (#31681)`` `a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)``
docs/apache-airflow-providers-ssh/index.rst+1 −1 modified@@ -68,7 +68,7 @@ Package apache-airflow-providers-ssh `Secure Shell (SSH) <https://tools.ietf.org/html/rfc4251>`__ -Release: 3.7.1 +Release: 3.7.2 Provider package ----------------
docs/apache-airflow-providers-trino/commits.rst+14 −1 modified@@ -28,14 +28,27 @@ For high-level changelog, see :doc:`package information including changelog <ind +5.3.0 +..... + +Latest change: 2023-08-24 + +================================================================================================= =========== =================================================== +Commit Committed Subject +================================================================================================= =========== =================================================== +`626d3daa9b <https://github.com/apache/airflow/commit/626d3daa9b5348fec6dfb4d29edcff97bba20298>`_ 2023-08-24 ``Add OpenLineage support for Trino. (#32910)`` +`8e88eb8fa7 <https://github.com/apache/airflow/commit/8e88eb8fa7e1fc12918dcbfcfc8ed28381008d33>`_ 2023-08-17 ``Consolidate import and usage of pandas (#33480)`` +================================================================================================= =========== =================================================== + 5.2.1 ..... -Latest change: 2023-07-19 +Latest change: 2023-07-29 ================================================================================================= =========== ================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================ +`d06b7af69a <https://github.com/apache/airflow/commit/d06b7af69a65c50321ba2a9904551f3b8affc7f1>`_ 2023-07-29 ``Prepare docs for July 2023 3rd wave of Providers (#32875)`` `60c49ab2df <https://github.com/apache/airflow/commit/60c49ab2dfabaf450b80a5c7569743dd383500a6>`_ 2023-07-19 ``Add more accurate typing for DbApiHook.run method (#31846)`` `e01323635a <https://github.com/apache/airflow/commit/e01323635a88ecf313a415ea41d32d6d28fa0794>`_ 2023-07-13 ``Add deprecation info to the providers modules and classes docstring (#32536)`` `21e8f878a3 <https://github.com/apache/airflow/commit/21e8f878a3c91250d0d198c6c3675b4b350fcb61>`_ 2023-07-06 ``D205 Support - Providers: Snowflake to Zendesk (inclusive) (#32359)``
docs/apache-airflow-providers-trino/index.rst+10 −9 modified@@ -78,7 +78,7 @@ Package apache-airflow-providers-trino `Trino <https://trino.io/>`__ -Release: 5.2.1 +Release: 5.3.0 Provider package ---------------- @@ -120,18 +120,19 @@ You can install such cross-provider dependencies when installing from PyPI. For pip install apache-airflow-providers-trino[common.sql] -============================================================================================================ ============== -Dependent package Extra -============================================================================================================ ============== -`apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql`` -`apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google`` -============================================================================================================ ============== +============================================================================================================== =============== +Dependent package Extra +============================================================================================================== =============== +`apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql`` +`apache-airflow-providers-google <https://airflow.apache.org/docs/apache-airflow-providers-google>`_ ``google`` +`apache-airflow-providers-openlineage <https://airflow.apache.org/docs/apache-airflow-providers-openlineage>`_ ``openlineage`` +============================================================================================================== =============== 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 5.2.1 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.2.1.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.2.1.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.2.1.tar.gz.sha512>`__) -* `The apache-airflow-providers-trino 5.2.1 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.2.1-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.2.1-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.2.1-py3-none-any.whl.sha512>`__) +* `The apache-airflow-providers-trino 5.3.0 sdist package <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.3.0.tar.gz>`_ (`asc <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.3.0.tar.gz.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache-airflow-providers-trino-5.3.0.tar.gz.sha512>`__) +* `The apache-airflow-providers-trino 5.3.0 wheel package <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.3.0-py3-none-any.whl>`_ (`asc <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.3.0-py3-none-any.whl.asc>`__, `sha512 <https://downloads.apache.org/airflow/providers/apache_airflow_providers_trino-5.3.0-py3-none-any.whl.sha512>`__)
docs/apache-airflow-providers-yandex/commits.rst+27 −4 modified@@ -28,16 +28,39 @@ For high-level changelog, see :doc:`package information including changelog <ind +3.4.0 +..... + +Latest change: 2023-08-23 + +================================================================================================= =========== ====================================================================== +Commit Committed Subject +================================================================================================= =========== ====================================================================== +`2ae1c10bfa <https://github.com/apache/airflow/commit/2ae1c10bfa59d1b2b5d8d453cd64d9858cb18c0b>`_ 2023-08-23 ``add support for Yandex Dataproc cluster labels (#29811)`` +`2b43fa473f <https://github.com/apache/airflow/commit/2b43fa473f02cfe58c9af25c861187a7712a78ef>`_ 2023-08-22 ``Resume yandex provider (#33574)`` +`3878fe6fab <https://github.com/apache/airflow/commit/3878fe6fab3ccc1461932b456c48996f2763139f>`_ 2023-07-05 ``Remove spurious headers for provider changelogs (#32373)`` +`09d4718d3a <https://github.com/apache/airflow/commit/09d4718d3a46aecf3355d14d3d23022002f4a818>`_ 2023-06-27 ``Improve provider documentation and README structure (#32125)`` +`8b146152d6 <https://github.com/apache/airflow/commit/8b146152d62118defb3004c997c89c99348ef948>`_ 2023-06-20 ``Add note about dropping Python 3.7 for providers (#32015)`` +`a59076eaee <https://github.com/apache/airflow/commit/a59076eaeed03dd46e749ad58160193b4ef3660c>`_ 2023-06-02 ``Add D400 pydocstyle check - Providers (#31427)`` +`abea189022 <https://github.com/apache/airflow/commit/abea18902257c0250fedb764edda462f9e5abc84>`_ 2023-05-18 ``Use '__version__' in providers not 'version' (#31393)`` +`0a30706aa7 <https://github.com/apache/airflow/commit/0a30706aa7c581905ca99a8b6e2f05960d480729>`_ 2023-05-03 ``Use 'AirflowProviderDeprecationWarning' in providers (#30975)`` +`eef5bc7f16 <https://github.com/apache/airflow/commit/eef5bc7f166dc357fea0cc592d39714b1a5e3c14>`_ 2023-05-03 ``Add full automation for min Airflow version for providers (#30994)`` +`a7eb32a5b2 <https://github.com/apache/airflow/commit/a7eb32a5b222e236454d3e474eec478ded7c368d>`_ 2023-04-30 ``Bump minimum Airflow version in providers (#30917)`` +`b4d6e83686 <https://github.com/apache/airflow/commit/b4d6e83686ecfa81d4badbefc4f60a03d9f3c571>`_ 2023-04-19 ``Suspend Yandex provider due to protobuf limitation (#30667)`` +`d23a3bbed8 <https://github.com/apache/airflow/commit/d23a3bbed89ae04369983f21455bf85ccc1ae1cb>`_ 2023-04-04 ``Add mechanism to suspend providers (#30422)`` +================================================================================================= =========== ====================================================================== + 3.3.0 ..... -Latest change: 2023-02-22 +Latest change: 2023-03-03 -================================================================================================= =========== ================================================== +================================================================================================= =========== ======================================================= Commit Committed Subject -================================================================================================= =========== ================================================== +================================================================================================= =========== ======================================================= +`fcd3c0149f <https://github.com/apache/airflow/commit/fcd3c0149f17b364dfb94c0523d23e3145976bbe>`_ 2023-03-03 ``Prepare docs for 03/2023 wave of Providers (#29878)`` `1768872a00 <https://github.com/apache/airflow/commit/1768872a0085ba423d0a34fe6cc4e1e109f3adeb>`_ 2023-02-22 ``support Yandex SDK feature "endpoint" (#29635)`` -================================================================================================= =========== ================================================== +================================================================================================= =========== ======================================================= 3.2.0 .....
docs/apache-airflow-providers-yandex/index.rst+5 −5 modified@@ -77,7 +77,7 @@ Package apache-airflow-providers-yandex Yandex including `Yandex.Cloud <https://cloud.yandex.com/>`__ -Release: 3.3.0 +Release: 3.4.0 Provider package ---------------- @@ -95,11 +95,11 @@ for the minimum Airflow version supported) via Requirements ------------ +The minimum Apache Airflow version supported by this provider package is ``2.4.0``. + ================== ================== PIP package Version required ================== ================== -``apache-airflow`` ``>=2.3.0`` -``yandexcloud`` ``>=0.173.0`` +``apache-airflow`` ``>=2.4.0`` +``yandexcloud`` ``>=0.228.0`` ================== ================== - -.. include:: ../../airflow/providers/yandex/CHANGELOG.rst
1cb127b9fd22Validate Hive Beeline parameters (#29502)
2 files changed · +49 −1
airflow/providers/apache/hive/hooks/hive.py+17 −0 modified@@ -141,6 +141,7 @@ def _prepare_cli_cmd(self) -> list[Any]: if self.use_beeline: hive_bin = "beeline" + self._validate_beeline_parameters(conn) jdbc_url = f"jdbc:hive2://{conn.host}:{conn.port}/{conn.schema}" if conf.get("core", "security") == "kerberos": template = conn.extra_dejson.get("principal", "hive/_HOST@EXAMPLE.COM") @@ -165,6 +166,22 @@ def _prepare_cli_cmd(self) -> list[Any]: return [hive_bin] + cmd_extra + hive_params_list + def _validate_beeline_parameters(self, conn): + if ":" in conn.host or "/" in conn.host or ";" in conn.host: + raise Exception( + f"The host used in beeline command ({conn.host}) should not contain ':/;' characters)" + ) + try: + int_port = int(conn.port) + if int_port <= 0 or int_port > 65535: + raise Exception(f"The port used in beeline command ({conn.port}) should be in range 0-65535)") + except (ValueError, TypeError) as e: + raise Exception(f"The port used in beeline command ({conn.port}) should be a valid integer: {e})") + if ";" in conn.schema: + raise Exception( + f"The schema used in beeline command ({conn.schema}) should not contain ';' character)" + ) + @staticmethod def _prepare_hiveconf(d: dict[Any, Any]) -> list[Any]: """
tests/providers/apache/hive/hooks/test_hive.py+32 −1 modified@@ -29,7 +29,7 @@ from airflow.exceptions import AirflowException from airflow.models.connection import Connection from airflow.models.dag import DAG -from airflow.providers.apache.hive.hooks.hive import HiveMetastoreHook, HiveServer2Hook +from airflow.providers.apache.hive.hooks.hive import HiveCliHook, HiveMetastoreHook, HiveServer2Hook from airflow.secrets.environment_variables import CONN_ENV_PREFIX from airflow.utils import timezone from airflow.utils.operator_helpers import AIRFLOW_VAR_NAME_FORMAT_MAPPING @@ -641,6 +641,37 @@ def test_get_conn_with_password(self, mock_connect): database="default", ) + @pytest.mark.parametrize( + "host, port, schema, message", + [ + ("localhost", "10000", "default", None), + ("localhost:", "10000", "default", "The host used in beeline command"), + (";ocalhost", "10000", "default", "The host used in beeline command"), + (";ocalho/", "10000", "default", "The host used in beeline command"), + ("localhost", "as", "default", "The port used in beeline command"), + ("localhost", "0;", "default", "The port used in beeline command"), + ("localhost", "10/", "default", "The port used in beeline command"), + ("localhost", ":", "default", "The port used in beeline command"), + ("localhost", "-1", "default", "The port used in beeline command"), + ("localhost", "655536", "default", "The port used in beeline command"), + ("localhost", "1234", "default;", "The schema used in beeline command"), + ], + ) + def test_get_conn_with_wrong_connection_parameters(self, host, port, schema, message): + connection = Connection( + conn_id="test", + conn_type="hive", + host=host, + port=port, + schema=schema, + ) + hook = HiveCliHook() + if message: + with pytest.raises(Exception, match=message): + hook._validate_beeline_parameters(connection) + else: + hook._validate_beeline_parameters(connection) + def test_get_records(self): hook = MockHiveServer2Hook() query = f"SELECT * FROM {self.table}"
Vulnerability mechanics
Root cause
"Missing input validation on Hive connection parameters (host, port, schema) allows injection of special characters into the beeline JDBC URL."
Attack vector
An attacker who can control the Hive connection configuration (host, port, or schema fields) can inject special characters such as `:`, `/`, or `;` into the beeline JDBC URL. For example, a host value containing `;` or a schema value containing `;` could alter the JDBC URL structure, potentially leading to unintended JDBC calls or command injection. The attack requires the ability to set or modify the Hive connection parameters used by the HiveCliHook when `use_beeline` is enabled. [patch_id=1641018]
Affected code
The vulnerability resides in `airflow/providers/apache/hive/hooks/hive.py` in the `_prepare_cli_cmd` method. When `use_beeline` is True, the method constructs a JDBC URL by directly interpolating `conn.host`, `conn.port`, and `conn.schema` without prior validation. The patch introduces a new `_validate_beeline_parameters` method that checks these connection parameters for invalid characters and out-of-range port values before building the JDBC URL.
What the fix does
The patch adds a `_validate_beeline_parameters` method that is called in `_prepare_cli_cmd` before constructing the JDBC URL. It validates that the host does not contain `:`, `/`, or `;` characters, that the port is a valid integer in the range 1–65535, and that the schema does not contain `;`. If any check fails, an exception is raised early, preventing the construction of a malformed JDBC URL. This closes the improper input validation gap by ensuring connection parameters are sanitized before being used in the beeline command. [patch_id=1641018]
Preconditions
- configThe HiveCliHook must be configured with use_beeline=True.
- inputThe attacker must be able to control or influence the Hive connection parameters (host, port, or schema).
Generated on May 23, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
4- github.com/apache/airflow/pull/29502ghsapatchWEB
- github.com/advisories/GHSA-9mwf-mw74-9cv5ghsaADVISORY
- lists.apache.org/thread/99g0qm56wmgdxmbtdsvhj4rdnxhpzpmlghsavendor-advisoryWEB
- nvd.nist.gov/vuln/detail/CVE-2023-25696ghsaADVISORY
News mentions
0No linked articles in our index yet.