Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
### Bug Fixes
- databricks-ai-bridge: Use the last query attachment in `_parse_attachments` to support Genie self-correction (#419)

## databricks-mcp 0.9.1 (2026-07-28)

### Bug Fixes
- Pin `mcp` dependency to `>=1.13.0,<2.0.0` to avoid breaking `ImportError` caused by the `streamablehttp_client` rename in `mcp` 2.0.0.

## databricks-ai-bridge 0.17.0 databricks-langchain 0.17.0 databricks-openai 0.13.0 (2026-03-09)

### Release
Expand Down
4 changes: 2 additions & 2 deletions databricks_mcp/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "databricks-mcp"
version = "0.9.0"
version = "0.9.1"
description = "MCP helpers for Databricks"
authors = [
{ name="Databricks", email="agent-feedback@databricks.com" },
Expand All @@ -9,7 +9,7 @@ readme = "README.md"
license = { text="Apache-2.0" }
requires-python = ">=3.10"
dependencies = [
"mcp>=1.13.0",
"mcp>=1.13.0,<2.0.0",
"databricks-sdk>=0.49.0",
"databricks-ai-bridge>=0.4.2",
"mlflow>=3.1"
Expand Down
16 changes: 12 additions & 4 deletions integrations/langchain/tests/unit_tests/test_chat_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,8 +738,8 @@
id=ID,
tool_calls=[
{
"name": tool_calls[0]["function"]["name"], # type: ignore[index]

Check warning on line 741 in integrations/langchain/tests/unit_tests/test_chat_models.py

View workflow job for this annotation

GitHub Actions / typechecking for integrations/langchain

ty (unused-type-ignore-comment)

tests/unit_tests/test_chat_models.py:741:61: unused-type-ignore-comment: Unused blanket `type: ignore` directive help: Remove the unused suppression comment
"args": json.loads(tool_calls[0]["function"]["arguments"]), # type: ignore[index]

Check warning on line 742 in integrations/langchain/tests/unit_tests/test_chat_models.py

View workflow job for this annotation

GitHub Actions / typechecking for integrations/langchain

ty (unused-type-ignore-comment)

tests/unit_tests/test_chat_models.py:742:78: unused-type-ignore-comment: Unused blanket `type: ignore` directive help: Remove the unused suppression comment
"id": ID,
"type": "tool_call",
}
Expand Down Expand Up @@ -1778,7 +1778,9 @@
input_tokens=100,
output_tokens=50,
total_tokens=150,
input_tokens_details=InputTokensDetails(cache_write_tokens=0, cached_tokens=cached_tokens),
input_tokens_details=InputTokensDetails.model_construct(
cache_write_tokens=0, cached_tokens=cached_tokens
),
output_tokens_details=OutputTokensDetails(reasoning_tokens=reasoning_tokens),
)

Expand Down Expand Up @@ -1856,7 +1858,9 @@
input_tokens=100,
output_tokens=50,
total_tokens=150,
input_tokens_details=InputTokensDetails(cache_write_tokens=0, cached_tokens=25),
input_tokens_details=InputTokensDetails.model_construct(
cache_write_tokens=0, cached_tokens=25
),
output_tokens_details=OutputTokensDetails(reasoning_tokens=10),
)
response = Mock()
Expand Down Expand Up @@ -1906,7 +1910,9 @@
input_tokens=100,
output_tokens=50,
total_tokens=150,
input_tokens_details=InputTokensDetails(cache_write_tokens=0, cached_tokens=25),
input_tokens_details=InputTokensDetails.model_construct(
cache_write_tokens=0, cached_tokens=25
),
output_tokens_details=OutputTokensDetails(reasoning_tokens=10),
)
else:
Expand Down Expand Up @@ -2083,7 +2089,9 @@
input_tokens=100,
output_tokens=50,
total_tokens=150,
input_tokens_details=InputTokensDetails(cache_write_tokens=0, cached_tokens=25),
input_tokens_details=InputTokensDetails.model_construct(
cache_write_tokens=0, cached_tokens=25
),
output_tokens_details=OutputTokensDetails(reasoning_tokens=10),
),
)
Expand Down
Loading