Skip to content

Commit

Permalink
set protobuf dependency to >=4.21.0
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Furlan <[email protected]>
  • Loading branch information
andrefurlan-db committed May 9, 2023
1 parent 0963066 commit 4980b45
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## dbt-databricks 1.5.1 (May 9, 2023)

### Fixes
- Add explicit dependency to protobuf >4 to work around dbt-core issue

## dbt-databricks 1.5.0 (May 2, 2023)

### Features
- Added support for OAuth (SSO and client credentials) ([#327](https://github.com/databricks/dbt-databricks/pull/327))
### Fixes
- Fix integration tests ([#316](https://github.com/databricks/dbt-databricks/pull/316))

### Dependencies
- Updated dbt-spark from >=1.4.1 to >= 1.5.0 ([#316](https://github.com/databricks/dbt-databricks/pull/316))

### Under the hood
- Throw an error if a model has an enforced contract. ([#322](https://github.com/databricks/dbt-databricks/pull/322))

## dbt-databricks 1.4.3 (April 19, 2023)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/databricks/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: str = "1.5.0"
version: str = "1.5.1"
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ databricks-sql-connector>=2.5.0
dbt-spark>=1.5.0
databricks-sdk>=0.1.1
keyring>=23.13.0
protobuf>=4.21.0 # workaround for dbt-core issue
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def _get_plugin_version():
"dbt-spark>=1.5.0",
"databricks-sql-connector>=2.5.0",
"databricks-sdk>=0.1.1",
"keyring>=23.13.0"
"keyring>=23.13.0",
"protobuf>=4.21.0" # workaround for dbt-core issue
],
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 4980b45

Please sign in to comment.