diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6e4af58..60b4b41 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,29 @@ Changelog ========= +0.1.6 (24-02-23) +---------------- + +Bug fixes + +* Bump `pydantic` to `>=1.10.0` to be compatible with Airflow 2.7.0+ (PR `#61 `_ by @w0ut0) + + +0.1.5 (31-07-23) +---------------- + +Feature + +* Add operator that supports all task types (PR `#55 `_ by @crong-k) + +Bug fixes + +* Limit Pydantic < 2.0.0 until Airflow resolves incompatibilities (PR `#52 `_ by @tatiana) + +Enhancements + +* Update query ID to hello world query (PR `#56 `_ by @jlaneve) + 0.1.4 (23-06-16) ---------------- diff --git a/pyproject.toml b/pyproject.toml index f36020c..a9fcb0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ dependencies = [ "databricks-cli>=0.17.7", "apache-airflow-providers-databricks>=2.2.0", "mergedeep", - "pydantic>=1.10.0,<2.0.0", # Airflow & Pydantic issue: https://github.com/apache/airflow/issues/32311 + "pydantic>=1.10.0", ] [project.optional-dependencies] diff --git a/src/astro_databricks/__init__.py b/src/astro_databricks/__init__.py index 14a67b1..6fa7d22 100644 --- a/src/astro_databricks/__init__.py +++ b/src/astro_databricks/__init__.py @@ -3,7 +3,7 @@ from astro_databricks.operators.notebook import DatabricksNotebookOperator from astro_databricks.operators.workflow import DatabricksWorkflowTaskGroup -__version__ = "0.1.5" +__version__ = "0.1.6" __all__ = [ "DatabricksNotebookOperator", "DatabricksWorkflowTaskGroup",