diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a5b692..420eb6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 1.2.0 (2023-10-31) + +### Breaking changes +- FivetranHook.check_connector now returns the connector_details dict object by @dwreeves in https://github.com/astronomer/airflow-provider-fivetran-async/pull/54 +- FivetranHook.prep_connector now returns None instead of Literal[True] by @dwreeves in https://github.com/astronomer/airflow-provider-fivetran-async/pull/54 +- For users using the sync hook directly to call either get_sync_status or call_and_restart, they will experience breakage if they are using reschedule_time= +and for users who manually set =0, they will also experience breakage by @dwreeves in https://github.com/astronomer/airflow-provider-fivetran-async/pull/57 + +### Bug fixes +- Use dynamic operator value in link by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/56 +- Update the registry URL for FivetranOperator by @utkarsharma2 in https://github.com/astronomer/airflow-provider-fivetran-async/pull/52 +- Updated quotation placement to fix `TypeError` by @cSaller in https://github.com/astronomer/airflow-provider-fivetran-async/pull/65 + +### Misc +- Add mypy + some other misc. changes by @dwreeves in https://github.com/astronomer/airflow-provider-fivetran-async/pull/54 +- Consolidate api for `pause_and_restart` and `_parse_timestamp` methods by @dwreeves in https://github.com/astronomer/airflow-provider-fivetran-async/pull/57 + ## 1.1.2 (2023-08-10) ### Bug fixes diff --git a/fivetran_provider_async/__init__.py b/fivetran_provider_async/__init__.py index df9caf9..eab4181 100644 --- a/fivetran_provider_async/__init__.py +++ b/fivetran_provider_async/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa F401 -__version__ = "1.1.2" +__version__ = "1.2.0" import logging