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

Upgrade protobuf #851

Merged
merged 6 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
- Fix behavior flag use in init of DatabricksAdapter (thanks @VersusFacit!) ([836](https://github.com/databricks/dbt-databricks/pull/836))
- Restrict pydantic to V1 per dbt Labs' request ([843](https://github.com/databricks/dbt-databricks/pull/843))
- Switching to Ruff for formatting and linting ([847](https://github.com/databricks/dbt-databricks/pull/847))
- Pin protobuf to 5.x to stop incompatibility breaks ([850](https://github.com/databricks/dbt-databricks/pull/850))

## dbt-databricks 1.8.7 (October 10, 2024)

Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ tox>=3.2.0
types-requests
types-mock

dbt-tests-adapter>=1.10.2, <2.0
git+https://github.com/dbt-labs/dbt-adapters.git@main#subdirectory=dbt-tests-adapter
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
databricks-sql-connector>=3.5.0, <4.0
dbt-spark>=1.8.0, <2.0
dbt-core>=1.8.7, <2.0
dbt-common>=1.10.0, <2.0
dbt-adapters>=1.7.0, <2.0
git+https://github.com/dbt-labs/dbt-adapters.git@main
git+https://github.com/dbt-labs/dbt-common.git@main
git+https://github.com/dbt-labs/dbt-core.git@main#subdirectory=core
git+https://github.com/dbt-labs/dbt-spark.git@main
databricks-sdk==0.17.0
keyring>=23.13.0
protobuf<5.0.0
protobuf>=5.0.0,<6.0.0
pydantic>=1.10.0, <2
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ def _get_plugin_version() -> str:
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
include_package_data=True,
install_requires=[
"dbt-spark>=1.8.0, <2.0",
"dbt-core>=1.8.7, <2.0",
"dbt-adapters>=1.7.0, <2.0",
"dbt-common>=1.10.0, <2.0",
"git+https://github.com/dbt-labs/dbt-adapters.git@main",
"git+https://github.com/dbt-labs/dbt-core.git@main#subdirectory=core",
"git+https://github.com/dbt-labs/dbt-common.git@main",
"git+https://github.com/dbt-labs/dbt-spark.git@main",
"databricks-sql-connector>=3.5.0, <4.0.0",
"databricks-sdk==0.17.0",
"keyring>=23.13.0",
"pandas<2.2.0",
"protobuf<5.0.0",
"protobuf>=5.0.0,<6.0.0",
"pydantic>=1.10.0, <2",
],
zip_safe=False,
Expand Down
Loading