diff --git a/airflow/providers/airbyte/CHANGELOG.rst b/airflow/providers/airbyte/CHANGELOG.rst index 19629d356d099..58bc1393dd1ef 100644 --- a/airflow/providers/airbyte/CHANGELOG.rst +++ b/airflow/providers/airbyte/CHANGELOG.rst @@ -26,6 +26,17 @@ Changelog --------- +3.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +``Cancel airbyte job when timeout exceeded to prevent inconsistency among airflow and airbyte (#36241)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.5.0 ..... diff --git a/airflow/providers/airbyte/__init__.py b/airflow/providers/airbyte/__init__.py index 2e4bc6eda500e..496126dd1eb0b 100644 --- a/airflow/providers/airbyte/__init__.py +++ b/airflow/providers/airbyte/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/airbyte/provider.yaml b/airflow/providers/airbyte/provider.yaml index 460646875582e..8dc4c357e859b 100644 --- a/airflow/providers/airbyte/provider.yaml +++ b/airflow/providers/airbyte/provider.yaml @@ -22,8 +22,9 @@ description: | `Airbyte `__ suspended: false -source-date-epoch: 1701983344 +source-date-epoch: 1703274763 versions: + - 3.5.1 - 3.5.0 - 3.4.0 - 3.3.2 diff --git a/airflow/providers/amazon/CHANGELOG.rst b/airflow/providers/amazon/CHANGELOG.rst index 7abe5bef0d466..ac45ca6834145 100644 --- a/airflow/providers/amazon/CHANGELOG.rst +++ b/airflow/providers/amazon/CHANGELOG.rst @@ -26,6 +26,32 @@ Changelog --------- +8.14.0 +...... + +Features +~~~~~~~~ + +* ``Add 'jsonpath_ng.ext.parse' support for 'SqsSensor' (#36170)`` +* ``Increase ConflictException retries to 4 total (#36337)`` +* ``Increase width of execution_date input in trigger.html (#36278) (#36304)`` +* ``Allow storage options to be passed (#35820)`` + +Bug Fixes +~~~~~~~~~ + +* ``Remove 'is_authorized_cluster_activity' from auth manager (#36175)`` +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +Misc +~~~~ + +* ``Add code snippet formatting in docstrings via Ruff (#36262)`` +* ``Remove remaining Airflow 2.6 backcompat code from Amazon Provider (#36324)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 8.13.0 ...... diff --git a/airflow/providers/amazon/__init__.py b/airflow/providers/amazon/__init__.py index 620618f3906d5..c147b420f001e 100644 --- a/airflow/providers/amazon/__init__.py +++ b/airflow/providers/amazon/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "8.13.0" +__version__ = "8.14.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/amazon/provider.yaml b/airflow/providers/amazon/provider.yaml index f148c95a6e856..1b5bb681dac73 100644 --- a/airflow/providers/amazon/provider.yaml +++ b/airflow/providers/amazon/provider.yaml @@ -22,8 +22,9 @@ description: | Amazon integration (including `Amazon Web Services (AWS) `__). suspended: false -source-date-epoch: 1701983347 +source-date-epoch: 1703274816 versions: + - 8.14.0 - 8.13.0 - 8.12.0 - 8.11.0 diff --git a/airflow/providers/apache/beam/CHANGELOG.rst b/airflow/providers/apache/beam/CHANGELOG.rst index 7323ec3f99aae..77eb19813325e 100644 --- a/airflow/providers/apache/beam/CHANGELOG.rst +++ b/airflow/providers/apache/beam/CHANGELOG.rst @@ -26,6 +26,18 @@ Changelog --------- +5.5.0 +..... + +Features +~~~~~~~~ + +* ``Add ability to run streaming Job for BeamRunPythonPipelineOperator in non deferrable mode (#36108)`` +* ``Implement deferrable mode for BeamRunJavaPipelineOperator (#36122)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 5.4.0 ..... diff --git a/airflow/providers/apache/beam/__init__.py b/airflow/providers/apache/beam/__init__.py index 50d315bc50cf4..5f2bfd203f8c1 100644 --- a/airflow/providers/apache/beam/__init__.py +++ b/airflow/providers/apache/beam/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "5.4.0" +__version__ = "5.5.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/beam/provider.yaml b/airflow/providers/apache/beam/provider.yaml index c737def7bac49..3c2dd7f1f61e2 100644 --- a/airflow/providers/apache/beam/provider.yaml +++ b/airflow/providers/apache/beam/provider.yaml @@ -22,8 +22,9 @@ description: | `Apache Beam `__. suspended: false -source-date-epoch: 1701983348 +source-date-epoch: 1703274826 versions: + - 5.5.0 - 5.4.0 - 5.3.0 - 5.2.3 diff --git a/airflow/providers/apache/cassandra/CHANGELOG.rst b/airflow/providers/apache/cassandra/CHANGELOG.rst index d16d69361f418..c3b910e3bb5e7 100644 --- a/airflow/providers/apache/cassandra/CHANGELOG.rst +++ b/airflow/providers/apache/cassandra/CHANGELOG.rst @@ -26,6 +26,22 @@ Changelog --------- +3.4.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Sanitize keyspace and table in the cassandra query to avoid sql injection (#36111)`` + +Misc +~~~~ + +* ``Add code snippet formatting in docstrings via Ruff (#36262)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.4.0 ..... diff --git a/airflow/providers/apache/cassandra/__init__.py b/airflow/providers/apache/cassandra/__init__.py index 2384cb888e793..cd596d5e435af 100644 --- a/airflow/providers/apache/cassandra/__init__.py +++ b/airflow/providers/apache/cassandra/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/cassandra/provider.yaml b/airflow/providers/apache/cassandra/provider.yaml index 10cb28dba59c3..0eb3b00c41f11 100644 --- a/airflow/providers/apache/cassandra/provider.yaml +++ b/airflow/providers/apache/cassandra/provider.yaml @@ -22,8 +22,9 @@ description: | `Apache Cassandra `__. suspended: false -source-date-epoch: 1701983349 +source-date-epoch: 1703274836 versions: + - 3.4.1 - 3.4.0 - 3.3.0 - 3.2.1 diff --git a/airflow/providers/apache/hdfs/CHANGELOG.rst b/airflow/providers/apache/hdfs/CHANGELOG.rst index 64a2238aa2e55..ef440914f3c90 100644 --- a/airflow/providers/apache/hdfs/CHANGELOG.rst +++ b/airflow/providers/apache/hdfs/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +4.3.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``fix connection type webhdfs (#36145)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.3.0 ..... diff --git a/airflow/providers/apache/hdfs/__init__.py b/airflow/providers/apache/hdfs/__init__.py index d8068f3c1021a..a03355281beb2 100644 --- a/airflow/providers/apache/hdfs/__init__.py +++ b/airflow/providers/apache/hdfs/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "4.3.0" +__version__ = "4.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/hdfs/provider.yaml b/airflow/providers/apache/hdfs/provider.yaml index f796b23873d61..1519695fb30f7 100644 --- a/airflow/providers/apache/hdfs/provider.yaml +++ b/airflow/providers/apache/hdfs/provider.yaml @@ -23,8 +23,9 @@ description: | and `WebHDFS `__. suspended: false -source-date-epoch: 1701983353 +source-date-epoch: 1703274840 versions: + - 4.3.1 - 4.3.0 - 4.2.0 - 4.1.1 diff --git a/airflow/providers/apache/hive/CHANGELOG.rst b/airflow/providers/apache/hive/CHANGELOG.rst index 7842519566caa..c70e6d711dea3 100644 --- a/airflow/providers/apache/hive/CHANGELOG.rst +++ b/airflow/providers/apache/hive/CHANGELOG.rst @@ -27,6 +27,22 @@ Changelog --------- +6.4.0 +..... + +Features +~~~~~~~~ + +* ``Add param proxy user for hive (#36221)`` + +Misc +~~~~ + +* ``Add code snippet formatting in docstrings via Ruff (#36262)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 6.3.0 ..... diff --git a/airflow/providers/apache/hive/__init__.py b/airflow/providers/apache/hive/__init__.py index 42966e39104da..3292fd402f000 100644 --- a/airflow/providers/apache/hive/__init__.py +++ b/airflow/providers/apache/hive/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "6.3.0" +__version__ = "6.4.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/hive/provider.yaml b/airflow/providers/apache/hive/provider.yaml index ff519883e6958..0d315ae24eaa3 100644 --- a/airflow/providers/apache/hive/provider.yaml +++ b/airflow/providers/apache/hive/provider.yaml @@ -22,8 +22,9 @@ description: | `Apache Hive `__ suspended: false -source-date-epoch: 1701983354 +source-date-epoch: 1703274844 versions: + - 6.4.0 - 6.3.0 - 6.2.0 - 6.1.6 diff --git a/airflow/providers/apache/kafka/CHANGELOG.rst b/airflow/providers/apache/kafka/CHANGELOG.rst index 2f98e4259a946..7645ca03e5c8e 100644 --- a/airflow/providers/apache/kafka/CHANGELOG.rst +++ b/airflow/providers/apache/kafka/CHANGELOG.rst @@ -27,6 +27,18 @@ Changelog --------- +1.3.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Provide the consumed message to consumer.commit in AwaitMessageTrigger (#36272)`` +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.3.0 ..... diff --git a/airflow/providers/apache/kafka/__init__.py b/airflow/providers/apache/kafka/__init__.py index c9148f1e62be8..d7065ff2d9474 100644 --- a/airflow/providers/apache/kafka/__init__.py +++ b/airflow/providers/apache/kafka/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.3.0" +__version__ = "1.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/kafka/provider.yaml b/airflow/providers/apache/kafka/provider.yaml index eb9f637c6366f..4b26573f2da6b 100644 --- a/airflow/providers/apache/kafka/provider.yaml +++ b/airflow/providers/apache/kafka/provider.yaml @@ -20,10 +20,11 @@ package-name: apache-airflow-providers-apache-kafka name: Apache Kafka suspended: false -source-date-epoch: 1701983356 +source-date-epoch: 1703274881 description: | `Apache Kafka `__ versions: + - 1.3.1 - 1.3.0 - 1.2.0 - 1.1.2 diff --git a/airflow/providers/apache/spark/CHANGELOG.rst b/airflow/providers/apache/spark/CHANGELOG.rst index c06b7f7418ba6..01f167cbbd371 100644 --- a/airflow/providers/apache/spark/CHANGELOG.rst +++ b/airflow/providers/apache/spark/CHANGELOG.rst @@ -29,6 +29,23 @@ Changelog --------- +4.6.0 +..... + +Features +~~~~~~~~ + +* ``SparkSubmit: Adding propertyfiles option (#36164)`` +* ``SparkSubmit Connection Extras can be overridden (#36151)`` + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.5.0 ..... diff --git a/airflow/providers/apache/spark/__init__.py b/airflow/providers/apache/spark/__init__.py index f4065fc004006..0ef722018bb52 100644 --- a/airflow/providers/apache/spark/__init__.py +++ b/airflow/providers/apache/spark/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "4.5.0" +__version__ = "4.6.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apache/spark/provider.yaml b/airflow/providers/apache/spark/provider.yaml index e560d2e653dbf..d0e6b86f1fbb6 100644 --- a/airflow/providers/apache/spark/provider.yaml +++ b/airflow/providers/apache/spark/provider.yaml @@ -22,8 +22,9 @@ description: | `Apache Spark `__ suspended: false -source-date-epoch: 1701983360 +source-date-epoch: 1703274889 versions: + - 4.6.0 - 4.5.0 - 4.4.0 - 4.3.0 diff --git a/airflow/providers/apache/sqoop/CHANGELOG.rst b/airflow/providers/apache/sqoop/CHANGELOG.rst index 24d07ca6b83f0..87dde5c591ffb 100644 --- a/airflow/providers/apache/sqoop/CHANGELOG.rst +++ b/airflow/providers/apache/sqoop/CHANGELOG.rst @@ -28,6 +28,23 @@ Changelog --------- + +4.2.1 +..... + +.. note:: + + Mark apache.sqoop provider as removed according to `consensus on the dev@airflow.apache.org `_ + + +Misc +~~~~ + +* ``Schedule plexus and apache.sqoop providers for removal (#36208)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.2.0 ..... diff --git a/airflow/providers/apache/sqoop/provider.yaml b/airflow/providers/apache/sqoop/provider.yaml index d6bc9b6c60700..679640e7c66d4 100644 --- a/airflow/providers/apache/sqoop/provider.yaml +++ b/airflow/providers/apache/sqoop/provider.yaml @@ -23,8 +23,9 @@ description: | removed: true suspended: true -source-date-epoch: 1701983361 +source-date-epoch: 1703274900 versions: + - 4.2.1 - 4.2.0 - 4.1.0 - 4.0.0 diff --git a/airflow/providers/apprise/CHANGELOG.rst b/airflow/providers/apprise/CHANGELOG.rst index ddc6a063f8c33..b69dc94d9e725 100644 --- a/airflow/providers/apprise/CHANGELOG.rst +++ b/airflow/providers/apprise/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +1.2.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.2.0 ..... diff --git a/airflow/providers/apprise/__init__.py b/airflow/providers/apprise/__init__.py index ec76778e0e6a6..918da46654556 100644 --- a/airflow/providers/apprise/__init__.py +++ b/airflow/providers/apprise/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.2.0" +__version__ = "1.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/apprise/provider.yaml b/airflow/providers/apprise/provider.yaml index 1906ca6603d92..d4a989301c16b 100644 --- a/airflow/providers/apprise/provider.yaml +++ b/airflow/providers/apprise/provider.yaml @@ -24,9 +24,10 @@ description: | `Apprise `__ suspended: false -source-date-epoch: 1701983362 +source-date-epoch: 1703274914 versions: + - 1.2.1 - 1.2.0 - 1.1.0 - 1.0.2 diff --git a/airflow/providers/arangodb/CHANGELOG.rst b/airflow/providers/arangodb/CHANGELOG.rst index e5967f9c4692f..889fd7f8f1577 100644 --- a/airflow/providers/arangodb/CHANGELOG.rst +++ b/airflow/providers/arangodb/CHANGELOG.rst @@ -28,6 +28,17 @@ Changelog --------- +2.4.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 2.4.0 ..... diff --git a/airflow/providers/arangodb/__init__.py b/airflow/providers/arangodb/__init__.py index a29f8c7449f1d..6891d8c56ef6e 100644 --- a/airflow/providers/arangodb/__init__.py +++ b/airflow/providers/arangodb/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "2.4.0" +__version__ = "2.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/arangodb/provider.yaml b/airflow/providers/arangodb/provider.yaml index e7526259c9529..cd81902ba8a45 100644 --- a/airflow/providers/arangodb/provider.yaml +++ b/airflow/providers/arangodb/provider.yaml @@ -26,8 +26,9 @@ dependencies: - python-arango>=7.3.2 suspended: false -source-date-epoch: 1701983363 +source-date-epoch: 1703274916 versions: + - 2.4.1 - 2.4.0 - 2.3.0 - 2.2.2 diff --git a/airflow/providers/asana/CHANGELOG.rst b/airflow/providers/asana/CHANGELOG.rst index f6beb91518948..3b7559692bc4c 100644 --- a/airflow/providers/asana/CHANGELOG.rst +++ b/airflow/providers/asana/CHANGELOG.rst @@ -26,6 +26,17 @@ Changelog --------- +2.4.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 2.4.0 ..... diff --git a/airflow/providers/asana/__init__.py b/airflow/providers/asana/__init__.py index 8c9afe130d66d..8543a22441d5b 100644 --- a/airflow/providers/asana/__init__.py +++ b/airflow/providers/asana/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "2.4.0" +__version__ = "2.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/asana/provider.yaml b/airflow/providers/asana/provider.yaml index 2914e9816664b..e53e9dbbbe3a4 100644 --- a/airflow/providers/asana/provider.yaml +++ b/airflow/providers/asana/provider.yaml @@ -22,8 +22,9 @@ description: | `Asana `__ suspended: false -source-date-epoch: 1701983363 +source-date-epoch: 1703274918 versions: + - 2.4.1 - 2.4.0 - 2.3.0 - 2.2.2 diff --git a/airflow/providers/celery/CHANGELOG.rst b/airflow/providers/celery/CHANGELOG.rst index 507c0079409c6..3968193e11c92 100644 --- a/airflow/providers/celery/CHANGELOG.rst +++ b/airflow/providers/celery/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Fix 'sentinel_kwargs' load from ENV (#36318)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.5.0 ..... diff --git a/airflow/providers/celery/__init__.py b/airflow/providers/celery/__init__.py index ee703a8c47132..590369432742a 100644 --- a/airflow/providers/celery/__init__.py +++ b/airflow/providers/celery/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/celery/provider.yaml b/airflow/providers/celery/provider.yaml index 98de14d7bc1ef..31af4fb76f00a 100644 --- a/airflow/providers/celery/provider.yaml +++ b/airflow/providers/celery/provider.yaml @@ -22,8 +22,9 @@ description: | `Celery `__ suspended: false -source-date-epoch: 1701983365 +source-date-epoch: 1703274925 versions: + - 3.5.1 - 3.5.0 - 3.4.1 - 3.4.0 diff --git a/airflow/providers/cloudant/CHANGELOG.rst b/airflow/providers/cloudant/CHANGELOG.rst index 223635ae51c1c..7cbc776bcb031 100644 --- a/airflow/providers/cloudant/CHANGELOG.rst +++ b/airflow/providers/cloudant/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.4.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.4.0 ..... diff --git a/airflow/providers/cloudant/__init__.py b/airflow/providers/cloudant/__init__.py index 052dbd18d4033..43485d673e323 100644 --- a/airflow/providers/cloudant/__init__.py +++ b/airflow/providers/cloudant/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/cloudant/provider.yaml b/airflow/providers/cloudant/provider.yaml index cb2d77dc0b646..1fa09a7c7ec92 100644 --- a/airflow/providers/cloudant/provider.yaml +++ b/airflow/providers/cloudant/provider.yaml @@ -22,8 +22,9 @@ description: | `IBM Cloudant `__ suspended: false -source-date-epoch: 1701983366 +source-date-epoch: 1703274928 versions: + - 3.4.1 - 3.4.0 - 3.3.0 - 3.2.1 diff --git a/airflow/providers/cncf/kubernetes/CHANGELOG.rst b/airflow/providers/cncf/kubernetes/CHANGELOG.rst index d28dc90146d56..3e1748768c4ca 100644 --- a/airflow/providers/cncf/kubernetes/CHANGELOG.rst +++ b/airflow/providers/cncf/kubernetes/CHANGELOG.rst @@ -27,6 +27,28 @@ Changelog --------- +7.12.0 +...... + +Features +~~~~~~~~ + +* ``Add _request_timeout to KPO log fetch calls (#36297)`` +* ``Add 'pod_template_dict' field to 'KubernetesPodOperator' (#33174)`` +* ``KubernetesPodTrigger: add exception stack trace in TriggerEvent (#35716)`` +* ``Make pod_name length equal to HOST_NAME_MAX (#36332)`` +* ``Move KubernetesPodTrigger hook to a cached property (#36290)`` + +Bug Fixes +~~~~~~~~~ + +* ``Kubernetes executor running slots leak fix (#36240)`` +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` +* ``list pods performance optimization (#36092)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 7.11.0 ...... diff --git a/airflow/providers/cncf/kubernetes/__init__.py b/airflow/providers/cncf/kubernetes/__init__.py index e175076aedfc9..c488005c24b6f 100644 --- a/airflow/providers/cncf/kubernetes/__init__.py +++ b/airflow/providers/cncf/kubernetes/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "7.11.0" +__version__ = "7.12.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/cncf/kubernetes/provider.yaml b/airflow/providers/cncf/kubernetes/provider.yaml index 88261a844e0d5..55c9777d3e1ac 100644 --- a/airflow/providers/cncf/kubernetes/provider.yaml +++ b/airflow/providers/cncf/kubernetes/provider.yaml @@ -22,8 +22,9 @@ description: | `Kubernetes `__ suspended: false -source-date-epoch: 1701983367 +source-date-epoch: 1703274945 versions: + - 7.12.0 - 7.11.0 - 7.10.0 - 7.9.0 diff --git a/airflow/providers/cohere/CHANGELOG.rst b/airflow/providers/cohere/CHANGELOG.rst index 69e5c395b7895..d2535eab6a132 100644 --- a/airflow/providers/cohere/CHANGELOG.rst +++ b/airflow/providers/cohere/CHANGELOG.rst @@ -20,6 +20,17 @@ Changelog --------- +1.1.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.1.0 ..... diff --git a/airflow/providers/cohere/__init__.py b/airflow/providers/cohere/__init__.py index 2f0311e804bda..c3b9a033e5be4 100644 --- a/airflow/providers/cohere/__init__.py +++ b/airflow/providers/cohere/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/cohere/provider.yaml b/airflow/providers/cohere/provider.yaml index 49c5f8bcbdf51..324dec5186cc7 100644 --- a/airflow/providers/cohere/provider.yaml +++ b/airflow/providers/cohere/provider.yaml @@ -24,9 +24,10 @@ description: | `Cohere `__ suspended: false -source-date-epoch: 1701983368 +source-date-epoch: 1703274952 versions: + - 1.1.1 - 1.1.0 - 1.0.0 diff --git a/airflow/providers/common/io/.latest-doc-only-change.txt b/airflow/providers/common/io/.latest-doc-only-change.txt new file mode 100644 index 0000000000000..bf18406c45d80 --- /dev/null +++ b/airflow/providers/common/io/.latest-doc-only-change.txt @@ -0,0 +1 @@ +999b70178a1f5d891fd2c88af4831a4ba4c2cbc9 diff --git a/airflow/providers/common/sql/CHANGELOG.rst b/airflow/providers/common/sql/CHANGELOG.rst index ecc81309e2ac3..9631ebddf531e 100644 --- a/airflow/providers/common/sql/CHANGELOG.rst +++ b/airflow/providers/common/sql/CHANGELOG.rst @@ -25,6 +25,21 @@ Changelog --------- +1.10.0 +...... + +* ``Make "placeholder" of ODBC configurable in UI (#36000)`` + + +Bug Fixes +~~~~~~~~~ + +* ``Return common data structure in DBApi derived classes`` +* ``SQLCheckOperator fails if returns dict with any False values (#36273)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.9.0 ..... diff --git a/airflow/providers/common/sql/__init__.py b/airflow/providers/common/sql/__init__.py index fd3f73beee889..503d69906e449 100644 --- a/airflow/providers/common/sql/__init__.py +++ b/airflow/providers/common/sql/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.9.0" +__version__ = "1.9.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/common/sql/provider.yaml b/airflow/providers/common/sql/provider.yaml index 1a64721e2cf51..6da238491b327 100644 --- a/airflow/providers/common/sql/provider.yaml +++ b/airflow/providers/common/sql/provider.yaml @@ -24,7 +24,7 @@ description: | suspended: false source-date-epoch: 1701983370 versions: - - 1.9.1 + - 1.10.0 - 1.9.0 - 1.8.1 - 1.8.0 diff --git a/airflow/providers/databricks/CHANGELOG.rst b/airflow/providers/databricks/CHANGELOG.rst index b9746609a69c3..8e4aa5acbcac6 100644 --- a/airflow/providers/databricks/CHANGELOG.rst +++ b/airflow/providers/databricks/CHANGELOG.rst @@ -42,9 +42,12 @@ Misc ~~~~ * ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` +* ``fix typos in DatabricksSubmitRunOperator (#36248)`` +* ``Add code snippet formatting in docstrings via Ruff (#36262)`` .. Review and move the new changes to one of the sections above: * ``Prepare docs 1st wave of Providers December 2023 (#36112)`` + * ``Prepare docs 1st wave of Providers December 2023 RC2 (#36190)`` 5.0.1 ..... diff --git a/airflow/providers/databricks/provider.yaml b/airflow/providers/databricks/provider.yaml index 53c52bd02f196..4e518faa82ba1 100644 --- a/airflow/providers/databricks/provider.yaml +++ b/airflow/providers/databricks/provider.yaml @@ -59,7 +59,7 @@ versions: dependencies: - apache-airflow>=2.6.0 - - apache-airflow-providers-common-sql>=1.9.1 + - apache-airflow-providers-common-sql>=1.10.0 - requests>=2.27,<3 # The connector 2.9.0 released on Aug 10, 2023 has a bug that it does not properly declare urllib3 and # it needs to be excluded. See https://github.com/databricks/databricks-sql-python/issues/190 diff --git a/airflow/providers/datadog/CHANGELOG.rst b/airflow/providers/datadog/CHANGELOG.rst index 51cb03ec89cff..66007ad9d3fed 100644 --- a/airflow/providers/datadog/CHANGELOG.rst +++ b/airflow/providers/datadog/CHANGELOG.rst @@ -27,6 +27,18 @@ Changelog --------- +3.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.5.0 ..... diff --git a/airflow/providers/datadog/__init__.py b/airflow/providers/datadog/__init__.py index 0b93b016e287c..495854f24607e 100644 --- a/airflow/providers/datadog/__init__.py +++ b/airflow/providers/datadog/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/datadog/provider.yaml b/airflow/providers/datadog/provider.yaml index b828b63a9d90e..79cf6f47c96ce 100644 --- a/airflow/providers/datadog/provider.yaml +++ b/airflow/providers/datadog/provider.yaml @@ -22,8 +22,9 @@ description: | `Datadog `__ suspended: false -source-date-epoch: 1701983372 +source-date-epoch: 1703274984 versions: + - 3.5.1 - 3.5.0 - 3.4.0 - 3.3.2 diff --git a/airflow/providers/dbt/cloud/CHANGELOG.rst b/airflow/providers/dbt/cloud/CHANGELOG.rst index de28763f3c241..ca7c0d37741e6 100644 --- a/airflow/providers/dbt/cloud/CHANGELOG.rst +++ b/airflow/providers/dbt/cloud/CHANGELOG.rst @@ -28,6 +28,17 @@ Changelog --------- +3.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.5.0 ..... diff --git a/airflow/providers/dbt/cloud/__init__.py b/airflow/providers/dbt/cloud/__init__.py index be73affc1e65c..f37d4e469a8f0 100644 --- a/airflow/providers/dbt/cloud/__init__.py +++ b/airflow/providers/dbt/cloud/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/dbt/cloud/provider.yaml b/airflow/providers/dbt/cloud/provider.yaml index ab5b396b85b07..a20f9beae3299 100644 --- a/airflow/providers/dbt/cloud/provider.yaml +++ b/airflow/providers/dbt/cloud/provider.yaml @@ -22,8 +22,9 @@ description: | `dbt Cloud `__ suspended: false -source-date-epoch: 1701983373 +source-date-epoch: 1703274986 versions: + - 3.5.1 - 3.5.0 - 3.4.1 - 3.4.0 diff --git a/airflow/providers/docker/CHANGELOG.rst b/airflow/providers/docker/CHANGELOG.rst index 574daa5225786..7cbc1d190a5a1 100644 --- a/airflow/providers/docker/CHANGELOG.rst +++ b/airflow/providers/docker/CHANGELOG.rst @@ -27,6 +27,22 @@ Changelog --------- +3.9.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Allow DockerOperator.skip_on_exit_code to be zero (#36360)`` + +Misc +~~~~ + +* ``Remove remaining Airflow 2.5 backcompat code from Docker Provider (#36325)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.9.0 ..... diff --git a/airflow/providers/docker/__init__.py b/airflow/providers/docker/__init__.py index 0d9b34838ef5d..5524104c576ff 100644 --- a/airflow/providers/docker/__init__.py +++ b/airflow/providers/docker/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.9.0" +__version__ = "3.9.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/docker/provider.yaml b/airflow/providers/docker/provider.yaml index 64918c263e995..ee47ec0e5e938 100644 --- a/airflow/providers/docker/provider.yaml +++ b/airflow/providers/docker/provider.yaml @@ -22,8 +22,9 @@ description: | `Docker `__ suspended: false -source-date-epoch: 1701983376 +source-date-epoch: 1703275016 versions: + - 3.9.1 - 3.9.0 - 3.8.2 - 3.8.1 diff --git a/airflow/providers/exasol/CHANGELOG.rst b/airflow/providers/exasol/CHANGELOG.rst index cac5750b2dd43..46564b1da7c17 100644 --- a/airflow/providers/exasol/CHANGELOG.rst +++ b/airflow/providers/exasol/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +4.4.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Return common data structure in DBApi derived classes`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.4.0 ..... diff --git a/airflow/providers/exasol/__init__.py b/airflow/providers/exasol/__init__.py index d010c41f0f11e..dae16682dbcff 100644 --- a/airflow/providers/exasol/__init__.py +++ b/airflow/providers/exasol/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "4.4.0" +__version__ = "4.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/exasol/provider.yaml b/airflow/providers/exasol/provider.yaml index 89b399e428b28..92b3544932acc 100644 --- a/airflow/providers/exasol/provider.yaml +++ b/airflow/providers/exasol/provider.yaml @@ -22,8 +22,9 @@ description: | `Exasol `__ suspended: false -source-date-epoch: 1701983378 +source-date-epoch: 1703275027 versions: + - 4.4.1 - 4.4.0 - 4.3.0 - 4.2.5 @@ -52,7 +53,7 @@ versions: dependencies: - apache-airflow>=2.6.0 - - apache-airflow-providers-common-sql>=1.9.1 + - apache-airflow-providers-common-sql>=1.10.0 - pyexasol>=0.5.1 - pandas>=0.17.1 diff --git a/airflow/providers/ftp/.latest-doc-only-change.txt b/airflow/providers/ftp/.latest-doc-only-change.txt index 36cd4c153e278..a73023b333c27 100644 --- a/airflow/providers/ftp/.latest-doc-only-change.txt +++ b/airflow/providers/ftp/.latest-doc-only-change.txt @@ -1 +1 @@ -99534e47f330ce0efb96402629dda5b2a4f16e8f +e9ba37bb58da0e3d6739ec063f7160f50487d3b8 diff --git a/airflow/providers/github/CHANGELOG.rst b/airflow/providers/github/CHANGELOG.rst index b11ed78619482..bd07e4de40ea0 100644 --- a/airflow/providers/github/CHANGELOG.rst +++ b/airflow/providers/github/CHANGELOG.rst @@ -29,6 +29,17 @@ Changelog --------- +2.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 2.5.0 ..... diff --git a/airflow/providers/github/__init__.py b/airflow/providers/github/__init__.py index 441e42622e6cc..e54978de711bf 100644 --- a/airflow/providers/github/__init__.py +++ b/airflow/providers/github/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "2.5.0" +__version__ = "2.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/github/provider.yaml b/airflow/providers/github/provider.yaml index ddf76ccd202c1..4966ef1d0e082 100644 --- a/airflow/providers/github/provider.yaml +++ b/airflow/providers/github/provider.yaml @@ -29,8 +29,9 @@ dependencies: - PyGithub!=1.58 suspended: false -source-date-epoch: 1701983381 +source-date-epoch: 1703275061 versions: + - 2.5.1 - 2.5.0 - 2.4.0 - 2.3.2 diff --git a/airflow/providers/google/CHANGELOG.rst b/airflow/providers/google/CHANGELOG.rst index d69f28a05180c..364a927ff19dd 100644 --- a/airflow/providers/google/CHANGELOG.rst +++ b/airflow/providers/google/CHANGELOG.rst @@ -43,6 +43,10 @@ Features * ``Add support for service account impersonation with computeEngineSSHHook (google provider) and IAP tunnel (#35136)`` * ``Add Datascan Profiling (#35696)`` * ``Add overrides to template fields of Google Cloud Run Jobs Execute Operator (#36133)`` +* ``Implement deferrable mode for BeamRunJavaPipelineOperator (#36122)`` +* ``Add ability to run streaming Job for BeamRunPythonPipelineOperator in non deferrable mode (#36108)`` +* ``Add use_glob to GCSObjectExistenceSensor (#34137)`` + Bug Fixes ~~~~~~~~~ @@ -52,6 +56,11 @@ Bug Fixes * ``Fix gcs listing - ensure blobs are loaded (#34919)`` * ``allow multiple elements in impersonation chain (#35694)`` * ``Change retry type for Google Dataflow Client to async one (#36141)`` +* ``Minor fix to DataprocCreateClusterOperator operator docs. (#36322)`` +* ``fix(bigquery.py): pass correct project_id to triggerer (#35200)`` +* ``iterate through blobs before checking prefixes (#36202)`` +* ``Fix incompatibility with google-cloud-monitoring 2.18.0 (#36200)`` + * ``Update 'retry' param typing in PubSubAsyncHook (#36198)`` Misc ~~~~ @@ -60,13 +69,18 @@ Misc * ``Deprecate 'CloudComposerEnvironmentSensor' in favor of 'CloudComposerCreateEnvironmentOperator' with defer mode (#35775)`` * ``Follow BaseHook connection fields method signature in child classes (#36086)`` * ``Allow storage options to be passed (#35820)`` +* ``Add feature to build "chicken-egg" packages from sources (#35890)`` +* ``Remove remaining Airflow 2.5 backcompat code from Google Provider (#36366)`` +* ``Move KubernetesPodTrigger hook to a cached property (#36290)`` +* ``Add code snippet formatting in docstrings via Ruff (#36262)`` + .. Below changes are excluded from the changelog. Move them to appropriate section above if needed. Do not delete the lines(!): - * ``Add feature to build "chicken-egg" packages from sources (#35890)`` * ``Upgrade to latest pre-commit plugins (#36163)`` * ``Review and mark found potential SSH security issues by bandit (#36162)`` * ``Prepare docs 1st wave of Providers December 2023 (#36112)`` + * ``Prepare docs 1st wave of Providers December 2023 RC2 (#36190)`` 10.12.0 ....... diff --git a/airflow/providers/grpc/CHANGELOG.rst b/airflow/providers/grpc/CHANGELOG.rst index 53cba96049d04..a9d5c51201837 100644 --- a/airflow/providers/grpc/CHANGELOG.rst +++ b/airflow/providers/grpc/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.4.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.4.0 ..... diff --git a/airflow/providers/grpc/__init__.py b/airflow/providers/grpc/__init__.py index 4fb648497c220..60236064a38f7 100644 --- a/airflow/providers/grpc/__init__.py +++ b/airflow/providers/grpc/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.4.0" +__version__ = "3.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/grpc/provider.yaml b/airflow/providers/grpc/provider.yaml index fec069ea51505..32bb516d1c842 100644 --- a/airflow/providers/grpc/provider.yaml +++ b/airflow/providers/grpc/provider.yaml @@ -22,8 +22,9 @@ description: | `gRPC `__ suspended: false -source-date-epoch: 1701983384 +source-date-epoch: 1703275076 versions: + - 3.4.1 - 3.4.0 - 3.3.0 - 3.2.2 diff --git a/airflow/providers/hashicorp/CHANGELOG.rst b/airflow/providers/hashicorp/CHANGELOG.rst index 3802163036baa..d4d32bc5b12c3 100644 --- a/airflow/providers/hashicorp/CHANGELOG.rst +++ b/airflow/providers/hashicorp/CHANGELOG.rst @@ -27,6 +27,18 @@ Changelog --------- +3.6.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.6.0 ..... diff --git a/airflow/providers/hashicorp/__init__.py b/airflow/providers/hashicorp/__init__.py index 95da661001ccd..6d3838a913191 100644 --- a/airflow/providers/hashicorp/__init__.py +++ b/airflow/providers/hashicorp/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.6.0" +__version__ = "3.6.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/hashicorp/provider.yaml b/airflow/providers/hashicorp/provider.yaml index a8fcd93eec758..4e8f51e8343c8 100644 --- a/airflow/providers/hashicorp/provider.yaml +++ b/airflow/providers/hashicorp/provider.yaml @@ -22,8 +22,9 @@ description: | Hashicorp including `Hashicorp Vault `__ suspended: false -source-date-epoch: 1701983385 +source-date-epoch: 1703275079 versions: + - 3.6.1 - 3.6.0 - 3.5.0 - 3.4.3 diff --git a/airflow/providers/jdbc/CHANGELOG.rst b/airflow/providers/jdbc/CHANGELOG.rst index 0952857ff4e14..1cd811e307f0d 100644 --- a/airflow/providers/jdbc/CHANGELOG.rst +++ b/airflow/providers/jdbc/CHANGELOG.rst @@ -26,6 +26,17 @@ Changelog --------- +4.2.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.2.0 ..... diff --git a/airflow/providers/jdbc/__init__.py b/airflow/providers/jdbc/__init__.py index 2419e7567289f..be6fa294adfe4 100644 --- a/airflow/providers/jdbc/__init__.py +++ b/airflow/providers/jdbc/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "4.2.0" +__version__ = "4.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/jdbc/provider.yaml b/airflow/providers/jdbc/provider.yaml index 0b6d051c33ceb..e77bd4d1598ac 100644 --- a/airflow/providers/jdbc/provider.yaml +++ b/airflow/providers/jdbc/provider.yaml @@ -22,8 +22,9 @@ description: | `Java Database Connectivity (JDBC) `__ suspended: false -source-date-epoch: 1701983389 +source-date-epoch: 1703275081 versions: + - 4.2.1 - 4.2.0 - 4.1.0 - 4.0.2 diff --git a/airflow/providers/jenkins/CHANGELOG.rst b/airflow/providers/jenkins/CHANGELOG.rst index cd6554caf5dda..7e9211162fe7b 100644 --- a/airflow/providers/jenkins/CHANGELOG.rst +++ b/airflow/providers/jenkins/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.5.0 ..... diff --git a/airflow/providers/jenkins/__init__.py b/airflow/providers/jenkins/__init__.py index 92d7489f365ce..a485d3df1ca25 100644 --- a/airflow/providers/jenkins/__init__.py +++ b/airflow/providers/jenkins/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/jenkins/provider.yaml b/airflow/providers/jenkins/provider.yaml index 4f2700058a103..671977896d324 100644 --- a/airflow/providers/jenkins/provider.yaml +++ b/airflow/providers/jenkins/provider.yaml @@ -22,8 +22,9 @@ description: | `Jenkins `__ suspended: false -source-date-epoch: 1701983390 +source-date-epoch: 1703275084 versions: + - 3.5.1 - 3.5.0 - 3.4.0 - 3.3.2 diff --git a/airflow/providers/microsoft/azure/CHANGELOG.rst b/airflow/providers/microsoft/azure/CHANGELOG.rst index 86ae3085b0757..9469e7493a7fb 100644 --- a/airflow/providers/microsoft/azure/CHANGELOG.rst +++ b/airflow/providers/microsoft/azure/CHANGELOG.rst @@ -27,6 +27,28 @@ Changelog --------- +8.5.0 +..... + +Features +~~~~~~~~ + +* ``Allow storage options to be passed (#35820)`` + +Bug Fixes +~~~~~~~~~ + +* ``azurefilesharehook fix with connection type azure (#36309)`` +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +Misc +~~~~ + +* ``Add code snippet formatting in docstrings via Ruff (#36262)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 8.4.0 ..... diff --git a/airflow/providers/microsoft/azure/__init__.py b/airflow/providers/microsoft/azure/__init__.py index 5d1e83329c9eb..47b206a4857f2 100644 --- a/airflow/providers/microsoft/azure/__init__.py +++ b/airflow/providers/microsoft/azure/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "8.4.0" +__version__ = "8.5.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/microsoft/azure/provider.yaml b/airflow/providers/microsoft/azure/provider.yaml index e4f90cdfe0efd..cbcae121c3f67 100644 --- a/airflow/providers/microsoft/azure/provider.yaml +++ b/airflow/providers/microsoft/azure/provider.yaml @@ -20,8 +20,9 @@ name: Microsoft Azure description: | `Microsoft Azure `__ suspended: false -source-date-epoch: 1701983392 +source-date-epoch: 1703275092 versions: + - 8.5.0 - 8.4.0 - 8.3.0 - 8.2.0 diff --git a/airflow/providers/odbc/CHANGELOG.rst b/airflow/providers/odbc/CHANGELOG.rst index 4124c0d5a9ede..3af1d81ec7bc1 100644 --- a/airflow/providers/odbc/CHANGELOG.rst +++ b/airflow/providers/odbc/CHANGELOG.rst @@ -27,6 +27,22 @@ Changelog --------- +4.4.0 +..... + +Features +~~~~~~~~ + +* ``Make "placeholder" of ODBC configurable in UI (#36000)`` + +Bug Fixes +~~~~~~~~~ + +* ``Return common data structure in DBApi derived classes`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.3.0 ..... diff --git a/airflow/providers/odbc/__init__.py b/airflow/providers/odbc/__init__.py index 39b571f4b4ed5..995cec93e6800 100644 --- a/airflow/providers/odbc/__init__.py +++ b/airflow/providers/odbc/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "4.3.0" +__version__ = "4.4.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/odbc/provider.yaml b/airflow/providers/odbc/provider.yaml index 30e7f4f0cae5e..e8d084355a628 100644 --- a/airflow/providers/odbc/provider.yaml +++ b/airflow/providers/odbc/provider.yaml @@ -22,8 +22,9 @@ description: | `ODBC `__ suspended: false -source-date-epoch: 1701983399 +source-date-epoch: 1703275099 versions: + - 4.4.0 - 4.3.0 - 4.2.0 - 4.1.0 @@ -45,7 +46,7 @@ versions: dependencies: - apache-airflow>=2.6.0 - - apache-airflow-providers-common-sql>=1.9.1 + - apache-airflow-providers-common-sql>=1.10.0 - pyodbc integrations: diff --git a/airflow/providers/openlineage/CHANGELOG.rst b/airflow/providers/openlineage/CHANGELOG.rst index 2bf6dec9c1392..30cf9d8c5d880 100644 --- a/airflow/providers/openlineage/CHANGELOG.rst +++ b/airflow/providers/openlineage/CHANGELOG.rst @@ -26,6 +26,17 @@ Changelog --------- +1.3.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Fix typo. (#36362)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.3.0 ..... diff --git a/airflow/providers/openlineage/__init__.py b/airflow/providers/openlineage/__init__.py index 76366cb8cc0a7..39605dfe22102 100644 --- a/airflow/providers/openlineage/__init__.py +++ b/airflow/providers/openlineage/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.3.0" +__version__ = "1.3.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/openlineage/provider.yaml b/airflow/providers/openlineage/provider.yaml index ebfe31749bf5b..93fdeb3a9a0d1 100644 --- a/airflow/providers/openlineage/provider.yaml +++ b/airflow/providers/openlineage/provider.yaml @@ -22,8 +22,9 @@ description: | `OpenLineage `__ suspended: false -source-date-epoch: 1701983402 +source-date-epoch: 1703275122 versions: + - 1.3.1 - 1.3.0 - 1.2.1 - 1.2.0 diff --git a/airflow/providers/opensearch/CHANGELOG.rst b/airflow/providers/opensearch/CHANGELOG.rst index 7834a8471eabe..2afde8f2f16aa 100644 --- a/airflow/providers/opensearch/CHANGELOG.rst +++ b/airflow/providers/opensearch/CHANGELOG.rst @@ -23,6 +23,17 @@ ``apache-airflow-providers-opensearch`` +1.1.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.1.0 ..... diff --git a/airflow/providers/opensearch/__init__.py b/airflow/providers/opensearch/__init__.py index a43a3250cc6c4..9a2182890b2dc 100644 --- a/airflow/providers/opensearch/__init__.py +++ b/airflow/providers/opensearch/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/opensearch/provider.yaml b/airflow/providers/opensearch/provider.yaml index 66ccc2396e520..d6b113ac5625c 100644 --- a/airflow/providers/opensearch/provider.yaml +++ b/airflow/providers/opensearch/provider.yaml @@ -22,8 +22,9 @@ description: | `OpenSearch `__ suspended: false -source-date-epoch: 1701983402 +source-date-epoch: 1703275125 versions: + - 1.1.1 - 1.1.0 - 1.0.0 diff --git a/airflow/providers/oracle/CHANGELOG.rst b/airflow/providers/oracle/CHANGELOG.rst index fc38b70271e91..e160666885761 100644 --- a/airflow/providers/oracle/CHANGELOG.rst +++ b/airflow/providers/oracle/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.9.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Return common data structure in DBApi derived classes`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.9.0 ..... diff --git a/airflow/providers/oracle/__init__.py b/airflow/providers/oracle/__init__.py index bd65a3ea51797..b6a034ee9025b 100644 --- a/airflow/providers/oracle/__init__.py +++ b/airflow/providers/oracle/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.9.0" +__version__ = "3.9.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/oracle/provider.yaml b/airflow/providers/oracle/provider.yaml index 431a77a31ee20..9f15a5660853a 100644 --- a/airflow/providers/oracle/provider.yaml +++ b/airflow/providers/oracle/provider.yaml @@ -22,8 +22,9 @@ description: | `Oracle `__ suspended: false -source-date-epoch: 1701983404 +source-date-epoch: 1703275129 versions: + - 3.9.1 - 3.9.0 - 3.8.0 - 3.7.4 diff --git a/airflow/providers/pagerduty/CHANGELOG.rst b/airflow/providers/pagerduty/CHANGELOG.rst index eef5a9e3bf07b..fd1c0a41c0c9f 100644 --- a/airflow/providers/pagerduty/CHANGELOG.rst +++ b/airflow/providers/pagerduty/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.5.0 ..... diff --git a/airflow/providers/pagerduty/__init__.py b/airflow/providers/pagerduty/__init__.py index bfb5cdab7b8ec..cf6d0d0267841 100644 --- a/airflow/providers/pagerduty/__init__.py +++ b/airflow/providers/pagerduty/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.5.0" +__version__ = "3.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/pagerduty/provider.yaml b/airflow/providers/pagerduty/provider.yaml index 546ad7b9da428..98d654f4ad7f3 100644 --- a/airflow/providers/pagerduty/provider.yaml +++ b/airflow/providers/pagerduty/provider.yaml @@ -22,8 +22,9 @@ description: | `Pagerduty `__ suspended: false -source-date-epoch: 1701983405 +source-date-epoch: 1703275132 versions: + - 3.5.1 - 3.5.0 - 3.4.0 - 3.3.1 diff --git a/airflow/providers/pinecone/CHANGELOG.rst b/airflow/providers/pinecone/CHANGELOG.rst index d0177bb708044..e5750835d87f0 100644 --- a/airflow/providers/pinecone/CHANGELOG.rst +++ b/airflow/providers/pinecone/CHANGELOG.rst @@ -20,6 +20,17 @@ Changelog --------- +1.1.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.1.0 ..... diff --git a/airflow/providers/pinecone/__init__.py b/airflow/providers/pinecone/__init__.py index 90b09e1612ce0..ba557bce5b13d 100644 --- a/airflow/providers/pinecone/__init__.py +++ b/airflow/providers/pinecone/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.1.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/pinecone/provider.yaml b/airflow/providers/pinecone/provider.yaml index 0b7c4f5a57ac6..4f5ca6e4058a0 100644 --- a/airflow/providers/pinecone/provider.yaml +++ b/airflow/providers/pinecone/provider.yaml @@ -24,9 +24,10 @@ description: | `Pinecone `__ suspended: false -source-date-epoch: 1701983407 +source-date-epoch: 1703275134 versions: + - 1.1.1 - 1.1.0 - 1.0.0 diff --git a/airflow/providers/plexus/CHANGELOG.rst b/airflow/providers/plexus/CHANGELOG.rst index 6fcdbe33ae728..d576f7ef30c71 100644 --- a/airflow/providers/plexus/CHANGELOG.rst +++ b/airflow/providers/plexus/CHANGELOG.rst @@ -27,6 +27,21 @@ Changelog --------- +3.4.1 +..... + +.. note:: + + Mark plexus provider as removed according to `consensus on the dev@airflow.apache.org `_ + +Misc +~~~~ + +* ``Schedule plexus and apache.sqoop providers for removal (#36208)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.4.0 ..... diff --git a/airflow/providers/plexus/provider.yaml b/airflow/providers/plexus/provider.yaml index 64752b5fd53cf..ca4f4326d256c 100644 --- a/airflow/providers/plexus/provider.yaml +++ b/airflow/providers/plexus/provider.yaml @@ -23,8 +23,9 @@ description: | removed: true suspended: true -source-date-epoch: 1701983408 +source-date-epoch: 1703275139 versions: + - 3.4.1 - 3.4.0 - 3.3.0 - 3.2.2 diff --git a/airflow/providers/postgres/CHANGELOG.rst b/airflow/providers/postgres/CHANGELOG.rst index 9fcf7a4c25d34..80007fa2b7363 100644 --- a/airflow/providers/postgres/CHANGELOG.rst +++ b/airflow/providers/postgres/CHANGELOG.rst @@ -27,6 +27,24 @@ Changelog --------- +5.10.0 +...... + +Features +~~~~~~~~ + +* ``Make "placeholder" of ODBC configurable in UI (#36000)`` + + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 5.9.0 ..... diff --git a/airflow/providers/postgres/__init__.py b/airflow/providers/postgres/__init__.py index e1120683ab6ff..6f806029f2683 100644 --- a/airflow/providers/postgres/__init__.py +++ b/airflow/providers/postgres/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "5.9.0" +__version__ = "5.10.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/postgres/provider.yaml b/airflow/providers/postgres/provider.yaml index 216d12d91ba4e..e950868962e4d 100644 --- a/airflow/providers/postgres/provider.yaml +++ b/airflow/providers/postgres/provider.yaml @@ -22,8 +22,9 @@ description: | `PostgreSQL `__ suspended: false -source-date-epoch: 1701983409 +source-date-epoch: 1703275145 versions: + - 5.10.0 - 5.9.0 - 5.8.0 - 5.7.1 diff --git a/airflow/providers/presto/CHANGELOG.rst b/airflow/providers/presto/CHANGELOG.rst index 8aca736811ab1..5136c40603d33 100644 --- a/airflow/providers/presto/CHANGELOG.rst +++ b/airflow/providers/presto/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +5.4.0 +..... + +Features +~~~~~~~~ + +* ``Make "placeholder" of ODBC configurable in UI (#36000)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 5.3.0 ..... diff --git a/airflow/providers/presto/__init__.py b/airflow/providers/presto/__init__.py index e3f50fdb2a60c..f81a54c120abc 100644 --- a/airflow/providers/presto/__init__.py +++ b/airflow/providers/presto/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "5.3.0" +__version__ = "5.4.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/presto/provider.yaml b/airflow/providers/presto/provider.yaml index 4572db23ffae1..7ac645ce859ae 100644 --- a/airflow/providers/presto/provider.yaml +++ b/airflow/providers/presto/provider.yaml @@ -22,8 +22,9 @@ description: | `Presto `__ suspended: false -source-date-epoch: 1701983410 +source-date-epoch: 1703275149 versions: + - 5.4.0 - 5.3.0 - 5.2.1 - 5.2.0 diff --git a/airflow/providers/salesforce/CHANGELOG.rst b/airflow/providers/salesforce/CHANGELOG.rst index 2062ec54027da..cf3b68c815fb1 100644 --- a/airflow/providers/salesforce/CHANGELOG.rst +++ b/airflow/providers/salesforce/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +5.6.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 5.6.0 ..... diff --git a/airflow/providers/salesforce/__init__.py b/airflow/providers/salesforce/__init__.py index 94b29414be3c7..998314129a8d1 100644 --- a/airflow/providers/salesforce/__init__.py +++ b/airflow/providers/salesforce/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "5.6.0" +__version__ = "5.6.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/salesforce/provider.yaml b/airflow/providers/salesforce/provider.yaml index 3aff69018a424..2249a124b7b04 100644 --- a/airflow/providers/salesforce/provider.yaml +++ b/airflow/providers/salesforce/provider.yaml @@ -22,8 +22,9 @@ description: | `Salesforce `__ suspended: false -source-date-epoch: 1701983412 +source-date-epoch: 1703275154 versions: + - 5.6.1 - 5.6.0 - 5.5.1 - 5.5.0 diff --git a/airflow/providers/sftp/CHANGELOG.rst b/airflow/providers/sftp/CHANGELOG.rst index 380ddae8874b0..4757b29272757 100644 --- a/airflow/providers/sftp/CHANGELOG.rst +++ b/airflow/providers/sftp/CHANGELOG.rst @@ -27,6 +27,23 @@ Changelog --------- +4.8.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``change warnning message (#36148)`` +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +Misc +~~~~ + +* ``Add code snippet formatting in docstrings via Ruff (#36262)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 4.8.0 ..... diff --git a/airflow/providers/sftp/__init__.py b/airflow/providers/sftp/__init__.py index eb598b9f37f98..eb198d063ee0b 100644 --- a/airflow/providers/sftp/__init__.py +++ b/airflow/providers/sftp/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "4.8.0" +__version__ = "4.8.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/sftp/provider.yaml b/airflow/providers/sftp/provider.yaml index fe5faf7930a3e..fca0b5257e987 100644 --- a/airflow/providers/sftp/provider.yaml +++ b/airflow/providers/sftp/provider.yaml @@ -22,8 +22,9 @@ description: | `SSH File Transfer Protocol (SFTP) `__ suspended: false -source-date-epoch: 1701983416 +source-date-epoch: 1703275166 versions: + - 4.8.1 - 4.8.0 - 4.7.0 - 4.6.1 diff --git a/airflow/providers/slack/CHANGELOG.rst b/airflow/providers/slack/CHANGELOG.rst index 1b144ba917432..5464429354a29 100644 --- a/airflow/providers/slack/CHANGELOG.rst +++ b/airflow/providers/slack/CHANGELOG.rst @@ -27,6 +27,18 @@ Changelog --------- +8.5.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Slack: Remove parameter 'token' in SlackAPIPostOperator's docstring (#36121)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 8.5.0 ..... diff --git a/airflow/providers/slack/__init__.py b/airflow/providers/slack/__init__.py index 6dd5bca37dfa9..72cdef22e90fc 100644 --- a/airflow/providers/slack/__init__.py +++ b/airflow/providers/slack/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "8.5.0" +__version__ = "8.5.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/slack/provider.yaml b/airflow/providers/slack/provider.yaml index 6292dd87c4490..5ec48011cb4b0 100644 --- a/airflow/providers/slack/provider.yaml +++ b/airflow/providers/slack/provider.yaml @@ -25,8 +25,9 @@ description: | - `Slack Incoming Webhook `__ suspended: false -source-date-epoch: 1701983418 +source-date-epoch: 1703275188 versions: + - 8.5.1 - 8.5.0 - 8.4.0 - 8.3.0 diff --git a/airflow/providers/smtp/CHANGELOG.rst b/airflow/providers/smtp/CHANGELOG.rst index 162c8d5b1ab9f..c2ec1c1a27898 100644 --- a/airflow/providers/smtp/CHANGELOG.rst +++ b/airflow/providers/smtp/CHANGELOG.rst @@ -27,6 +27,22 @@ Changelog --------- +1.6.0 +..... + +Features +~~~~~~~~ + +* ``Modify SmtpNotifier to accept template with defaults (#36226)`` + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.5.0 ..... diff --git a/airflow/providers/smtp/__init__.py b/airflow/providers/smtp/__init__.py index 8da1e5bb9c70b..959272afbfd34 100644 --- a/airflow/providers/smtp/__init__.py +++ b/airflow/providers/smtp/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.5.0" +__version__ = "1.6.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/smtp/provider.yaml b/airflow/providers/smtp/provider.yaml index 3b55a3b0f81da..c0476c2ebdea1 100644 --- a/airflow/providers/smtp/provider.yaml +++ b/airflow/providers/smtp/provider.yaml @@ -23,8 +23,9 @@ description: | `Simple Mail Transfer Protocol (SMTP) `__ suspended: false -source-date-epoch: 1701983419 +source-date-epoch: 1703275193 versions: + - 1.6.0 - 1.5.0 - 1.4.1 - 1.4.0 diff --git a/airflow/providers/snowflake/CHANGELOG.rst b/airflow/providers/snowflake/CHANGELOG.rst index f496d1679da1a..b3cb41a19bfaf 100644 --- a/airflow/providers/snowflake/CHANGELOG.rst +++ b/airflow/providers/snowflake/CHANGELOG.rst @@ -27,6 +27,19 @@ Changelog --------- +5.2.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Return common data structure in DBApi derived classes`` +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 5.2.0 ..... diff --git a/airflow/providers/snowflake/__init__.py b/airflow/providers/snowflake/__init__.py index a021a0f5f461a..82a9df04b4c32 100644 --- a/airflow/providers/snowflake/__init__.py +++ b/airflow/providers/snowflake/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "5.2.0" +__version__ = "5.2.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/snowflake/provider.yaml b/airflow/providers/snowflake/provider.yaml index ee6fa214acc14..9419344f282fe 100644 --- a/airflow/providers/snowflake/provider.yaml +++ b/airflow/providers/snowflake/provider.yaml @@ -22,8 +22,9 @@ description: | `Snowflake `__ suspended: false -source-date-epoch: 1701983420 +source-date-epoch: 1703275200 versions: + - 5.2.1 - 5.2.0 - 5.1.2 - 5.1.1 @@ -67,7 +68,7 @@ versions: dependencies: - apache-airflow>=2.6.0 - - apache-airflow-providers-common-sql>=1.9.1 + - apache-airflow-providers-common-sql>=1.10.0 - snowflake-connector-python>=2.7.8 - snowflake-sqlalchemy>=1.1.0 diff --git a/airflow/providers/sqlite/CHANGELOG.rst b/airflow/providers/sqlite/CHANGELOG.rst index 127cf5321f4cf..8296a036115df 100644 --- a/airflow/providers/sqlite/CHANGELOG.rst +++ b/airflow/providers/sqlite/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.7.0 +..... + +Features +~~~~~~~~ + +* ``Make "placeholder" of ODBC configurable in UI (#36000)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.6.0 ..... diff --git a/airflow/providers/sqlite/__init__.py b/airflow/providers/sqlite/__init__.py index 2c216354a6aa8..765253a96f89f 100644 --- a/airflow/providers/sqlite/__init__.py +++ b/airflow/providers/sqlite/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.6.0" +__version__ = "3.7.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/sqlite/provider.yaml b/airflow/providers/sqlite/provider.yaml index e1028dbe57232..b24723e029211 100644 --- a/airflow/providers/sqlite/provider.yaml +++ b/airflow/providers/sqlite/provider.yaml @@ -22,8 +22,9 @@ description: | `SQLite `__ suspended: false -source-date-epoch: 1701983422 +source-date-epoch: 1703275204 versions: + - 3.7.0 - 3.6.0 - 3.5.0 - 3.4.3 diff --git a/airflow/providers/ssh/CHANGELOG.rst b/airflow/providers/ssh/CHANGELOG.rst index 400eb5b92f4ee..1d410a0357cf3 100644 --- a/airflow/providers/ssh/CHANGELOG.rst +++ b/airflow/providers/ssh/CHANGELOG.rst @@ -27,6 +27,29 @@ Changelog --------- +3.10.0 +...... + +Features +~~~~~~~~ + +* ``Add skip_on_exit_code to SSHOperator (#36303)`` + +Bug Fixes +~~~~~~~~~ + +* ``Allow SSHOperator.skip_on_exit_code to be zero (#36358)`` +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + + +Misc +~~~~ + +* ``Review and mark found potential SSH security issues by bandit (#36162)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.9.0 ..... diff --git a/airflow/providers/ssh/__init__.py b/airflow/providers/ssh/__init__.py index fc86cd74b5cf4..ce621c2828521 100644 --- a/airflow/providers/ssh/__init__.py +++ b/airflow/providers/ssh/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.9.0" +__version__ = "3.9.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/ssh/provider.yaml b/airflow/providers/ssh/provider.yaml index 710f6bfe21f36..97ad9fbd6999d 100644 --- a/airflow/providers/ssh/provider.yaml +++ b/airflow/providers/ssh/provider.yaml @@ -22,8 +22,9 @@ description: | `Secure Shell (SSH) `__ suspended: false -source-date-epoch: 1701983423 +source-date-epoch: 1703275219 versions: + - 3.10.0 - 3.9.0 - 3.8.1 - 3.8.0 diff --git a/airflow/providers/tabular/CHANGELOG.rst b/airflow/providers/tabular/CHANGELOG.rst index 1a735e1819010..9f320efec2a97 100644 --- a/airflow/providers/tabular/CHANGELOG.rst +++ b/airflow/providers/tabular/CHANGELOG.rst @@ -26,6 +26,17 @@ Changelog --------- +1.4.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.4.0 ..... diff --git a/airflow/providers/tabular/__init__.py b/airflow/providers/tabular/__init__.py index 273021960b67a..eaa8e42ebd5a1 100644 --- a/airflow/providers/tabular/__init__.py +++ b/airflow/providers/tabular/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.4.0" +__version__ = "1.4.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/tabular/provider.yaml b/airflow/providers/tabular/provider.yaml index 6d02135d5c4e1..7ddbc91bf9f78 100644 --- a/airflow/providers/tabular/provider.yaml +++ b/airflow/providers/tabular/provider.yaml @@ -22,8 +22,9 @@ description: | `Tabular `__ suspended: false -source-date-epoch: 1701983425 +source-date-epoch: 1703275225 versions: + - 1.4.1 - 1.4.0 - 1.3.0 - 1.2.1 diff --git a/airflow/providers/trino/CHANGELOG.rst b/airflow/providers/trino/CHANGELOG.rst index 5e188ca0535e9..97620c3b1f616 100644 --- a/airflow/providers/trino/CHANGELOG.rst +++ b/airflow/providers/trino/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +5.6.0 +..... + +Features +~~~~~~~~ + +* ``Make "placeholder" of ODBC configurable in UI (#36000)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 5.5.0 ..... diff --git a/airflow/providers/trino/__init__.py b/airflow/providers/trino/__init__.py index ce3c20c69439c..af78028d8846d 100644 --- a/airflow/providers/trino/__init__.py +++ b/airflow/providers/trino/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "5.5.0" +__version__ = "5.6.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/trino/provider.yaml b/airflow/providers/trino/provider.yaml index 78fc443f11489..2f472a9168a90 100644 --- a/airflow/providers/trino/provider.yaml +++ b/airflow/providers/trino/provider.yaml @@ -22,8 +22,9 @@ description: | `Trino `__ suspended: false -source-date-epoch: 1701983427 +source-date-epoch: 1703275228 versions: + - 5.6.0 - 5.5.0 - 5.4.1 - 5.4.0 diff --git a/airflow/providers/weaviate/CHANGELOG.rst b/airflow/providers/weaviate/CHANGELOG.rst index 0e4ba2d252a0d..4d9c6cabf733a 100644 --- a/airflow/providers/weaviate/CHANGELOG.rst +++ b/airflow/providers/weaviate/CHANGELOG.rst @@ -20,6 +20,23 @@ Changelog --------- +1.2.0 +..... + +Features +~~~~~~~~ + +* ``Add helper function for CRUD operations on weaviate's schema and class objects (#35919)`` +* ``Add retry mechanism and dataframe support for WeaviateIngestOperator (#36085)`` + +Bug Fixes +~~~~~~~~~ + +* ``Fixing template_fields for WeaviateIngestOperator (#36359)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 1.1.0 ..... diff --git a/airflow/providers/weaviate/__init__.py b/airflow/providers/weaviate/__init__.py index 228fef7804723..9111aaae500fb 100644 --- a/airflow/providers/weaviate/__init__.py +++ b/airflow/providers/weaviate/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "1.1.0" +__version__ = "1.2.0" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/weaviate/provider.yaml b/airflow/providers/weaviate/provider.yaml index efbf6a4793fd5..1cd0c20e02de7 100644 --- a/airflow/providers/weaviate/provider.yaml +++ b/airflow/providers/weaviate/provider.yaml @@ -24,9 +24,10 @@ description: | `Weaviate `__ suspended: false -source-date-epoch: 1701983428 +source-date-epoch: 1703275235 versions: + - 1.2.0 - 1.1.0 - 1.0.0 diff --git a/airflow/providers/yandex/CHANGELOG.rst b/airflow/providers/yandex/CHANGELOG.rst index a9a68cfe039af..7a8e10c6ae7d2 100644 --- a/airflow/providers/yandex/CHANGELOG.rst +++ b/airflow/providers/yandex/CHANGELOG.rst @@ -27,6 +27,17 @@ Changelog --------- +3.7.1 +..... + +Bug Fixes +~~~~~~~~~ + +* ``Follow BaseHook connection fields method signature in child classes (#36086)`` + +.. Below changes are excluded from the changelog. Move them to + appropriate section above if needed. Do not delete the lines(!): + 3.7.0 ..... diff --git a/airflow/providers/yandex/__init__.py b/airflow/providers/yandex/__init__.py index 380886335cd4f..aab8d4e991561 100644 --- a/airflow/providers/yandex/__init__.py +++ b/airflow/providers/yandex/__init__.py @@ -27,7 +27,7 @@ __all__ = ["__version__"] -__version__ = "3.7.0" +__version__ = "3.7.1" try: from airflow import __version__ as airflow_version diff --git a/airflow/providers/yandex/provider.yaml b/airflow/providers/yandex/provider.yaml index ecff8ad84aa8d..bbbb3c022ec20 100644 --- a/airflow/providers/yandex/provider.yaml +++ b/airflow/providers/yandex/provider.yaml @@ -21,8 +21,9 @@ name: Yandex description: | Yandex including `Yandex.Cloud `__ suspended: false -source-date-epoch: 1701983429 +source-date-epoch: 1703275238 versions: + - 3.7.1 - 3.7.0 - 3.6.0 - 3.5.0 diff --git a/docs/apache-airflow-providers-airbyte/commits.rst b/docs/apache-airflow-providers-airbyte/commits.rst index b30442ebd14bc..f3b7316e5fc75 100644 --- a/docs/apache-airflow-providers-airbyte/commits.rst +++ b/docs/apache-airflow-providers-airbyte/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-16 ``Cancel airbyte job when timeout exceeded to prevent inconsistency among airflow and airbyte (#36241)`` +================================================================================================= =========== ======================================================================================================== + 3.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `c905fe88de `_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` diff --git a/docs/apache-airflow-providers-airbyte/index.rst b/docs/apache-airflow-providers-airbyte/index.rst index 34aff0040e11d..8a86434313001 100644 --- a/docs/apache-airflow-providers-airbyte/index.rst +++ b/docs/apache-airflow-providers-airbyte/index.rst @@ -76,7 +76,7 @@ Package apache-airflow-providers-airbyte `Airbyte `__ -Release: 3.5.0 +Release: 3.5.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 `_ -* `The apache-airflow-providers-airbyte 3.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-airbyte 3.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-airbyte 3.5.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-airbyte 3.5.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-amazon/commits.rst b/docs/apache-airflow-providers-amazon/commits.rst index 1f101ed675a78..53e7f794237ac 100644 --- a/docs/apache-airflow-providers-amazon/commits.rst +++ b/docs/apache-airflow-providers-amazon/commits.rst @@ -35,14 +35,33 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Increase ConflictException retries to 4 total (#36337)`` +`30afa46e90 `_ 2023-12-21 ``Increase width of execution_date input in trigger.html (#36278) (#36304)`` +`2b31f373ef `_ 2023-12-20 ``Remove remaining Airflow 2.6 backcompat code from Amazon Provider (#36324)`` +`e9ba37bb58 `_ 2023-12-17 ``Add code snippet formatting in docstrings via Ruff (#36262)`` +`357355ac09 `_ 2023-12-11 ``Remove 'is_authorized_cluster_activity' from auth manager (#36175)`` +`e37fe8f576 `_ 2023-12-11 ``Add 'jsonpath_ng.ext.parse' support for 'SqsSensor' (#36170)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +`aba58adb83 `_ 2023-12-08 ``Allow storage options to be passed (#35820)`` +================================================================================================= =========== ================================================================================ + 8.13.0 ...... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ============================================================================================================ Commit Committed Subject ================================================================================================= =========== ============================================================================================================ +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `7329e9eed9 `_ 2023-12-07 ``Fix for 'EksCreateClusterOperator' deferrable mode (#36079)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `ef5eebdb26 `_ 2023-12-06 ``Fix AWS system tests (#36091)`` diff --git a/docs/apache-airflow-providers-amazon/index.rst b/docs/apache-airflow-providers-amazon/index.rst index 520d25ec17fb2..7dd5cb933e18d 100644 --- a/docs/apache-airflow-providers-amazon/index.rst +++ b/docs/apache-airflow-providers-amazon/index.rst @@ -84,7 +84,7 @@ Package apache-airflow-providers-amazon Amazon integration (including `Amazon Web Services (AWS) `__). -Release: 8.13.0 +Release: 8.14.0 Provider package ---------------- @@ -157,5 +157,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-amazon 8.13.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-amazon 8.13.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-amazon 8.14.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-amazon 8.14.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-apache-beam/commits.rst b/docs/apache-airflow-providers-apache-beam/commits.rst index 51e376fa65f9a..d4c59574c961a 100644 --- a/docs/apache-airflow-providers-apache-beam/commits.rst +++ b/docs/apache-airflow-providers-apache-beam/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-19 ``Implement deferrable mode for BeamRunJavaPipelineOperator (#36122)`` +`d793fda391 `_ 2023-12-18 ``Add ability to run streaming Job for BeamRunPythonPipelineOperator in non deferrable mode (#36108)`` +================================================================================================= =========== ====================================================================================================== + 5.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-apache-beam/index.rst b/docs/apache-airflow-providers-apache-beam/index.rst index 0abeb511e02ce..917b6bf4e0fe2 100644 --- a/docs/apache-airflow-providers-apache-beam/index.rst +++ b/docs/apache-airflow-providers-apache-beam/index.rst @@ -75,7 +75,7 @@ Package apache-airflow-providers-apache-beam `Apache Beam `__. -Release: 5.4.0 +Release: 5.5.0 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 `_ -* `The apache-airflow-providers-apache-beam 5.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-beam 5.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-beam 5.5.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-beam 5.5.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-apache-cassandra/commits.rst b/docs/apache-airflow-providers-apache-cassandra/commits.rst index d37864fde3b01..a9b38eaef1190 100644 --- a/docs/apache-airflow-providers-apache-cassandra/commits.rst +++ b/docs/apache-airflow-providers-apache-cassandra/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-17 ``Add code snippet formatting in docstrings via Ruff (#36262)`` +`6b5a4aac6b `_ 2023-12-16 ``Sanitize keyspace and table in the cassandra query to avoid sql injection (#36111)`` +================================================================================================= =========== ====================================================================================== + 3.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `c905fe88de `_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` diff --git a/docs/apache-airflow-providers-apache-cassandra/index.rst b/docs/apache-airflow-providers-apache-cassandra/index.rst index a92ee77a87199..53da4487dbedb 100644 --- a/docs/apache-airflow-providers-apache-cassandra/index.rst +++ b/docs/apache-airflow-providers-apache-cassandra/index.rst @@ -76,7 +76,7 @@ Package apache-airflow-providers-apache-cassandra `Apache Cassandra `__. -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-hdfs/commits.rst b/docs/apache-airflow-providers-apache-hdfs/commits.rst index abbc5697e31f5..6e0ffa5d4cd4a 100644 --- a/docs/apache-airflow-providers-apache-hdfs/commits.rst +++ b/docs/apache-airflow-providers-apache-hdfs/commits.rst @@ -36,14 +36,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-12 ``fix connection type webhdfs (#36145)`` +================================================================================================= =========== ======================================== + 4.3.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ==================================================================================== Commit Committed Subject ================================================================================================= =========== ==================================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-apache-hdfs/index.rst b/docs/apache-airflow-providers-apache-hdfs/index.rst index 3f50afdcf59fc..18b5b83bc9d72 100644 --- a/docs/apache-airflow-providers-apache-hdfs/index.rst +++ b/docs/apache-airflow-providers-apache-hdfs/index.rst @@ -65,7 +65,7 @@ Package apache-airflow-providers-apache-hdfs and `WebHDFS `__. -Release: 4.3.0 +Release: 4.3.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-hive/commits.rst b/docs/apache-airflow-providers-apache-hive/commits.rst index e909d2214fdb2..86ea7cfd9c8d4 100644 --- a/docs/apache-airflow-providers-apache-hive/commits.rst +++ b/docs/apache-airflow-providers-apache-hive/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-19 ``Add param proxy user for hive (#36221)`` +`e9ba37bb58 `_ 2023-12-17 ``Add code snippet formatting in docstrings via Ruff (#36262)`` +================================================================================================= =========== =============================================================== + 6.3.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-apache-hive/index.rst b/docs/apache-airflow-providers-apache-hive/index.rst index 7b9f61b0f2a22..427fcb55a7b9b 100644 --- a/docs/apache-airflow-providers-apache-hive/index.rst +++ b/docs/apache-airflow-providers-apache-hive/index.rst @@ -79,7 +79,7 @@ Package apache-airflow-providers-apache-hive `Apache Hive `__ -Release: 6.3.0 +Release: 6.4.0 Provider package ---------------- @@ -141,5 +141,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-apache-hive 6.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-hive 6.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-hive 6.4.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-hive 6.4.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-apache-kafka/commits.rst b/docs/apache-airflow-providers-apache-kafka/commits.rst index 5c41055375a82..45f0a916f0ba8 100644 --- a/docs/apache-airflow-providers-apache-kafka/commits.rst +++ b/docs/apache-airflow-providers-apache-kafka/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-18 ``Provide the consumed message to consumer.commit in AwaitMessageTrigger (#36272)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== =================================================================================== + 1.3.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-apache-kafka/index.rst b/docs/apache-airflow-providers-apache-kafka/index.rst index 0014fae4144ee..b71145dca30ba 100644 --- a/docs/apache-airflow-providers-apache-kafka/index.rst +++ b/docs/apache-airflow-providers-apache-kafka/index.rst @@ -82,7 +82,7 @@ Package apache-airflow-providers-apache-kafka `Apache Kafka `__ -Release: 1.3.0 +Release: 1.3.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-apache-spark/commits.rst b/docs/apache-airflow-providers-apache-spark/commits.rst index e40f716f4eda3..d766ffd9ea38c 100644 --- a/docs/apache-airflow-providers-apache-spark/commits.rst +++ b/docs/apache-airflow-providers-apache-spark/commits.rst @@ -35,14 +35,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-13 ``SparkSubmit Connection Extras can be overridden (#36151)`` +`195abf8f71 `_ 2023-12-11 ``SparkSubmit: Adding propertyfiles option (#36164)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 4.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-apache-spark/index.rst b/docs/apache-airflow-providers-apache-spark/index.rst index 398b205d171ef..7bc8959b63c1d 100644 --- a/docs/apache-airflow-providers-apache-spark/index.rst +++ b/docs/apache-airflow-providers-apache-spark/index.rst @@ -77,7 +77,7 @@ Package apache-airflow-providers-apache-spark `Apache Spark `__ -Release: 4.5.0 +Release: 4.6.0 Provider package ---------------- @@ -130,5 +130,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-apache-spark 4.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-apache-spark 4.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-spark 4.6.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-apache-spark 4.6.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-apache-sqoop/commits.rst b/docs/apache-airflow-providers-apache-sqoop/commits.rst index 2d5e380890e54..ce1fc492f19ad 100644 --- a/docs/apache-airflow-providers-apache-sqoop/commits.rst +++ b/docs/apache-airflow-providers-apache-sqoop/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-13 ``Schedule plexus and apache.sqoop providers for removal (#36208)`` +================================================================================================= =========== =================================================================== + 4.2.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-apache-sqoop/index.rst b/docs/apache-airflow-providers-apache-sqoop/index.rst index fe7152bca3006..7a3a74514591a 100644 --- a/docs/apache-airflow-providers-apache-sqoop/index.rst +++ b/docs/apache-airflow-providers-apache-sqoop/index.rst @@ -62,7 +62,7 @@ Package apache-airflow-providers-apache-sqoop `Apache Sqoop `__ -Release: 4.2.0 +Release: 4.2.1 Provider package ---------------- @@ -70,6 +70,14 @@ Provider package This is a provider package for ``apache.sqoop`` provider. All classes for this provider package are in ``airflow.providers.apache.sqoop`` python package. + .. warning:: + + This provider is not maintained anymore by the community. It has been removed and is not going to be + updated anymore. The removal was done according to the process described in + `Removing community providers `_ + + Feel free to contact Airflow Development Mailing List if you have any questions. + Installation ------------ diff --git a/docs/apache-airflow-providers-apprise/commits.rst b/docs/apache-airflow-providers-apprise/commits.rst index aa35fd8e2fc8f..ab0cbfd2535c5 100644 --- a/docs/apache-airflow-providers-apprise/commits.rst +++ b/docs/apache-airflow-providers-apprise/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 1.2.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-apprise/index.rst b/docs/apache-airflow-providers-apprise/index.rst index c15d3842bf978..da32c64a0d6b2 100644 --- a/docs/apache-airflow-providers-apprise/index.rst +++ b/docs/apache-airflow-providers-apprise/index.rst @@ -99,7 +99,7 @@ Package apache-airflow-providers-apprise `Apprise `__ -Release: 1.2.0 +Release: 1.2.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-arangodb/commits.rst b/docs/apache-airflow-providers-arangodb/commits.rst index 0009969c55fc4..20168e3a13bdc 100644 --- a/docs/apache-airflow-providers-arangodb/commits.rst +++ b/docs/apache-airflow-providers-arangodb/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 2.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-arangodb/index.rst b/docs/apache-airflow-providers-arangodb/index.rst index 0657c8c0d06c9..5d03ad198bd69 100644 --- a/docs/apache-airflow-providers-arangodb/index.rst +++ b/docs/apache-airflow-providers-arangodb/index.rst @@ -76,7 +76,7 @@ Package apache-airflow-providers-arangodb `ArangoDB `__ -Release: 2.4.0 +Release: 2.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-asana/commits.rst b/docs/apache-airflow-providers-asana/commits.rst index 0c5cfe0646ace..19098e59bb54a 100644 --- a/docs/apache-airflow-providers-asana/commits.rst +++ b/docs/apache-airflow-providers-asana/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 2.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `c905fe88de `_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` diff --git a/docs/apache-airflow-providers-asana/index.rst b/docs/apache-airflow-providers-asana/index.rst index 88fff80b9fed9..ed7beba29e9c4 100644 --- a/docs/apache-airflow-providers-asana/index.rst +++ b/docs/apache-airflow-providers-asana/index.rst @@ -77,7 +77,7 @@ Package apache-airflow-providers-asana `Asana `__ -Release: 2.4.0 +Release: 2.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-celery/commits.rst b/docs/apache-airflow-providers-celery/commits.rst index f4399d80f6a65..8507cc73ddb5d 100644 --- a/docs/apache-airflow-providers-celery/commits.rst +++ b/docs/apache-airflow-providers-celery/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-20 ``Fix 'sentinel_kwargs' load from ENV (#36318)`` +================================================================================================= =========== ================================================ + 3.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `c905fe88de `_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` diff --git a/docs/apache-airflow-providers-celery/index.rst b/docs/apache-airflow-providers-celery/index.rst index 2b78943a31f8f..1dd2909905bbe 100644 --- a/docs/apache-airflow-providers-celery/index.rst +++ b/docs/apache-airflow-providers-celery/index.rst @@ -57,7 +57,7 @@ Package apache-airflow-providers-celery `Celery `__ -Release: 3.5.0 +Release: 3.5.1 Provider package ---------------- @@ -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 `_ -* `The apache-airflow-providers-celery 3.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-celery 3.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-celery 3.5.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-celery 3.5.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-cloudant/commits.rst b/docs/apache-airflow-providers-cloudant/commits.rst index 538015eb317ba..1cfb2f1e6b30f 100644 --- a/docs/apache-airflow-providers-cloudant/commits.rst +++ b/docs/apache-airflow-providers-cloudant/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-cloudant/index.rst b/docs/apache-airflow-providers-cloudant/index.rst index 1133fab231862..be3ced901e952 100644 --- a/docs/apache-airflow-providers-cloudant/index.rst +++ b/docs/apache-airflow-providers-cloudant/index.rst @@ -55,7 +55,7 @@ Package apache-airflow-providers-cloudant `IBM Cloudant `__ -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-cncf-kubernetes/commits.rst b/docs/apache-airflow-providers-cncf-kubernetes/commits.rst index 233b4559ec9a4..0726eec33514e 100644 --- a/docs/apache-airflow-providers-cncf-kubernetes/commits.rst +++ b/docs/apache-airflow-providers-cncf-kubernetes/commits.rst @@ -35,14 +35,33 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Add _request_timeout to KPO log fetch calls (#36297)`` +`381922f7c0 `_ 2023-12-21 ``Make pod_name length equal to HOST_NAME_MAX (#36332)`` +`49108e15eb `_ 2023-12-20 ``Kubernetes executor running slots leak fix (#36240)`` +`5ab43d5541 `_ 2023-12-19 ``Move KubernetesPodTrigger hook to a cached property (#36290)`` +`f81dfd731f `_ 2023-12-17 ``Add 'pod_template_dict' field to 'KubernetesPodOperator' (#33174)`` +`a398d9d4fa `_ 2023-12-16 ``KubernetesPodTrigger: add exception stack trace in TriggerEvent (#35716)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +`b9c574c61a `_ 2023-12-10 ``list pods performance optimization (#36092)`` +================================================================================================= =========== ================================================================================ + 7.11.0 ...... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ================================================================================================= Commit Committed Subject ================================================================================================= =========== ================================================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `1264316fe7 `_ 2023-12-05 ``Drive-by improvements to convert_env_vars (#36062)`` `de71a62848 `_ 2023-12-05 ``fix: KPO typing env_vars (#36048)`` diff --git a/docs/apache-airflow-providers-cncf-kubernetes/index.rst b/docs/apache-airflow-providers-cncf-kubernetes/index.rst index 6c924e1ef0886..4d3ea6bb3a9f3 100644 --- a/docs/apache-airflow-providers-cncf-kubernetes/index.rst +++ b/docs/apache-airflow-providers-cncf-kubernetes/index.rst @@ -79,7 +79,7 @@ Package apache-airflow-providers-cncf-kubernetes `Kubernetes `__ -Release: 7.11.0 +Release: 7.12.0 Provider package ---------------- diff --git a/docs/apache-airflow-providers-cohere/commits.rst b/docs/apache-airflow-providers-cohere/commits.rst index 4897d5fa6d471..f027641af5202 100644 --- a/docs/apache-airflow-providers-cohere/commits.rst +++ b/docs/apache-airflow-providers-cohere/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 1.1.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-cohere/index.rst b/docs/apache-airflow-providers-cohere/index.rst index e3aa93608c6fb..4857524f9cbb8 100644 --- a/docs/apache-airflow-providers-cohere/index.rst +++ b/docs/apache-airflow-providers-cohere/index.rst @@ -104,7 +104,7 @@ Package apache-airflow-providers-cohere `Cohere `__ -Release: 1.1.0 +Release: 1.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-common-sql/commits.rst b/docs/apache-airflow-providers-common-sql/commits.rst index 49ac998383076..417c687d0f970 100644 --- a/docs/apache-airflow-providers-common-sql/commits.rst +++ b/docs/apache-airflow-providers-common-sql/commits.rst @@ -35,14 +35,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Return common data structure in DBApi derived classes`` +`f84eb2ab6f `_ 2023-12-21 ``Make "placeholder" of ODBC configurable in UI (#36000)`` +`5c1d8f40a1 `_ 2023-12-20 ``SQLCheckOperator fails if returns dict with any False values (#36273)`` +================================================================================================= =========== ========================================================================= + 1.9.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ========================================================================= Commit Committed Subject ================================================================================================= =========== ========================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `3bb5978e63 `_ 2023-12-06 ``Add Architecture Decision Record for common.sql introduction (#36015)`` ================================================================================================= =========== ========================================================================= diff --git a/docs/apache-airflow-providers-common-sql/index.rst b/docs/apache-airflow-providers-common-sql/index.rst index 9fcdd4600990c..647ae0fa8de8f 100644 --- a/docs/apache-airflow-providers-common-sql/index.rst +++ b/docs/apache-airflow-providers-common-sql/index.rst @@ -76,7 +76,7 @@ Package apache-airflow-providers-common-sql `Common SQL Provider `__ -Release: 1.9.0 +Release: 1.9.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 `_ -* `The apache-airflow-providers-common-sql 1.9.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-common-sql 1.9.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-common-sql 1.9.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-common-sql 1.9.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-databricks/commits.rst b/docs/apache-airflow-providers-databricks/commits.rst index 41546c40a2cc9..ed74ffd39c3e6 100644 --- a/docs/apache-airflow-providers-databricks/commits.rst +++ b/docs/apache-airflow-providers-databricks/commits.rst @@ -38,11 +38,15 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Return common data structure in DBApi derived classes`` +`322aa649ed `_ 2023-12-21 ``fix typos in DatabricksSubmitRunOperator (#36248)`` +`e9ba37bb58 `_ 2023-12-17 ``Add code snippet formatting in docstrings via Ruff (#36262)`` +`64931b1a65 `_ 2023-12-12 ``Prepare docs 1st wave of Providers December 2023 RC2 (#36190)`` `36010f6d0e `_ 2023-12-11 ``Fix: Implement support for 'fetchone()' in the ODBCHook and the Databricks SQL Hook (#36161)`` `999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` diff --git a/docs/apache-airflow-providers-databricks/index.rst b/docs/apache-airflow-providers-databricks/index.rst index 9494fc4747942..c2d7b0f0a7408 100644 --- a/docs/apache-airflow-providers-databricks/index.rst +++ b/docs/apache-airflow-providers-databricks/index.rst @@ -101,7 +101,7 @@ The minimum Apache Airflow version supported by this provider package is ``2.6.0 PIP package Version required ======================================= ========================== ``apache-airflow`` ``>=2.6.0`` -``apache-airflow-providers-common-sql`` ``>=1.8.1`` +``apache-airflow-providers-common-sql`` ``>=1.9.1`` ``requests`` ``>=2.27,<3`` ``databricks-sql-connector`` ``>=2.0.0,!=2.9.0,<3.0.0`` ``aiohttp`` ``>=3.6.3,<4`` diff --git a/docs/apache-airflow-providers-datadog/commits.rst b/docs/apache-airflow-providers-datadog/commits.rst index fb6c6960751de..e2f192c5c8858 100644 --- a/docs/apache-airflow-providers-datadog/commits.rst +++ b/docs/apache-airflow-providers-datadog/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ========================================================================= Commit Committed Subject ================================================================================================= =========== ========================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-datadog/index.rst b/docs/apache-airflow-providers-datadog/index.rst index f0810fbbdcc96..6167a04f65fd3 100644 --- a/docs/apache-airflow-providers-datadog/index.rst +++ b/docs/apache-airflow-providers-datadog/index.rst @@ -68,7 +68,7 @@ Package apache-airflow-providers-datadog `Datadog `__ -Release: 3.5.0 +Release: 3.5.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-dbt-cloud/commits.rst b/docs/apache-airflow-providers-dbt-cloud/commits.rst index 454eb0fbd0c4d..080cedd7cb320 100644 --- a/docs/apache-airflow-providers-dbt-cloud/commits.rst +++ b/docs/apache-airflow-providers-dbt-cloud/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `c905fe88de `_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)`` ================================================================================================= =========== ======================================================================== diff --git a/docs/apache-airflow-providers-dbt-cloud/index.rst b/docs/apache-airflow-providers-dbt-cloud/index.rst index 72b8fdddcb2dd..bac911f197984 100644 --- a/docs/apache-airflow-providers-dbt-cloud/index.rst +++ b/docs/apache-airflow-providers-dbt-cloud/index.rst @@ -81,7 +81,7 @@ Package apache-airflow-providers-dbt-cloud `dbt Cloud `__ -Release: 3.5.0 +Release: 3.5.1 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 `_ -* `The apache-airflow-providers-dbt-cloud 3.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-dbt-cloud 3.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-dbt-cloud 3.5.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-dbt-cloud 3.5.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-docker/commits.rst b/docs/apache-airflow-providers-docker/commits.rst index ac1cbd64e4168..923722f60a33a 100644 --- a/docs/apache-airflow-providers-docker/commits.rst +++ b/docs/apache-airflow-providers-docker/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Allow DockerOperator.skip_on_exit_code to be zero (#36360)`` +`1fa18cb974 `_ 2023-12-20 ``Remove remaining Airflow 2.5 backcompat code from Docker Provider (#36325)`` +================================================================================================= =========== ============================================================================== + 3.9.0 ..... -Latest change: 2023-12-11 +Latest change: 2023-12-12 ================================================================================================= =========== ================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================ +`64931b1a65 `_ 2023-12-12 ``Prepare docs 1st wave of Providers December 2023 RC2 (#36190)`` `cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` `f9c952bb7f `_ 2023-12-09 ``Fix broken log streaming from #35677 (#36127)`` `999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` diff --git a/docs/apache-airflow-providers-docker/index.rst b/docs/apache-airflow-providers-docker/index.rst index 3d5ffc5861d82..68afab971317a 100644 --- a/docs/apache-airflow-providers-docker/index.rst +++ b/docs/apache-airflow-providers-docker/index.rst @@ -70,7 +70,7 @@ Package apache-airflow-providers-docker `Docker `__ -Release: 3.9.0 +Release: 3.9.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-exasol/commits.rst b/docs/apache-airflow-providers-exasol/commits.rst index 53f87e2701010..afc663f129c28 100644 --- a/docs/apache-airflow-providers-exasol/commits.rst +++ b/docs/apache-airflow-providers-exasol/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Return common data structure in DBApi derived classes`` +================================================================================================= =========== ========================================================= + 4.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ========================================================================= Commit Committed Subject ================================================================================================= =========== ========================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `c905fe88de `_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` diff --git a/docs/apache-airflow-providers-exasol/index.rst b/docs/apache-airflow-providers-exasol/index.rst index c9703983b30e9..ce45d1a169ed3 100644 --- a/docs/apache-airflow-providers-exasol/index.rst +++ b/docs/apache-airflow-providers-exasol/index.rst @@ -61,7 +61,7 @@ Package apache-airflow-providers-exasol `Exasol `__ -Release: 4.4.0 +Release: 4.4.1 Provider package ---------------- @@ -85,7 +85,7 @@ The minimum Apache Airflow version supported by this provider package is ``2.6.0 PIP package Version required ======================================= ================== ``apache-airflow`` ``>=2.6.0`` -``apache-airflow-providers-common-sql`` ``>=1.3.1`` +``apache-airflow-providers-common-sql`` ``>=1.9.1`` ``pyexasol`` ``>=0.5.1`` ``pandas`` ``>=0.17.1`` ======================================= ================== @@ -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 `_ -* `The apache-airflow-providers-exasol 4.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-exasol 4.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-exasol 4.4.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-exasol 4.4.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-github/commits.rst b/docs/apache-airflow-providers-github/commits.rst index 5f4480420691c..55bf10366997d 100644 --- a/docs/apache-airflow-providers-github/commits.rst +++ b/docs/apache-airflow-providers-github/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 2.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ========================================================================= Commit Committed Subject ================================================================================================= =========== ========================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-github/index.rst b/docs/apache-airflow-providers-github/index.rst index b231f1d4f5463..863ea447d1a53 100644 --- a/docs/apache-airflow-providers-github/index.rst +++ b/docs/apache-airflow-providers-github/index.rst @@ -84,7 +84,7 @@ Package apache-airflow-providers-github `GitHub `__ -Release: 2.5.0 +Release: 2.5.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-google/commits.rst b/docs/apache-airflow-providers-google/commits.rst index b19c989a2ad5d..78f2ec776c85d 100644 --- a/docs/apache-airflow-providers-google/commits.rst +++ b/docs/apache-airflow-providers-google/commits.rst @@ -45,11 +45,23 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Remove remaining Airflow 2.5 backcompat code from Google Provider (#36366)`` +`10c4c352f9 `_ 2023-12-20 ``Minor fix to DataprocCreateClusterOperator operator docs. (#36322)`` +`881d88b4da `_ 2023-12-19 ``Implement deferrable mode for BeamRunJavaPipelineOperator (#36122)`` +`5ab43d5541 `_ 2023-12-19 ``Move KubernetesPodTrigger hook to a cached property (#36290)`` +`d793fda391 `_ 2023-12-18 ``Add ability to run streaming Job for BeamRunPythonPipelineOperator in non deferrable mode (#36108)`` +`92335417d8 `_ 2023-12-17 ``Add use_glob to GCSObjectExistenceSensor (#34137)`` +`e9ba37bb58 `_ 2023-12-17 ``Add code snippet formatting in docstrings via Ruff (#36262)`` +`ffb003a58e `_ 2023-12-17 ``fix(bigquery.py): pass correct project_id to triggerer (#35200)`` +`e83a98603e `_ 2023-12-14 ``iterate through blobs before checking prefixes (#36202)`` +`4c73d613b1 `_ 2023-12-13 ``Fix incompatibility with google-cloud-monitoring 2.18.0 (#36200)`` +`8fbacb8a5f `_ 2023-12-13 ``Update 'retry' param typing in PubSubAsyncHook (#36198)`` +`64931b1a65 `_ 2023-12-12 ``Prepare docs 1st wave of Providers December 2023 RC2 (#36190)`` `47a9c8a4a4 `_ 2023-12-12 ``Added Datascan Profiling (#35696)`` `3dddfb4a4a `_ 2023-12-11 ``Add overrides to template fields of Google Cloud Run Jobs Execute Operator (#36133)`` `fcd993b852 `_ 2023-12-11 ``Upgrade to latest pre-commit plugins (#36163)`` diff --git a/docs/apache-airflow-providers-google/index.rst b/docs/apache-airflow-providers-google/index.rst index b1280bd587f7d..239448a9c55a4 100644 --- a/docs/apache-airflow-providers-google/index.rst +++ b/docs/apache-airflow-providers-google/index.rst @@ -115,7 +115,7 @@ PIP package Version required ``asgiref`` ``>=3.5.2`` ``gcloud-aio-auth`` ``>=4.0.0,<5.0.0`` ``gcloud-aio-bigquery`` ``>=6.1.2`` -``gcloud-aio-storage`` +``gcloud-aio-storage`` ``>=9.0.0`` ``gcsfs`` ``>=2023.10.0`` ``google-ads`` ``>=22.1.0`` ``google-api-core`` ``>=2.11.0`` @@ -140,10 +140,10 @@ PIP package Version required ``google-cloud-language`` ``>=2.9.0`` ``google-cloud-logging`` ``>=3.5.0`` ``google-cloud-memcache`` ``>=1.7.0`` -``google-cloud-monitoring`` ``>=2.14.1`` +``google-cloud-monitoring`` ``>=2.18.0`` ``google-cloud-orchestration-airflow`` ``>=1.10.0`` ``google-cloud-os-login`` ``>=2.9.1`` -``google-cloud-pubsub`` ``>=2.15.0`` +``google-cloud-pubsub`` ``>=2.19.0`` ``google-cloud-redis`` ``>=2.12.0`` ``google-cloud-secret-manager`` ``>=2.16.0`` ``google-cloud-spanner`` ``>=3.11.1`` diff --git a/docs/apache-airflow-providers-grpc/commits.rst b/docs/apache-airflow-providers-grpc/commits.rst index 851f062695cad..edb893d9aa678 100644 --- a/docs/apache-airflow-providers-grpc/commits.rst +++ b/docs/apache-airflow-providers-grpc/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-grpc/index.rst b/docs/apache-airflow-providers-grpc/index.rst index 5aaf162f60830..6cb49166a5c7c 100644 --- a/docs/apache-airflow-providers-grpc/index.rst +++ b/docs/apache-airflow-providers-grpc/index.rst @@ -68,7 +68,7 @@ Package apache-airflow-providers-grpc `gRPC `__ -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-hashicorp/commits.rst b/docs/apache-airflow-providers-hashicorp/commits.rst index e71cec25a1122..456060f9bac69 100644 --- a/docs/apache-airflow-providers-hashicorp/commits.rst +++ b/docs/apache-airflow-providers-hashicorp/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.6.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-hashicorp/index.rst b/docs/apache-airflow-providers-hashicorp/index.rst index b39c9867c0dcb..a204ae92b12a6 100644 --- a/docs/apache-airflow-providers-hashicorp/index.rst +++ b/docs/apache-airflow-providers-hashicorp/index.rst @@ -69,7 +69,7 @@ Package apache-airflow-providers-hashicorp Hashicorp including `Hashicorp Vault `__ -Release: 3.6.0 +Release: 3.6.1 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 `_ -* `The apache-airflow-providers-hashicorp 3.6.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-hashicorp 3.6.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-hashicorp 3.6.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-hashicorp 3.6.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-jdbc/commits.rst b/docs/apache-airflow-providers-jdbc/commits.rst index 9d8b5b5c4076b..041850f56b3f9 100644 --- a/docs/apache-airflow-providers-jdbc/commits.rst +++ b/docs/apache-airflow-providers-jdbc/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 4.2.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-jdbc/index.rst b/docs/apache-airflow-providers-jdbc/index.rst index d4fbdad14942a..69f8dea24e9a1 100644 --- a/docs/apache-airflow-providers-jdbc/index.rst +++ b/docs/apache-airflow-providers-jdbc/index.rst @@ -78,7 +78,7 @@ Package apache-airflow-providers-jdbc `Java Database Connectivity (JDBC) `__ -Release: 4.2.0 +Release: 4.2.1 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 `_ -* `The apache-airflow-providers-jdbc 4.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-jdbc 4.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-jdbc 4.2.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-jdbc 4.2.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-jenkins/commits.rst b/docs/apache-airflow-providers-jenkins/commits.rst index da98ab56e3024..e300f27517a87 100644 --- a/docs/apache-airflow-providers-jenkins/commits.rst +++ b/docs/apache-airflow-providers-jenkins/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-jenkins/index.rst b/docs/apache-airflow-providers-jenkins/index.rst index 90b9f7c560dd8..62b845ba26784 100644 --- a/docs/apache-airflow-providers-jenkins/index.rst +++ b/docs/apache-airflow-providers-jenkins/index.rst @@ -76,7 +76,7 @@ Package apache-airflow-providers-jenkins `Jenkins `__ -Release: 3.5.0 +Release: 3.5.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-microsoft-azure/commits.rst b/docs/apache-airflow-providers-microsoft-azure/commits.rst index b11e9a23de4ad..ef24b6811f021 100644 --- a/docs/apache-airflow-providers-microsoft-azure/commits.rst +++ b/docs/apache-airflow-providers-microsoft-azure/commits.rst @@ -35,14 +35,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-19 ``azurefilesharehook fix with connection type azure (#36309)`` +`e9ba37bb58 `_ 2023-12-17 ``Add code snippet formatting in docstrings via Ruff (#36262)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +`aba58adb83 `_ 2023-12-08 ``Allow storage options to be passed (#35820)`` +================================================================================================= =========== ================================================================================ + 8.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ================================================================================================== Commit Committed Subject ================================================================================================= =========== ================================================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `3f354c0c92 `_ 2023-12-03 ``Do not catch too broad exception in 'WasbHook.delete_container' (#36034)`` `8f2cf41538 `_ 2023-12-01 ``Fix reraise outside of try block in 'AzureSynapsePipelineRunLink.get_fields_from_url' (#36009)`` diff --git a/docs/apache-airflow-providers-microsoft-azure/index.rst b/docs/apache-airflow-providers-microsoft-azure/index.rst index ad245ab5155b0..a34fb3e831e45 100644 --- a/docs/apache-airflow-providers-microsoft-azure/index.rst +++ b/docs/apache-airflow-providers-microsoft-azure/index.rst @@ -82,7 +82,7 @@ Package apache-airflow-providers-microsoft-azure `Microsoft Azure `__ -Release: 8.4.0 +Release: 8.5.0 Provider package ---------------- @@ -156,5 +156,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-microsoft-azure 8.4.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-microsoft-azure 8.4.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-microsoft-azure 8.5.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-microsoft-azure 8.5.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-odbc/commits.rst b/docs/apache-airflow-providers-odbc/commits.rst index d1a1ed529c9b7..c2d71a2c910bf 100644 --- a/docs/apache-airflow-providers-odbc/commits.rst +++ b/docs/apache-airflow-providers-odbc/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Return common data structure in DBApi derived classes`` +`f84eb2ab6f `_ 2023-12-21 ``Make "placeholder" of ODBC configurable in UI (#36000)`` +================================================================================================= =========== ========================================================== + 4.3.0 ..... -Latest change: 2023-12-11 +Latest change: 2023-12-12 ================================================================================================= =========== ================================================================================================ Commit Committed Subject ================================================================================================= =========== ================================================================================================ +`64931b1a65 `_ 2023-12-12 ``Prepare docs 1st wave of Providers December 2023 RC2 (#36190)`` `36010f6d0e `_ 2023-12-11 ``Fix: Implement support for 'fetchone()' in the ODBCHook and the Databricks SQL Hook (#36161)`` `999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` diff --git a/docs/apache-airflow-providers-odbc/index.rst b/docs/apache-airflow-providers-odbc/index.rst index 376f65314fc49..b68d445800e3b 100644 --- a/docs/apache-airflow-providers-odbc/index.rst +++ b/docs/apache-airflow-providers-odbc/index.rst @@ -63,7 +63,7 @@ Package apache-airflow-providers-odbc `ODBC `__ -Release: 4.3.0 +Release: 4.4.0 Provider package ---------------- @@ -87,7 +87,7 @@ The minimum Apache Airflow version supported by this provider package is ``2.6.0 PIP package Version required ======================================= ================== ``apache-airflow`` ``>=2.6.0`` -``apache-airflow-providers-common-sql`` ``>=1.8.1`` +``apache-airflow-providers-common-sql`` ``>=1.9.1`` ``pyodbc`` ======================================= ================== @@ -116,5 +116,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-odbc 4.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-odbc 4.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-odbc 4.4.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-odbc 4.4.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-openlineage/commits.rst b/docs/apache-airflow-providers-openlineage/commits.rst index eaf0ba41abdd5..b5c4fc36e3e8d 100644 --- a/docs/apache-airflow-providers-openlineage/commits.rst +++ b/docs/apache-airflow-providers-openlineage/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Fix typo. (#36362)`` +================================================================================================= =========== ====================== + 1.3.0 ..... -Latest change: 2023-12-06 +Latest change: 2023-12-08 ================================================================================================= =========== ================================================================= Commit Committed Subject ================================================================================================= =========== ================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `fba682b1a5 `_ 2023-12-06 ``Remove ClassVar annotations. (#36084)`` `acd95a5ef1 `_ 2023-12-05 ``feat: Add parent_run_id for COMPLETE and FAIL events (#36067)`` `35a1b7a63a `_ 2023-12-04 ``fix: Repair run_id for OpenLineage FAIL events (#36051)`` diff --git a/docs/apache-airflow-providers-openlineage/index.rst b/docs/apache-airflow-providers-openlineage/index.rst index df19288e3961f..cdd7c7ae9cda6 100644 --- a/docs/apache-airflow-providers-openlineage/index.rst +++ b/docs/apache-airflow-providers-openlineage/index.rst @@ -90,7 +90,7 @@ Package apache-airflow-providers-openlineage `OpenLineage `__ -Release: 1.3.0 +Release: 1.3.1 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 `_ -* `The apache-airflow-providers-openlineage 1.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-openlineage 1.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-openlineage 1.3.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-openlineage 1.3.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-opensearch/commits.rst b/docs/apache-airflow-providers-opensearch/commits.rst index 7610239a9ad1f..59ebffc407774 100644 --- a/docs/apache-airflow-providers-opensearch/commits.rst +++ b/docs/apache-airflow-providers-opensearch/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 1.1.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `eb691fc013 `_ 2023-11-23 ``Use 'OpenSearch' instead of 'Open Search' and 'Opensearch' (#35821)`` diff --git a/docs/apache-airflow-providers-opensearch/index.rst b/docs/apache-airflow-providers-opensearch/index.rst index 8335e60929ef1..61c6719cc0bb5 100644 --- a/docs/apache-airflow-providers-opensearch/index.rst +++ b/docs/apache-airflow-providers-opensearch/index.rst @@ -76,7 +76,7 @@ Package apache-airflow-providers-opensearch `OpenSearch `__ -Release: 1.1.0 +Release: 1.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-oracle/commits.rst b/docs/apache-airflow-providers-oracle/commits.rst index 7065f654b1919..6b1d2cb8649b5 100644 --- a/docs/apache-airflow-providers-oracle/commits.rst +++ b/docs/apache-airflow-providers-oracle/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Return common data structure in DBApi derived classes`` +================================================================================================= =========== ========================================================= + 3.9.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-oracle/index.rst b/docs/apache-airflow-providers-oracle/index.rst index d2507d08863da..1dba972d1631f 100644 --- a/docs/apache-airflow-providers-oracle/index.rst +++ b/docs/apache-airflow-providers-oracle/index.rst @@ -70,7 +70,7 @@ Package apache-airflow-providers-oracle `Oracle `__ -Release: 3.9.0 +Release: 3.9.1 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 `_ -* `The apache-airflow-providers-oracle 3.9.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-oracle 3.9.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-oracle 3.9.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-oracle 3.9.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-pagerduty/commits.rst b/docs/apache-airflow-providers-pagerduty/commits.rst index 426fb6cfb80c9..1fa59f5a01b27 100644 --- a/docs/apache-airflow-providers-pagerduty/commits.rst +++ b/docs/apache-airflow-providers-pagerduty/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-pagerduty/index.rst b/docs/apache-airflow-providers-pagerduty/index.rst index cd4a83c0d6987..2f629be429808 100644 --- a/docs/apache-airflow-providers-pagerduty/index.rst +++ b/docs/apache-airflow-providers-pagerduty/index.rst @@ -68,7 +68,7 @@ Package apache-airflow-providers-pagerduty `Pagerduty `__ -Release: 3.5.0 +Release: 3.5.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-pinecone/commits.rst b/docs/apache-airflow-providers-pinecone/commits.rst index f41fc4d7b39be..7bf5ce5051a19 100644 --- a/docs/apache-airflow-providers-pinecone/commits.rst +++ b/docs/apache-airflow-providers-pinecone/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 1.1.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-pinecone/index.rst b/docs/apache-airflow-providers-pinecone/index.rst index f889df59fc7c4..111dfa065f973 100644 --- a/docs/apache-airflow-providers-pinecone/index.rst +++ b/docs/apache-airflow-providers-pinecone/index.rst @@ -114,7 +114,7 @@ Package apache-airflow-providers-pinecone `Pinecone `__ -Release: 1.1.0 +Release: 1.1.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-plexus/commits.rst b/docs/apache-airflow-providers-plexus/commits.rst index 556e6739a0d10..ea185d00dd28a 100644 --- a/docs/apache-airflow-providers-plexus/commits.rst +++ b/docs/apache-airflow-providers-plexus/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-13 ``Schedule plexus and apache.sqoop providers for removal (#36208)`` +================================================================================================= =========== =================================================================== + 3.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-plexus/index.rst b/docs/apache-airflow-providers-plexus/index.rst index d9767333b9906..f710b1ab28d94 100644 --- a/docs/apache-airflow-providers-plexus/index.rst +++ b/docs/apache-airflow-providers-plexus/index.rst @@ -69,7 +69,7 @@ Package apache-airflow-providers-plexus `Plexus `__ -Release: 3.4.0 +Release: 3.4.1 Provider package ---------------- @@ -77,6 +77,14 @@ Provider package This is a provider package for ``plexus`` provider. All classes for this provider package are in ``airflow.providers.plexus`` python package. + .. warning:: + + This provider is not maintained anymore by the community. It has been removed and is not going to be + updated anymore. The removal was done according to the process described in + `Removing community providers `_ + + Feel free to contact Airflow Development Mailing List if you have any questions. + Installation ------------ diff --git a/docs/apache-airflow-providers-postgres/commits.rst b/docs/apache-airflow-providers-postgres/commits.rst index 5d8d4e106e58c..d31da05096388 100644 --- a/docs/apache-airflow-providers-postgres/commits.rst +++ b/docs/apache-airflow-providers-postgres/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Make "placeholder" of ODBC configurable in UI (#36000)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 5.9.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-postgres/index.rst b/docs/apache-airflow-providers-postgres/index.rst index 8f2c4217c65ff..12ac63f24b526 100644 --- a/docs/apache-airflow-providers-postgres/index.rst +++ b/docs/apache-airflow-providers-postgres/index.rst @@ -77,7 +77,7 @@ Package apache-airflow-providers-postgres `PostgreSQL `__ -Release: 5.9.0 +Release: 5.10.0 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 `_ -* `The apache-airflow-providers-postgres 5.9.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-postgres 5.9.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-postgres 5.10.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-postgres 5.10.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-presto/commits.rst b/docs/apache-airflow-providers-presto/commits.rst index 9b144b031ea1a..1c6cbeb49ddbd 100644 --- a/docs/apache-airflow-providers-presto/commits.rst +++ b/docs/apache-airflow-providers-presto/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Make "placeholder" of ODBC configurable in UI (#36000)`` +================================================================================================= =========== ========================================================== + 5.3.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================== Commit Committed Subject ================================================================================================= =========== ======================================================================== +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `c905fe88de `_ 2023-11-25 ``Update information about links into the provider.yaml files (#35837)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` diff --git a/docs/apache-airflow-providers-presto/index.rst b/docs/apache-airflow-providers-presto/index.rst index cb650f7008292..4df1da0a37db2 100644 --- a/docs/apache-airflow-providers-presto/index.rst +++ b/docs/apache-airflow-providers-presto/index.rst @@ -76,7 +76,7 @@ Package apache-airflow-providers-presto `Presto `__ -Release: 5.3.0 +Release: 5.4.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 `_ -* `The apache-airflow-providers-presto 5.3.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-presto 5.3.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-presto 5.4.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-presto 5.4.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-salesforce/commits.rst b/docs/apache-airflow-providers-salesforce/commits.rst index 34b478efda34a..b914eac049401 100644 --- a/docs/apache-airflow-providers-salesforce/commits.rst +++ b/docs/apache-airflow-providers-salesforce/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 5.6.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-salesforce/index.rst b/docs/apache-airflow-providers-salesforce/index.rst index 2ba5bad01a139..c2840e846f644 100644 --- a/docs/apache-airflow-providers-salesforce/index.rst +++ b/docs/apache-airflow-providers-salesforce/index.rst @@ -77,7 +77,7 @@ Package apache-airflow-providers-salesforce `Salesforce `__ -Release: 5.6.0 +Release: 5.6.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-sftp/commits.rst b/docs/apache-airflow-providers-sftp/commits.rst index 6465ae58a5f43..8c4b54ce290c2 100644 --- a/docs/apache-airflow-providers-sftp/commits.rst +++ b/docs/apache-airflow-providers-sftp/commits.rst @@ -35,14 +35,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-17 ``Add code snippet formatting in docstrings via Ruff (#36262)`` +`f8124beea3 `_ 2023-12-11 ``change warnning message (#36148)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 4.8.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-sftp/index.rst b/docs/apache-airflow-providers-sftp/index.rst index afd8a4085c904..ea99867566633 100644 --- a/docs/apache-airflow-providers-sftp/index.rst +++ b/docs/apache-airflow-providers-sftp/index.rst @@ -69,7 +69,7 @@ Package apache-airflow-providers-sftp `SSH File Transfer Protocol (SFTP) `__ -Release: 4.8.0 +Release: 4.8.1 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 `_ -* `The apache-airflow-providers-sftp 4.8.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-sftp 4.8.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sftp 4.8.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sftp 4.8.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-slack/commits.rst b/docs/apache-airflow-providers-slack/commits.rst index d2feca9c130c8..1ec5fd04dde0b 100644 --- a/docs/apache-airflow-providers-slack/commits.rst +++ b/docs/apache-airflow-providers-slack/commits.rst @@ -38,14 +38,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-08 ``Slack: Remove parameter 'token' in SlackAPIPostOperator's docstring (#36121)`` +================================================================================================= =========== ================================================================================ + 8.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-slack/index.rst b/docs/apache-airflow-providers-slack/index.rst index 589f34ea578f6..0dfe0098e1cb3 100644 --- a/docs/apache-airflow-providers-slack/index.rst +++ b/docs/apache-airflow-providers-slack/index.rst @@ -81,7 +81,7 @@ Package apache-airflow-providers-slack - `Slack Incoming Webhook `__ -Release: 8.5.0 +Release: 8.5.1 Provider package ---------------- @@ -134,5 +134,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-slack 8.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-slack 8.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-slack 8.5.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-slack 8.5.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-smtp/commits.rst b/docs/apache-airflow-providers-smtp/commits.rst index fedf395b808a3..8035769dfa2ce 100644 --- a/docs/apache-airflow-providers-smtp/commits.rst +++ b/docs/apache-airflow-providers-smtp/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Modify SmtpNotifier to accept template with defaults (#36226)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 1.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-smtp/index.rst b/docs/apache-airflow-providers-smtp/index.rst index 525af98cd9006..0a92c1d69dde0 100644 --- a/docs/apache-airflow-providers-smtp/index.rst +++ b/docs/apache-airflow-providers-smtp/index.rst @@ -64,7 +64,7 @@ Package apache-airflow-providers-smtp `Simple Mail Transfer Protocol (SMTP) `__ -Release: 1.5.0 +Release: 1.6.0 Provider package ---------------- diff --git a/docs/apache-airflow-providers-snowflake/commits.rst b/docs/apache-airflow-providers-snowflake/commits.rst index b7a17cb7b865c..e7d650a9e0f8a 100644 --- a/docs/apache-airflow-providers-snowflake/commits.rst +++ b/docs/apache-airflow-providers-snowflake/commits.rst @@ -35,14 +35,27 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-22 ``Return common data structure in DBApi derived classes`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 5.2.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` ================================================================================================= =========== ======================================================================= diff --git a/docs/apache-airflow-providers-snowflake/index.rst b/docs/apache-airflow-providers-snowflake/index.rst index 6488fc7b70274..4c021fbdbdc51 100644 --- a/docs/apache-airflow-providers-snowflake/index.rst +++ b/docs/apache-airflow-providers-snowflake/index.rst @@ -77,7 +77,7 @@ Package apache-airflow-providers-snowflake `Snowflake `__ -Release: 5.2.0 +Release: 5.2.1 Provider package ---------------- @@ -101,7 +101,7 @@ The minimum Apache Airflow version supported by this provider package is ``2.6.0 PIP package Version required ======================================= ================== ``apache-airflow`` ``>=2.6.0`` -``apache-airflow-providers-common-sql`` ``>=1.3.1`` +``apache-airflow-providers-common-sql`` ``>=1.9.1`` ``snowflake-connector-python`` ``>=2.7.8`` ``snowflake-sqlalchemy`` ``>=1.1.0`` ======================================= ================== @@ -132,5 +132,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-snowflake 5.2.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-snowflake 5.2.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-snowflake 5.2.1 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-snowflake 5.2.1 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-sqlite/commits.rst b/docs/apache-airflow-providers-sqlite/commits.rst index 16caf79f30006..2612c7692dac2 100644 --- a/docs/apache-airflow-providers-sqlite/commits.rst +++ b/docs/apache-airflow-providers-sqlite/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Make "placeholder" of ODBC configurable in UI (#36000)`` +================================================================================================= =========== ========================================================== + 3.6.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-sqlite/index.rst b/docs/apache-airflow-providers-sqlite/index.rst index 9325e2f144d95..5cbb5f4a11cf2 100644 --- a/docs/apache-airflow-providers-sqlite/index.rst +++ b/docs/apache-airflow-providers-sqlite/index.rst @@ -77,7 +77,7 @@ Package apache-airflow-providers-sqlite `SQLite `__ -Release: 3.6.0 +Release: 3.7.0 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 `_ -* `The apache-airflow-providers-sqlite 3.6.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-sqlite 3.6.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sqlite 3.7.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-sqlite 3.7.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-ssh/commits.rst b/docs/apache-airflow-providers-ssh/commits.rst index f999c191008f2..d20451bf4d755 100644 --- a/docs/apache-airflow-providers-ssh/commits.rst +++ b/docs/apache-airflow-providers-ssh/commits.rst @@ -35,14 +35,29 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Allow SSHOperator.skip_on_exit_code to be zero (#36358)`` +`73cd0d5f8e `_ 2023-12-21 ``Add skip_on_exit_code to SSHOperator (#36303)`` +`343bac956b `_ 2023-12-11 ``Review and mark found potential SSH security issues by bandit (#36162)`` +`cd476acd8f `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.9.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-ssh/index.rst b/docs/apache-airflow-providers-ssh/index.rst index 7f5257ba78970..32940796c4b83 100644 --- a/docs/apache-airflow-providers-ssh/index.rst +++ b/docs/apache-airflow-providers-ssh/index.rst @@ -68,7 +68,7 @@ Package apache-airflow-providers-ssh `Secure Shell (SSH) `__ -Release: 3.9.0 +Release: 3.9.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-tabular/commits.rst b/docs/apache-airflow-providers-tabular/commits.rst index dead14bbbb07f..4144d0cf6c630 100644 --- a/docs/apache-airflow-providers-tabular/commits.rst +++ b/docs/apache-airflow-providers-tabular/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 1.4.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-tabular/index.rst b/docs/apache-airflow-providers-tabular/index.rst index e01ca7f16fa0c..2ce4429b24b71 100644 --- a/docs/apache-airflow-providers-tabular/index.rst +++ b/docs/apache-airflow-providers-tabular/index.rst @@ -71,7 +71,7 @@ Package apache-airflow-providers-tabular `Tabular `__ -Release: 1.4.0 +Release: 1.4.1 Provider package ---------------- diff --git a/docs/apache-airflow-providers-trino/commits.rst b/docs/apache-airflow-providers-trino/commits.rst index 7bd8a28562659..9196868c1b9a1 100644 --- a/docs/apache-airflow-providers-trino/commits.rst +++ b/docs/apache-airflow-providers-trino/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Make "placeholder" of ODBC configurable in UI (#36000)`` +================================================================================================= =========== ========================================================== + 5.5.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `1c6bbe2841 `_ 2023-12-01 ``Feature/trino provider timezone (#35963)`` ================================================================================================= =========== ======================================================================= diff --git a/docs/apache-airflow-providers-trino/index.rst b/docs/apache-airflow-providers-trino/index.rst index e33571041d530..6d7afec9f08bb 100644 --- a/docs/apache-airflow-providers-trino/index.rst +++ b/docs/apache-airflow-providers-trino/index.rst @@ -78,7 +78,7 @@ Package apache-airflow-providers-trino `Trino `__ -Release: 5.5.0 +Release: 5.6.0 Provider package ---------------- @@ -134,5 +134,5 @@ Downloading official packages You can download officially released packages and verify their checksums and signatures from the `Official Apache Download site `_ -* `The apache-airflow-providers-trino 5.5.0 sdist package `_ (`asc `__, `sha512 `__) -* `The apache-airflow-providers-trino 5.5.0 wheel package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-trino 5.6.0 sdist package `_ (`asc `__, `sha512 `__) +* `The apache-airflow-providers-trino 5.6.0 wheel package `_ (`asc `__, `sha512 `__) diff --git a/docs/apache-airflow-providers-weaviate/commits.rst b/docs/apache-airflow-providers-weaviate/commits.rst index f0b0a6e25b450..3a59c31007dec 100644 --- a/docs/apache-airflow-providers-weaviate/commits.rst +++ b/docs/apache-airflow-providers-weaviate/commits.rst @@ -35,14 +35,28 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-21 ``Fixing template_fields for WeaviateIngestOperator (#36359)`` +`5439b494b0 `_ 2023-12-11 ``Add helper function for CRUD operations on weaviate's schema and class objects (#35919)`` +`a8333b778a `_ 2023-12-08 ``Add retry mechanism and dataframe support for WeaviateIngestOperator (#36085)`` +================================================================================================= =========== =========================================================================================== + 1.1.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `b2464477c4 `_ 2023-12-07 ``Add object methods in weaviate hook (#35934)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `8be03c9937 `_ 2023-12-01 ``Add a cache for weaviate client (#35983)`` diff --git a/docs/apache-airflow-providers-weaviate/index.rst b/docs/apache-airflow-providers-weaviate/index.rst index 6d4facf326728..8c04a29abd07e 100644 --- a/docs/apache-airflow-providers-weaviate/index.rst +++ b/docs/apache-airflow-providers-weaviate/index.rst @@ -114,7 +114,7 @@ Package apache-airflow-providers-weaviate `Weaviate `__ -Release: 1.1.0 +Release: 1.2.0 Provider package ---------------- diff --git a/docs/apache-airflow-providers-yandex/commits.rst b/docs/apache-airflow-providers-yandex/commits.rst index 7f453f5b4b545..ac550c12380ec 100644 --- a/docs/apache-airflow-providers-yandex/commits.rst +++ b/docs/apache-airflow-providers-yandex/commits.rst @@ -35,14 +35,26 @@ For high-level changelog, see :doc:`package information including changelog `_ 2023-12-11 ``Follow BaseHook connection fields method signature in child classes (#36086)`` +================================================================================================= =========== ================================================================================ + 3.7.0 ..... -Latest change: 2023-12-07 +Latest change: 2023-12-08 ================================================================================================= =========== ======================================================================= Commit Committed Subject ================================================================================================= =========== ======================================================================= +`999b70178a `_ 2023-12-08 ``Prepare docs 1st wave of Providers December 2023 (#36112)`` `d0918d77ee `_ 2023-12-07 ``Bump minimum Airflow version in providers to Airflow 2.6.0 (#36017)`` `0b23d5601c `_ 2023-11-24 ``Prepare docs 2nd wave of Providers November 2023 (#35836)`` `99534e47f3 `_ 2023-11-19 ``Use reproducible builds for provider packages (#35693)`` diff --git a/docs/apache-airflow-providers-yandex/index.rst b/docs/apache-airflow-providers-yandex/index.rst index 832c5c059071f..99de292ce3b59 100644 --- a/docs/apache-airflow-providers-yandex/index.rst +++ b/docs/apache-airflow-providers-yandex/index.rst @@ -78,7 +78,7 @@ Package apache-airflow-providers-yandex Yandex including `Yandex.Cloud `__ -Release: 3.7.0 +Release: 3.7.1 Provider package ---------------- diff --git a/generated/provider_dependencies.json b/generated/provider_dependencies.json index b20543ab35399..478b310198781 100644 --- a/generated/provider_dependencies.json +++ b/generated/provider_dependencies.json @@ -291,7 +291,7 @@ "databricks": { "deps": [ "aiohttp>=3.6.3, <4", - "apache-airflow-providers-common-sql>=1.9.1", + "apache-airflow-providers-common-sql>=1.10.0", "apache-airflow>=2.6.0", "databricks-sql-connector>=2.0.0, <3.0.0, !=2.9.0", "requests>=2.27,<3" @@ -364,7 +364,7 @@ }, "exasol": { "deps": [ - "apache-airflow-providers-common-sql>=1.9.1", + "apache-airflow-providers-common-sql>=1.10.0", "apache-airflow>=2.6.0", "pandas>=0.17.1", "pyexasol>=0.5.1" @@ -653,7 +653,7 @@ }, "odbc": { "deps": [ - "apache-airflow-providers-common-sql>=1.9.1", + "apache-airflow-providers-common-sql>=1.10.0", "apache-airflow>=2.6.0", "pyodbc" ], @@ -864,7 +864,7 @@ }, "snowflake": { "deps": [ - "apache-airflow-providers-common-sql>=1.9.1", + "apache-airflow-providers-common-sql>=1.10.0", "apache-airflow>=2.6.0", "snowflake-connector-python>=2.7.8", "snowflake-sqlalchemy>=1.1.0"