Skip to content

Commit

Permalink
Releases 1.2.0 (#224)
Browse files Browse the repository at this point in the history
Update the release version and `CHANGELOG.rst` for release 1.2.0
  • Loading branch information
phanikumv authored Apr 12, 2022
1 parent 786a52c commit 03990bd
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 2 deletions.
55 changes: 55 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,61 @@
Changelog
=========

1.2.0 (2022-04-12)
------------------

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

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

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

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

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

from astronomer.providers.google.cloud.operators.dataproc import DataprocSubmitJobOperatorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/google/cloud/example_dags/example_dataproc.py>`__

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

from astronomer.providers.amazon.aws.sensors.emr import EmrContainerSensorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/amazon/aws/example_dags/example_emr.py>`__

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

from astronomer.providers.amazon.aws.sensors.emr import EmrStepSensorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/amazon/aws/example_dags/example_emr_sensor.py>`__

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

from astronomer.providers.amazon.aws.sensors.emr import EmrJobFlowSensorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/amazon/aws/example_dags/example_emr_sensor.py>`__

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

from astronomer.providers.apache.livy.operators.livy import LivyOperatorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/apache/livy/example_dags/example_livy.py>`__


Improvements
""""""""""""

* Improved example DAGs so that resource creation and clean up is handled during system tests rather
than doing it manually
* Enhanced the **Async Databricks Operator** to persist ``run_id`` and ``run_page_url`` in ``XCom``
(`#175 <https://github.com/astronomer/astronomer-providers/pull/175>`_)


1.1.0 (2022-03-23)
--------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Astronomer Inc."

# The full version, including alpha/beta/rc tags
release = "1.2.0.dev1"
release = "1.2.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.2.0.dev1
version = 1.2.0
url = https://github.com/astronomer/astronomer-providers/
author = Astronomer
author_email = [email protected]
Expand Down

0 comments on commit 03990bd

Please sign in to comment.