From 03990bd08016701ef12c45315cb8259f2a9b3e7d Mon Sep 17 00:00:00 2001 From: Phani Kumar <94376113+phanikumv@users.noreply.github.com> Date: Tue, 12 Apr 2022 18:04:29 +0530 Subject: [PATCH] Releases 1.2.0 (#224) Update the release version and `CHANGELOG.rst` for release 1.2.0 --- CHANGELOG.rst | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++ docs/conf.py | 2 +- setup.cfg | 2 +- 3 files changed, 57 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b93357616..4d63118b4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `__ + + * - ``EmrContainerSensorAsync`` + - .. code-block:: python + + from astronomer.providers.amazon.aws.sensors.emr import EmrContainerSensorAsync + - `Example DAG `__ + + * - ``EmrStepSensorAsync`` + - .. code-block:: python + + from astronomer.providers.amazon.aws.sensors.emr import EmrStepSensorAsync + - `Example DAG `__ + + * - ``EmrJobFlowSensorAsync`` + - .. code-block:: python + + from astronomer.providers.amazon.aws.sensors.emr import EmrJobFlowSensorAsync + - `Example DAG `__ + + * - ``LivyOperatorAsync`` + - .. code-block:: python + + from astronomer.providers.apache.livy.operators.livy import LivyOperatorAsync + - `Example DAG `__ + + +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 `_) + + 1.1.0 (2022-03-23) -------------------- diff --git a/docs/conf.py b/docs/conf.py index 3115f6b9b..3980d7c0e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 755388197..330792a9f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 = humans@astronomer.io