Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.10.0
Browse files Browse the repository at this point in the history
rajaths010494 committed Sep 30, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent be6a188 commit 49d8949
Showing 4 changed files with 45 additions and 3 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,48 @@
Changelog
=========

1.10.0 (2022-09-30)
-------------------

New Operators
"""""""""""""

This release adds the following 2 new async sensors/operators:

.. list-table::
:header-rows: 1

* - Operator/Sensor Class
- Import Path
- Example DAG

* - ``ExternalDeploymentTaskSensorAsync``
- .. code-block:: python

from astronomer.providers.core.sensors.external_task import ExternalDeploymentTaskSensorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/core/example_dags/example_external_deployment_task_sensor.py>`__

* - ``SFTPSensorAsync``
- .. code-block:: python

from astronomer.providers.sftp.sensors.sftp import SFTPSensorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/sftp/example_dags/example_sftp.py>`__

Bug Fixes
"""""""""

- Make Dataproc operator compatible with ``apache-airflow-providers-google>=8.4.0``
(`#680 <https://github.com/astronomer/astronomer-providers/pull/680>`_)
- Make EMR EKS operator compatible with ``apache-airflow-providers-amazon>=6.0.0``
(`#682 <https://github.com/astronomer/astronomer-providers/pull/682>`_)

Deprecation
"""""""""""

- Deprecate ``poll_interval`` and use ``poke_interval`` for all async sensors
(`#640 <https://github.com/astronomer/astronomer-providers/pull/640>`_)


1.9.0 (2022-09-13)
------------------

2 changes: 1 addition & 1 deletion astronomer/providers/package.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ def get_provider_info() -> Dict[str, Any]:
"package-name": "astronomer-providers",
"name": "Astronomer Providers",
"description": "Apache Airflow Providers containing Deferrable Operators & Sensors from Astronomer",
"versions": "1.10.0.dev1",
"versions": "1.10.0",
# Optional.
"hook-class-names": [],
"extra-links": [],
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@
author = "Astronomer Inc."

# The full version, including alpha/beta/rc tags
release = "1.10.0.dev1"
release = "1.10.0"


# -- General configuration ---------------------------------------------------
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = astronomer-providers
version = 1.10.0.dev1
version = 1.10.0
url = https://github.com/astronomer/astronomer-providers/
author = Astronomer
author_email = [email protected]

0 comments on commit 49d8949

Please sign in to comment.