Skip to content
This repository was archived by the owner on Sep 4, 2024. It is now read-only.

Remove pydantic upper version constraint #62

Merged
merged 6 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
23 changes: 23 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/astronomer/astro-provider-databricks/pull/61>`_ by @w0ut0)


0.1.5 (31-07-23)
----------------

Feature

* Add operator that supports all task types (PR `#55 <https://github.com/astronomer/astro-provider-databricks/pull/55>`_ by @crong-k)

Bug fixes

* Limit Pydantic < 2.0.0 until Airflow resolves incompatibilities (PR `#52 <https://github.com/astronomer/astro-provider-databricks/pull/42>`_ by @tatiana)

Enhancements

* Update query ID to hello world query (PR `#56 <https://github.com/astronomer/astro-provider-databricks/pull/56>`_ by @jlaneve)

0.1.4 (23-06-16)
----------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion src/astro_databricks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading