Skip to content

Commit

Permalink
Release 1.5.0 (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
phanikumv authored Jun 15, 2022
1 parent d28d8e4 commit 50d059a
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
Changelog
=========

1.5.0 (2022-06-15)
------------------

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

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

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

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

from astronomer.providers.amazon.aws.operators.batch import BatchOperatorAsync
- `Example DAG <https://github.com/astronomer/astronomer-providers/blob/main/astronomer/providers/amazon/aws/example_dags/example_batch.py>`__

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

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

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

* Enhance **KubernetesPodOperatorAsync** to periodically resume the sync portion of the task to fetch and
emit the latest logs before deferring again.
(`#139 <https://github.com/astronomer/astronomer-providers/pull/139>`_)
* Fix a bug on the **KubernetesPodOperatorAsync** to not fail with ``ERROR - Unclosed client session``
(`#394 <https://github.com/astronomer/astronomer-providers/pull/394>`_)


1.4.0 (2022-05-25)
------------------

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

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

0 comments on commit 50d059a

Please sign in to comment.