Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.1.0 #102

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 2.1.0 (2024-07-22)
pankajastro marked this conversation as resolved.
Show resolved Hide resolved

### Feature
- Add methods to get the connector_id by @natanlaverde in https://github.com/astronomer/airflow-provider-fivetran-async/pull/101

### Bug Fixes
- Set correct default_conn_name in class by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/95
- Add return statement after yield in trigger to avoid infinite loop by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/94

### Misc
- Enable Python3.12 test by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/91
- Remove old Async operator name from docstring by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/96
- Clean example DAG by @pankajastro in https://github.com/astronomer/airflow-provider-fivetran-async/pull/97

## 2.0.2 (2024-01-17)

### Feature
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__ = "2.0.2"
__version__ = "2.1.0"

import logging

Expand Down
Loading