Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.10.0 #686

Merged
merged 1 commit into from
Sep 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
------------------

Expand Down
2 changes: 1 addition & 1 deletion astronomer/providers/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": [],
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
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]
Expand Down