Skip to content

Commit

Permalink
Release-2.0.0 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajastro authored Nov 7, 2023
1 parent fd5472d commit fd4e2e9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 2.0.0 (2023-11-07)

### 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
- Remove deprecated `hook-class-names` from `get_provider_info` return value dict by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/62
- Remove deprecated `FivetranOperatorAsync` and `FivetranSensorAsync` by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/68

### Feature
- API Changes to FivetranSensor for supporting backfills by @dwreeves in https://github.com/astronomer/airflow-provider-fivetran-async/pull/58

### 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
Expand Down
2 changes: 1 addition & 1 deletion fivetran_provider_async/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flake8: noqa F401
__version__ = "1.1.2"
__version__ = "2.0.0"

import logging

Expand Down

0 comments on commit fd4e2e9

Please sign in to comment.